Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
ac01b22
Update flutter action to v2
renefloor Nov 25, 2022
6d22f59
Merge pull request #801 from Baseflow/minor/update-flutter-action
renefloor Nov 25, 2022
53e6c4c
Don't forget to pass the cache key to the download function
janosroden Jun 7, 2023
d153049
Merge pull request #848 from onbased/develop
renefloor Jul 23, 2023
a5df022
Add example and specify types
Carapacik Jul 23, 2023
152234e
Update example files
Carapacik Jul 23, 2023
2ab9c86
Add loadImage and deprecate loadBuffer
Carapacik Jul 23, 2023
568e3cb
Remove load functional
Carapacik Aug 27, 2023
588fc77
Update after review
Carapacik Sep 12, 2023
7828f43
Update kotlin and android version
Carapacik Sep 12, 2023
a443648
Add typedef for ErrorListener
Carapacik Sep 15, 2023
095f009
Add finally back
Carapacik Sep 25, 2023
a0ce50a
Merge pull request #861 from Carapacik/deprecate
renefloor Sep 25, 2023
0a00bf1
Preparation for release
renefloor Sep 25, 2023
32e2c08
Add missing error listener
RWolfing Nov 29, 2023
b89bc5d
fixed decoderCallback issue by updating flutter_blurhash version to 0…
mohib49 Dec 28, 2023
7f49efc
Merge pull request #909 from muhib349/fix_decoder_callback
renefloor Dec 31, 2023
7d3434a
Merge pull request #891 from RWolfing/develop
renefloor Dec 31, 2023
83a63d7
Remove duplicate error reporting
renefloor Dec 31, 2023
f7e9672
Merge pull request #910 from Baseflow/feature/remove-duplicate-error-…
renefloor Dec 31, 2023
08599c6
Remove unused catch
renefloor Dec 31, 2023
2890953
Merge branch 'develop' into merging_latest_develop
Jan 12, 2024
087a6c0
Fix after merge
vishnunew Jan 12, 2024
fcee8ed
Fix the pubspec
vishnunew Jan 12, 2024
fe0d6bf
Fix pubspec
vishnunew Jan 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 0 additions & 80 deletions .editorconfig

This file was deleted.

39 changes: 0 additions & 39 deletions .gitattributes

This file was deleted.

51 changes: 26 additions & 25 deletions .github/workflows/app_facing_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand All @@ -40,7 +40,7 @@ jobs:

# Run Flutter Format to ensure formatting is valid
- name: Run Flutter Format
run: flutter format --set-exit-if-changed .
run: dart format --set-exit-if-changed .
working-directory: ${{env.source-directory}}

analyze:
Expand All @@ -55,10 +55,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand All @@ -85,15 +85,16 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Ensure correct JAVA version is installed.
- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
with:
java-version: '12.x'
distribution: 'zulu'
java-version: '17'

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand All @@ -120,10 +121,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand All @@ -150,10 +151,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand Down Expand Up @@ -185,10 +186,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand Down Expand Up @@ -224,10 +225,10 @@ jobs:
- run: sudo apt-get install -y ninja-build libgtk-3-dev libblkid-dev

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand Down Expand Up @@ -264,10 +265,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand All @@ -292,10 +293,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand All @@ -310,8 +311,8 @@ jobs:
working-directory: ${{env.source-directory}}

# Upload code coverage information
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v3
with:
file: ${{env.source-directory}}/coverage/lcov.info # optional
name: CachedNetworkImage (App Facing Package) # optional
fail_ci_if_error: true
files: ${{env.source-directory}}/coverage/lcov.info
name: CachedNetworkImage (App Facing Package)
fail_ci_if_error: true
22 changes: 11 additions & 11 deletions .github/workflows/platform_interface.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand All @@ -40,7 +40,7 @@ jobs:

# Run Flutter Format to ensure formatting is valid
- name: Run Flutter Format
run: flutter format --set-exit-if-changed .
run: dart format --set-exit-if-changed .
working-directory: ${{env.source-directory}}

analyze:
Expand All @@ -55,10 +55,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand All @@ -83,10 +83,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand All @@ -101,8 +101,8 @@ jobs:
working-directory: ${{env.source-directory}}

# Upload code coverage information
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v3
with:
file: ${{env.source-directory}}/coverage/lcov.info # optional
name: CachedNetworkImage (Platform interface) # optional
fail_ci_if_error: true
files: ${{env.source-directory}}/coverage/lcov.info
name: CachedNetworkImage (Platform interface)
fail_ci_if_error: true
26 changes: 13 additions & 13 deletions .github/workflows/web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand All @@ -40,7 +40,7 @@ jobs:

# Run Flutter Format to ensure formatting is valid
- name: Run Flutter Format
run: flutter format --set-exit-if-changed .
run: dart format --set-exit-if-changed .
working-directory: ${{env.source-directory}}

analyze:
Expand All @@ -55,10 +55,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand All @@ -83,10 +83,10 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Make sure the stable version of Flutter is available
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: 'stable'

Expand All @@ -100,9 +100,9 @@ jobs:
run: flutter test --platform chrome
working-directory: ${{env.source-directory}}

# # Upload code coverage information
# - uses: codecov/codecov-action@v1
# with:
# file: ${{env.source-directory}}/coverage/lcov.info # optional
# name: CachedNetworkImage (Web) # optional
# fail_ci_if_error: true
# # Upload code coverage information
# - uses: codecov/codecov-action@v1
# with:
# files: ${{env.source-directory}}/coverage/lcov.info
# name: CachedNetworkImage (Web)
# fail_ci_if_error: true
Loading