From 8f601fe4ea6e67ab3053be57fea9f3aca787068e Mon Sep 17 00:00:00 2001 From: "Omer I.S." Date: Sun, 15 Feb 2026 23:49:14 +0200 Subject: [PATCH 1/2] Update --- crowdin.yml | 3 --- lib/pages/apps.dart | 6 +++++- 2 files changed, 5 insertions(+), 4 deletions(-) delete mode 100644 crowdin.yml diff --git a/crowdin.yml b/crowdin.yml deleted file mode 100644 index 55d687ecf..000000000 --- a/crowdin.yml +++ /dev/null @@ -1,3 +0,0 @@ -files: - - source: /assets/translations/en.json - translation: /assets/translations/%two_letters_code%.json diff --git a/lib/pages/apps.dart b/lib/pages/apps.dart index 4612cdcde..7a771938c 100644 --- a/lib/pages/apps.dart +++ b/lib/pages/apps.dart @@ -1000,10 +1000,13 @@ class AppsPageState extends State { ), ), ), + ], + ), + ), ), ); - getCategoryCollapsibleTile(int index) { + Widget getCategoryCollapsibleTile(int index) { var tiles = listedApps .asMap() .entries @@ -1760,3 +1763,4 @@ class AppsFilter { settingsProvider.setEqual(categoryFilter, other.categoryFilter) && sourceFilter.trim() == other.sourceFilter.trim(); } +} From 9b7a4813129ccf4c87517873ff5fcd7576d5e108 Mon Sep 17 00:00:00 2001 From: "Omer I.S." <137101815+omeritzics@users.noreply.github.com> Date: Sun, 15 Feb 2026 22:07:41 +0200 Subject: [PATCH 2/2] Update lib/pages/apps.dart Co-authored-by: qodo-code-review[bot] <151058649+qodo-code-review[bot]@users.noreply.github.com> --- lib/pages/apps.dart | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lib/pages/apps.dart b/lib/pages/apps.dart index 7a771938c..371482460 100644 --- a/lib/pages/apps.dart +++ b/lib/pages/apps.dart @@ -1762,5 +1762,14 @@ class AppsFilter { includeNonInstalled == other.includeNonInstalled && settingsProvider.setEqual(categoryFilter, other.categoryFilter) && sourceFilter.trim() == other.sourceFilter.trim(); -} + } + + @override + int get hashCode => Object.hash( + idFilter.trim(), + includeUptodate, + includeNonInstalled, + Object.hashAll(categoryFilter), + sourceFilter.trim(), + ); }