1. 16 5月, 2018 1 次提交
  2. 15 5月, 2018 1 次提交
  3. 26 4月, 2018 7 次提交
  4. 18 4月, 2018 1 次提交
  5. 14 4月, 2018 3 次提交
  6. 11 4月, 2018 3 次提交
  7. 10 4月, 2018 2 次提交
  8. 31 3月, 2018 1 次提交
  9. 30 3月, 2018 6 次提交
  10. 13 3月, 2018 1 次提交
  11. 09 3月, 2018 2 次提交
  12. 07 3月, 2018 7 次提交
    • S
      Fix a lint error in GlideTrace. · 84178369
      Sam Judd 提交于
      84178369
    • J
      Remove deprecated methods from GlideBuilder. · b2eb35db
      judds 提交于
      -------------
      Created by MOE: https://github.com/google/moe
      MOE_MIGRATED_REVID=187914170
      b2eb35db
    • P
      Minor optimization to avoid calling currentTimeMillis when not logging. · d7635bda
      paulsowden 提交于
      -------------
      Created by MOE: https://github.com/google/moe
      MOE_MIGRATED_REVID=187644617
      d7635bda
    • J
      Remove deprecated ComponentCallbacks methods in RequestManager · 1937b055
      judds 提交于
      -------------
      Created by MOE: https://github.com/google/moe
      MOE_MIGRATED_REVID=187624368
      1937b055
    • E
      Include key in DecodeJob systrace tag. · 7fecca97
      ear 提交于
      -------------
      Created by MOE: https://github.com/google/moe
      MOE_MIGRATED_REVID=187541996
      7fecca97
    • J
      Reduce the overhead of Engine log statements. · 7ff3bdee
      judds 提交于
      -------------
      Created by MOE: https://github.com/google/moe
      MOE_MIGRATED_REVID=187506205
      7ff3bdee
    • J
      MOE automated commit. · 5e455394
      judds 提交于
      ```----------
      Include the debug aar in release artifacts for Android projects.
      
      We removed the release variant a while ago to speed up the build, which
      has the side affect of removing the release aar from artifacts. Since
      we expect the debug and release variants to be identical (hence why
      we disabled the release variant), it should be safe to just use the
      debug aar instead. We will have to specify it explicitly since android’s
      rules unsurprisingly only add the release variant by default.
      ```
      
      ----------
      Bump version to 4.6.0
      
      -------------
      Update readme to 4.6.0
      
      Also removes the old v4 dependency from maven deps, I don’t think it’s
      necessary.
      
      -------------
      Change update_javadocs to use debugJavadocJar instead of release.
      
      We’ve disabled the release variant.
      
      -------------
      Bump version to 4.7.0-SNAPSHOT
      
      -------------
      Add POM dependencies explicitly.
      
      Fixes #2863.
      
      -------------
      Bump version to 4.6.1
      
      -------------
      Update readme to 4.6.1
      
      -------------
      Fix param mistake (#2873)
      
      -------------
      Update SimpleTarget javadoc to match v4 API.
      
      -------------
      Add javadoc for RequestOptions.apply/RequestBuilder.apply.
      
      Related to #2858.
      
      -------------
      Add support for Uri data uris.
      
      Previously we only supported data uris if they were provided as Strings.
      
      Fixes #556.
      
      -------------
      Make GlideBuilder.build package private.
      
      It shouldn’t have been made visible and can’t
      safely be used directly outside of the library.
      
      Fixes #2885
      
      -------------
      Handle notifications in MultiFetcher after cancellation.
      
      We can’t guarantee that every fetcher implementation will strictly avoid
      notifying after they’ve been cancelled.
      
      This also improves the behavior in VolleyStreamFetcher so that it attempts to avoid notifying after cancel, although it still doesn’t make
      any strict guarantee.
      
      Fixes #2879
      
      -------------
      Re-enable -Werror for java compilation.
      
      Related to #2886.
      
      -------------
      Fix a deprecation warning in DataUriTest.
      
      -------------
      gradle 4.5.1
      
      -------------
      deprecate fragments
      
      -------------
      add @deprecated to javadoc and suppress deprecations in code
      
      -------------
      Created by MOE: https://github.com/google/moe
      
      MOE_MIGRATED_REVID=99229725
      
      -------------
      Created by MOE: https://github.com/google/moe
      MOE_MIGRATED_REVID=185535564
      5e455394
  13. 03 3月, 2018 1 次提交
  14. 02 3月, 2018 1 次提交
  15. 01 3月, 2018 1 次提交
  16. 28 2月, 2018 1 次提交
  17. 22 2月, 2018 1 次提交
    • J
      Add a factory implementation for DiskCacheAdapter. · 53b5147d
      judds 提交于
      We're trying to keep people from setting DiskCache implementations
      directly on Glide's Builder during initialization because creating
      caches often requires reading from Files and other expensive I/O. The
      method to set a disk cache is deprecated in favor of one that accepts a
      factory. Some people want to disable the disk cache entirely, so they
      use DiskCacheAdapter. Without a Factory, it's less obvious how they're
      supposed to do so if we remove the deprecated method.
      
      -------------
      Created by MOE: https://github.com/google/moe
      MOE_MIGRATED_REVID=186049317
      53b5147d