1. 04 Jan, 2016 6 commits
  2. 17 Dec, 2015 3 commits
  3. 16 Dec, 2015 9 commits
  4. 14 Dec, 2015 12 commits
  5. 12 Dec, 2015 1 commit
    • Allow multiple identical but intermittent spans · d753378b
      Multiple identical TTML fontStyles or fontWeights or textDecorations
      on the content for a specific moment were rendered as if there's only
      one decoration (span).
      That's because SpannableStringBuilder.setSpan(span, start, end, flag)
      found an earlier set span (the static allocated span's reference
      is the same each time) and only refreshed this first span's start and
      end values instead of adding a new span at its (new) different range.
      This patch removes the static data members;
      this makes the newly allocated span objects distinguishable.
      A correct implementation is favoured over worries about memory
      consumption.
      aptly-io committed
  6. 10 Dec, 2015 9 commits