Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade photo_manager #1751

Merged
merged 2 commits into from
May 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ SPEC CHECKSUMS:
package_info_plus: 58f0028419748fad15bf008b270aaa8e54380b1c
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
permission_handler_apple: 9878588469a2b0d0fc1e048d9f43605f92e6cec2
photo_manager: 4f6810b7dfc4feb03b461ac1a70dacf91fba7604
photo_manager: ff695c7a1dd5bc379974953a2b5c0a293f7c4c8a
qr_code_scanner: bb67d64904c3b9658ada8c402e8b4d406d5d796e
record_darwin: 1f6619f2abac4d1ca91d3eeab038c980d76f1517
SDWebImage: dfe95b2466a9823cf9f0c6d01217c06550d7b29a
Expand Down
7 changes: 5 additions & 2 deletions lib/logic/image_import.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,13 @@ Future<void> importImageAssets(

final assets = await AssetPicker.pickAssets(
context,
pickerConfig: const AssetPickerConfig(
pickerConfig: AssetPickerConfig(
maxAssets: 40,
requestType: RequestType.image,
textDelegate: EnglishAssetPickerTextDelegate(),
filterOptions: FilterOptionGroup(
containsLivePhotos: true,
),
textDelegate: const EnglishAssetPickerTextDelegate(),
),
);

Expand Down
2 changes: 1 addition & 1 deletion macos/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ SPEC CHECKSUMS:
OpenSSL-Universal: 0db2e81615ad95efc90ce13a638986858da38c0d
package_info_plus: fa739dd842b393193c5ca93c26798dff6e3d0e0c
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
photo_manager: 4f6810b7dfc4feb03b461ac1a70dacf91fba7604
photo_manager: ff695c7a1dd5bc379974953a2b5c0a293f7c4c8a
record_darwin: 1f6619f2abac4d1ca91d3eeab038c980d76f1517
screen_retriever: 59634572a57080243dd1bf715e55b6c54f241a38
share_plus: 36537c04ce0c3e3f5bd297ce4318b6d5ee5fd6cf
Expand Down
12 changes: 6 additions & 6 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -437,10 +437,10 @@ packages:
dependency: transitive
description:
name: dart_quill_delta
sha256: "6ca843d1f5468182d593510cd497e1b4316ce338a489ea13cce5ed56eb373e35"
sha256: "4b32a3ca6efb7b849d016f52c7dc655b5af8f8058fbd35995fbad6dc0fa84e88"
url: "https://pub.dev"
source: hosted
version: "9.3.13"
version: "9.3.16"
dart_style:
dependency: "direct dev"
description:
Expand Down Expand Up @@ -974,10 +974,10 @@ packages:
dependency: "direct main"
description:
name: flutter_quill
sha256: "490e26fff6788c76e0bcbe7c2defa17dd4745f7d51da1e285c8a058800a89f75"
sha256: "04ea42c09ca64bb9f8798189ca650c07819431a03c3f6bbcf0f7c9cf201c8d15"
url: "https://pub.dev"
source: hosted
version: "9.3.13"
version: "9.3.16"
flutter_riverpod:
dependency: "direct main"
description:
Expand Down Expand Up @@ -1923,10 +1923,10 @@ packages:
dependency: "direct main"
description:
name: photo_manager
sha256: df594f989f0c31cdb3ed48f3d49cb9ffadf11cc3700d2c3460b1912c93432621
sha256: "1ddee48659025df5c80153a2e85c3fa0f5b5733ecffcda9769a9447da2c51352"
url: "https://pub.dev"
source: hosted
version: "3.0.0"
version: "3.1.1"
photo_manager_image_provider:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: lotti
description: Achieve your goals and keep your data private with Lotti.
publish_to: 'none'
version: 0.9.466+2522
version: 0.9.466+2525

msix_config:
display_name: LottiApp
Expand Down Expand Up @@ -120,7 +120,7 @@ dependencies:
path: ^1.8.1
path_provider: ^2.0.12
permission_handler: ^11.0.1
photo_manager: 3.0.0
photo_manager: ^3.1.1
photo_view: ^0.15.0
pie_chart: ^5.3.2
qr_code_scanner: ^1.0.1
Expand Down
Loading