Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: facebook/fresco
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.1.2
Choose a base ref
...
head repository: facebook/fresco
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.1.3
Choose a head ref
  • 10 commits
  • 20 files changed
  • 7 contributors

Commits on Oct 17, 2023

  1. //fbandroid/libraries/fbcore/src/main/java/com/facebook/memory/helper…

    …:helper
    
    Reviewed By: oprisnik
    
    Differential Revision: D50318495
    
    fbshipit-source-id: 9c6b974fbe1bddb81ebcf641785088f2b7e045c5
    generatedunixname89002005287564 authored and facebook-github-bot committed Oct 17, 2023
    Configuration menu
    Copy the full SHA
    f820b1e View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. Setting P3 colorspace only once per window

    Reviewed By: defHLT
    
    Differential Revision: D50124551
    
    fbshipit-source-id: f011f1c0ddb920e8518af03d5d9964bf6c8fc4bc
    Neha Gupta authored and facebook-github-bot committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    6bc8ee4 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. fbandroid/libraries/fresco/animated-drawable/src/main/java/com/facebo…

    …ok/fresco/animation/frame/DropFramesFrameScheduler.java
    
    Reviewed By: strulovich
    
    Differential Revision: D50438088
    
    fbshipit-source-id: 4e7a4fcec6cd694eb744d2b2f39d6ab8f44397be
    generatedunixname89002005287564 authored and facebook-github-bot committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    0300fb7 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2023

  1. Add border support

    Differential Revision: D50482172
    
    fbshipit-source-id: 597c7f38e4fb3bc4174f16e760e1e0cde50ec7d5
    Yi Chih Chan authored and facebook-github-bot committed Oct 21, 2023
    Configuration menu
    Copy the full SHA
    409a039 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2023

  1. Added generic extra data to DraweeView

    Reviewed By: defHLT
    
    Differential Revision: D50426940
    
    fbshipit-source-id: b1018430fc470df2bc1e1738fb5a6dcb79b3e8b1
    oprisnik authored and facebook-github-bot committed Oct 23, 2023
    Configuration menu
    Copy the full SHA
    aab29ae View commit details
    Browse the repository at this point in the history
  2. Added InflateHierarchyListener to GenericDraweeView

    Reviewed By: defHLT
    
    Differential Revision: D50414811
    
    fbshipit-source-id: 78f7dd85b0a35b03e9ac01b9365869042be8fbd0
    oprisnik authored and facebook-github-bot committed Oct 23, 2023
    Configuration menu
    Copy the full SHA
    493316c View commit details
    Browse the repository at this point in the history
  3. Improved reliability running several high-fps animations

    Reviewed By: oprisnik
    
    Differential Revision: D50504748
    
    fbshipit-source-id: fbfb50775aada7e008627d8d916b2ac6b0b1b89b
    Jorge Gonzalez authored and facebook-github-bot committed Oct 23, 2023
    Configuration menu
    Copy the full SHA
    96a43e2 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2023

  1. Report caller context if settable drawee hierarchy is null

    Reviewed By: oprisnik
    
    Differential Revision: D50572603
    
    fbshipit-source-id: 3dc244f87b769fa7e3ecbc4be8a622410e180d4d
    refinedata authored and facebook-github-bot committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    c266579 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Fix missing native dependencies on packaged artifacts (#2748)

    Summary:
    ## Motivation (required)
    
    Latest versions of Fresco have missing .so files due to a race condition on Gradle tasks.
    I'm imposing a task dependencies on `ndk_build_*` steps and `preBuild` steps to prevent this.
    
    Fixes #2722
    Fixes #2747
    
    ## Test Plan (required)
    
    I've tested this against `./gradlew publishToMavenLocal` upon clean build.
    Here the output:
    ```
    $ unzip -l ~/.m2/repository/com/facebook/fresco/nativeimagetranscoder/3.1.1/nativeimagetranscoder-3.1.1.aar
    Archive:  /Users/ncor/.m2/repository/com/facebook/fresco/nativeimagetranscoder/3.1.1/nativeimagetranscoder-3.1.1.aar
      Length      Date    Time    Name
    ---------  ---------- -----   ----
         7297  02-01-1980 00:00   R.txt
          216  02-01-1980 00:00   AndroidManifest.xml
         6034  02-01-1980 00:00   classes.jar
          121  02-01-1980 00:00   META-INF/com/android/build/gradle/aar-metadata.properties
            0  02-01-1980 00:00   jni/
            0  02-01-1980 00:00   jni/arm64-v8a/
       475392  02-01-1980 00:00   jni/arm64-v8a/libnative-imagetranscoder.so
            0  02-01-1980 00:00   jni/armeabi-v7a/
       271736  02-01-1980 00:00   jni/armeabi-v7a/libnative-imagetranscoder.so
            0  02-01-1980 00:00   jni/x86/
       557648  02-01-1980 00:00   jni/x86/libnative-imagetranscoder.so
            0  02-01-1980 00:00   jni/x86_64/
       621000  02-01-1980 00:00   jni/x86_64/libnative-imagetranscoder.so
    ---------                     -------
      1939444                     13 files
    ```
    
    Pull Request resolved: #2748
    
    Reviewed By: passy
    
    Differential Revision: D50641344
    
    Pulled By: cortinico
    
    fbshipit-source-id: c518b4cf4e418dcec1ac30a78c03a649d5c66c13
    cortinico authored and facebook-github-bot committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    ce4d35e View commit details
    Browse the repository at this point in the history
  2. Bump version to 3.1.3

    Reviewed By: oprisnik, steelrooter
    
    Differential Revision: D50644894
    
    fbshipit-source-id: 070c7fcab11bcfe91ea51371a81009e5e7fe0723
    cortinico authored and facebook-github-bot committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    19c695f View commit details
    Browse the repository at this point in the history
Loading