Skip to content

Commit 83d6607

Browse files
committed
chore(download_manager):Update localization and add file manager integration
- Add new localization keys for file manager operations and download status messages - Integrate open_file_manager package for better file system navigation - Update download manager UI with "Show in file manager" option - Improve error handling and user feedback with localized messages - Update dependencies including intl, pigeon, and flutter_local_notifications - Refactor code formatting for better consistency
1 parent 47a85f8 commit 83d6607

File tree

14 files changed

+1300
-1017
lines changed

14 files changed

+1300
-1017
lines changed

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ android {
5050
applicationId "com.github.openlistteam.openlistflutter"
5151
// You can update the following values to match your application needs.
5252
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
53-
minSdkVersion 21
54-
targetSdkVersion flutter.targetSdkVersion
53+
minSdk 21
54+
targetSdk flutter.targetSdkVersion
5555
versionCode gitCommits
5656
versionName version
5757

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
ext{
33
kotlin_version = '1.9.21'
4-
agp_version = '8.10.1'
4+
agp_version = '8.11.1'
55
room_version = '2.6.1'
66
ksp_version = '1.9.21-1.0.16'
77
}
@@ -30,7 +30,7 @@ allprojects {
3030
rootProject.buildDir = '../build'
3131
subprojects {
3232
project.buildDir = "${rootProject.buildDir}/${project.name}"
33-
}
33+
}
3434

3535
subprojects {
3636
project.evaluationDependsOn(':app')

android/build/reports/problems/problems-report.html

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Tue Jul 15 12:22:13 CST 2025
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pluginManagement {
2323

2424
plugins {
2525
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
26-
id "com.android.application" version '8.10.1' apply false
26+
id "com.android.application" version '8.11.1' apply false
2727
}
2828

2929
include ":app"

lib/generated/intl/messages_all.dart

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ MessageLookupByLibrary? _findExact(String localeName) {
3939
/// User programs should call this before using [localeName] for messages.
4040
Future<bool> initializeMessages(String localeName) {
4141
var availableLocale = Intl.verifiedLocale(
42-
localeName, (locale) => _deferredLibraries[locale] != null,
43-
onFailure: (_) => null);
42+
localeName,
43+
(locale) => _deferredLibraries[locale] != null,
44+
onFailure: (_) => null,
45+
);
4446
if (availableLocale == null) {
4547
return new SynchronousFuture(false);
4648
}
@@ -60,8 +62,11 @@ bool _messagesExistFor(String locale) {
6062
}
6163

6264
MessageLookupByLibrary? _findGeneratedMessagesFor(String locale) {
63-
var actualLocale =
64-
Intl.verifiedLocale(locale, _messagesExistFor, onFailure: (_) => null);
65+
var actualLocale = Intl.verifiedLocale(
66+
locale,
67+
_messagesExistFor,
68+
onFailure: (_) => null,
69+
);
6570
if (actualLocale == null) return null;
6671
return _findExact(actualLocale);
6772
}

lib/generated/intl/messages_en.dart

Lines changed: 336 additions & 232 deletions
Large diffs are not rendered by default.

lib/generated/intl/messages_zh.dart

Lines changed: 252 additions & 201 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)