From 39d7587ac960f91905b53d2ace94ab59f894004a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 May 2025 04:38:18 +0900 Subject: [PATCH 1/6] Bump actions/dependency-review-action from 4.7.0 to 4.7.1 (#1557) Bumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 4.7.0 to 4.7.1. - [Release notes](https://github.com/actions/dependency-review-action/releases) - [Commits](https://github.com/actions/dependency-review-action/compare/38ecb5b593bf0eb19e335c03f97670f792489a8b...da24556b548a50705dd671f47852072ea4c105d9) --- updated-dependencies: - dependency-name: actions/dependency-review-action dependency-version: 4.7.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/dependency-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index d77f789bb..b3f620bdc 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -24,4 +24,4 @@ jobs: - name: 'Checkout Repository' uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: 'Dependency Review' - uses: actions/dependency-review-action@38ecb5b593bf0eb19e335c03f97670f792489a8b # v4.7.0 + uses: actions/dependency-review-action@da24556b548a50705dd671f47852072ea4c105d9 # v4.7.1 From 09df269ee05a9467498cc8828b46453188cfd460 Mon Sep 17 00:00:00 2001 From: Thibault Deckers Date: Wed, 14 May 2025 21:52:21 +0200 Subject: [PATCH 2/6] albums: show groups to move/copy/export items --- CHANGELOG.md | 4 ++++ lib/widgets/common/action_mixins/entry_storage.dart | 4 ++-- .../dialogs/pick_dialogs/album_pick_page.dart | 4 ++-- lib/widgets/filter_grids/albums_page.dart | 12 +++++------- .../common/action_delegates/album_set.dart | 2 +- .../settings/navigation/drawer_tab_albums.dart | 2 +- 6 files changed, 15 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 292526685..df60d887d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +### Fixed + +- albums: show groups to move/copy/export items + ## [v1.13.0] - 2025-05-12 ### Added diff --git a/lib/widgets/common/action_mixins/entry_storage.dart b/lib/widgets/common/action_mixins/entry_storage.dart index ca2bc1614..b1d0ee7bf 100644 --- a/lib/widgets/common/action_mixins/entry_storage.dart +++ b/lib/widgets/common/action_mixins/entry_storage.dart @@ -46,7 +46,7 @@ mixin EntryStorageMixin on FeedbackMixin, PermissionAwareMixin, SizeAwareMixin { final destinationAlbumFilter = await pickAlbum( context: context, moveType: MoveType.export, - albumTypes: {AlbumChipType.stored}, + albumChipTypes: {AlbumChipType.stored}, initialGroup: null, ); if (destinationAlbumFilter == null || destinationAlbumFilter is! StoredAlbumFilter) return false; @@ -379,7 +379,7 @@ mixin EntryStorageMixin on FeedbackMixin, PermissionAwareMixin, SizeAwareMixin { final destinationAlbumFilter = await pickAlbum( context: context, moveType: moveType, - albumTypes: {AlbumChipType.stored}, + albumChipTypes: {AlbumChipType.stored}, initialGroup: null, ); if (destinationAlbumFilter == null || destinationAlbumFilter is! StoredAlbumFilter) return false; diff --git a/lib/widgets/dialogs/pick_dialogs/album_pick_page.dart b/lib/widgets/dialogs/pick_dialogs/album_pick_page.dart index 3a930bf3e..caf50b4f0 100644 --- a/lib/widgets/dialogs/pick_dialogs/album_pick_page.dart +++ b/lib/widgets/dialogs/pick_dialogs/album_pick_page.dart @@ -40,7 +40,7 @@ import 'package:provider/provider.dart'; Future pickAlbum({ required BuildContext context, required MoveType? moveType, - required Iterable albumTypes, + required Iterable albumChipTypes, required Uri? initialGroup, }) async { final source = context.read(); @@ -56,7 +56,7 @@ Future pickAlbum({ builder: (context) => _AlbumPickPage( source: source, moveType: moveType, - albumChipTypes: albumTypes, + albumChipTypes: albumChipTypes, initialGroup: initialGroup, ), ), diff --git a/lib/widgets/filter_grids/albums_page.dart b/lib/widgets/filter_grids/albums_page.dart index d85b297d7..0c2875080 100644 --- a/lib/widgets/filter_grids/albums_page.dart +++ b/lib/widgets/filter_grids/albums_page.dart @@ -97,7 +97,7 @@ class AlbumListPage extends StatelessWidget { static List> getAlbumGridItems( BuildContext context, CollectionSource source, - Iterable albumTypes, + Iterable albumChipTypes, Uri? groupUri, ) { final groupContent = albumGrouping.getDirectChildren(groupUri); @@ -110,7 +110,7 @@ class AlbumListPage extends StatelessWidget { } final listedStoredAlbums = {}; - if (albumTypes.contains(AlbumChipType.stored)) { + if (albumChipTypes.contains(AlbumChipType.stored)) { if (groupUri == null) { final withinGroups = whereTypeRecursively(groupContent).map((v) => v.album).toSet(); listedStoredAlbums.addAll(source.rawAlbums.whereNot(withinGroups.contains)); @@ -120,7 +120,7 @@ class AlbumListPage extends StatelessWidget { } final listedDynamicAlbums = {}; - if (albumTypes.contains(AlbumChipType.dynamic)) { + if (albumChipTypes.contains(AlbumChipType.dynamic)) { if (groupUri == null) { final withinGroups = whereTypeRecursively(groupContent).toSet(); listedDynamicAlbums.addAll(dynamicAlbums.all.whereNot(withinGroups.contains)); @@ -129,10 +129,8 @@ class AlbumListPage extends StatelessWidget { } } - final albumGroupFilters = {}; - if (albumTypes.contains(AlbumChipType.group)) { - albumGroupFilters.addAll(groupContent.whereType()); - } + // always show groups, which are needed to navigate to other types + final albumGroupFilters = groupContent.whereType().toSet(); final filters = { ...albumGroupFilters, diff --git a/lib/widgets/filter_grids/common/action_delegates/album_set.dart b/lib/widgets/filter_grids/common/action_delegates/album_set.dart index 1654d7fd8..f02c3e1b8 100644 --- a/lib/widgets/filter_grids/common/action_delegates/album_set.dart +++ b/lib/widgets/filter_grids/common/action_delegates/album_set.dart @@ -458,7 +458,7 @@ class AlbumChipSetActionDelegate extends ChipSetActionDelegate final filter = await pickAlbum( context: context, moveType: null, - albumTypes: {AlbumChipType.group}, + albumChipTypes: {AlbumChipType.group}, initialGroup: initialGroup, ); if (filter == null) return; diff --git a/lib/widgets/settings/navigation/drawer_tab_albums.dart b/lib/widgets/settings/navigation/drawer_tab_albums.dart index 84b2051ab..5ab310b2b 100644 --- a/lib/widgets/settings/navigation/drawer_tab_albums.dart +++ b/lib/widgets/settings/navigation/drawer_tab_albums.dart @@ -68,7 +68,7 @@ class _DrawerAlbumTabState extends State { final albumFilter = await pickAlbum( context: context, moveType: null, - albumTypes: AlbumChipType.values, + albumChipTypes: AlbumChipType.values, initialGroup: null, ); if (albumFilter == null || items.contains(albumFilter)) return; From df63f06897c29c3a22329fc6cefa970b82e2f868 Mon Sep 17 00:00:00 2001 From: Thibault Deckers Date: Wed, 14 May 2025 22:01:45 +0200 Subject: [PATCH 3/6] albums: hide grouped albums containing hidden items only --- CHANGELOG.md | 1 + lib/widgets/filter_grids/albums_page.dart | 12 ++++++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df60d887d..bf204808f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file. ### Fixed - albums: show groups to move/copy/export items +- albums: hide grouped albums containing hidden items only ## [v1.13.0] - 2025-05-12 diff --git a/lib/widgets/filter_grids/albums_page.dart b/lib/widgets/filter_grids/albums_page.dart index 0c2875080..01ceee68c 100644 --- a/lib/widgets/filter_grids/albums_page.dart +++ b/lib/widgets/filter_grids/albums_page.dart @@ -111,21 +111,25 @@ class AlbumListPage extends StatelessWidget { final listedStoredAlbums = {}; if (albumChipTypes.contains(AlbumChipType.stored)) { + final allAlbums = source.rawAlbums; if (groupUri == null) { final withinGroups = whereTypeRecursively(groupContent).map((v) => v.album).toSet(); - listedStoredAlbums.addAll(source.rawAlbums.whereNot(withinGroups.contains)); + listedStoredAlbums.addAll(allAlbums.whereNot(withinGroups.contains)); } else { - listedStoredAlbums.addAll(groupContent.whereType().map((v) => v.album)); + // check that group content is listed from source, to prevent displaying hidden content + listedStoredAlbums.addAll(groupContent.whereType().map((v) => v.album).where(allAlbums.contains)); } } final listedDynamicAlbums = {}; if (albumChipTypes.contains(AlbumChipType.dynamic)) { + final allDynamicAlbums = dynamicAlbums.all; if (groupUri == null) { final withinGroups = whereTypeRecursively(groupContent).toSet(); - listedDynamicAlbums.addAll(dynamicAlbums.all.whereNot(withinGroups.contains)); + listedDynamicAlbums.addAll(allDynamicAlbums.whereNot(withinGroups.contains)); } else { - listedDynamicAlbums.addAll(groupContent.whereType()); + // check that group content is listed from source, to prevent displaying hidden content + listedDynamicAlbums.addAll(groupContent.whereType().where(allDynamicAlbums.contains)); } } From 0ad4b2f16f562c290c809e6bef3bc0dd7a8b7546 Mon Sep 17 00:00:00 2001 From: Thibault Deckers Date: Wed, 14 May 2025 22:10:51 +0200 Subject: [PATCH 4/6] albums: fixed positioning on group change --- lib/widgets/filter_grids/common/filter_grid_page.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/widgets/filter_grids/common/filter_grid_page.dart b/lib/widgets/filter_grids/common/filter_grid_page.dart index 6c49e590d..fc4b2f170 100644 --- a/lib/widgets/filter_grids/common/filter_grid_page.dart +++ b/lib/widgets/filter_grids/common/filter_grid_page.dart @@ -473,7 +473,7 @@ class _FilterSectionedContentState extends State<_Fi final GlobalKey scrollableKey = GlobalKey(debugLabel: 'filter-grid-page-scrollable'); - FilterGrouping? _grouping; + FilterGroupNotifier? _groupNotifier; @override void initState() { @@ -486,7 +486,7 @@ class _FilterSectionedContentState extends State<_Fi void didChangeDependencies() { super.didChangeDependencies(); _unregisterDependencies(); - _grouping = context.read(); + _groupNotifier = context.read(); _registerDependencies(); } @@ -505,11 +505,11 @@ class _FilterSectionedContentState extends State<_Fi } void _registerDependencies() { - _grouping?.addListener(_scrollToTop); + _groupNotifier?.addListener(_scrollToTop); } void _unregisterDependencies() { - _grouping?.removeListener(_scrollToTop); + _groupNotifier?.removeListener(_scrollToTop); } void _registerWidget(_FilterSectionedContent widget) { From 8636e4b73edf039231697bfcd517b8fc287acbd1 Mon Sep 17 00:00:00 2001 From: "Weblate (bot)" Date: Wed, 14 May 2025 22:12:01 +0200 Subject: [PATCH 5/6] l10n by weblate (#1556) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Translate-URL: https://hosted.weblate.org/projects/aves/app-android/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/ca/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/cs/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/el/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/fa/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/gl/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/he/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/is/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/ja/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/kn/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/ne/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/or/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/ro/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/ur/ Translate-URL: https://hosted.weblate.org/projects/aves/app-android/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/ar/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/bg/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/ca/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/cs/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/da/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/de/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/el/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/es/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/et/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/fa/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/fi/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/fr/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/gl/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/he/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/hi/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/hu/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/id/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/is/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/it/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/ja/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/kn/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/ko/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/nl/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/pl/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/pt/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/ro/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/ru/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/sk/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/sv/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/ta/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/tr/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/uk/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/zh_Hans/ Translate-URL: https://hosted.weblate.org/projects/aves/app-main/zh_Hant/ Translate-URL: https://hosted.weblate.org/projects/aves/store-full-description/ca/ Translate-URL: https://hosted.weblate.org/projects/aves/store-full-description/de/ Translate-URL: https://hosted.weblate.org/projects/aves/store-full-description/fi/ Translate-URL: https://hosted.weblate.org/projects/aves/store-full-description/he/ Translate-URL: https://hosted.weblate.org/projects/aves/store-full-description/hi/ Translate-URL: https://hosted.weblate.org/projects/aves/store-full-description/kn/ Translate-URL: https://hosted.weblate.org/projects/aves/store-full-description/ta/ Translate-URL: https://hosted.weblate.org/projects/aves/store-short-description/ Translate-URL: https://hosted.weblate.org/projects/aves/store-short-description/ca/ Translate-URL: https://hosted.weblate.org/projects/aves/store-short-description/da/ Translate-URL: https://hosted.weblate.org/projects/aves/store-short-description/he/ Translate-URL: https://hosted.weblate.org/projects/aves/store-short-description/kn/ Translate-URL: https://hosted.weblate.org/projects/aves/store-short-description/sat/ Translation: Aves/App - Android Translation: Aves/App - Main Translation: Aves/Store - Full description Translation: Aves/Store - Short description Co-authored-by: -J- Co-authored-by: 5FeetUnder <15950507+5FeetUnder@users.noreply.github.com> Co-authored-by: AJ07 Co-authored-by: Alireza Rashidi Co-authored-by: Bora Atıcı Co-authored-by: Bruno Fragoso Co-authored-by: Ettore Atalan Co-authored-by: Feliks-WR Co-authored-by: GiannosOB Co-authored-by: Igor Sorocean Co-authored-by: Ihor Hordiichuk Co-authored-by: Josep M. Ferrer Co-authored-by: Languages add-on Co-authored-by: Linerly Co-authored-by: Milan Šalka Co-authored-by: Miquel Martí Co-authored-by: Mohamed Zeroug Co-authored-by: Murcielago Co-authored-by: Over Barrow Co-authored-by: Petrov Co-authored-by: Prasannakumar T Bhat Co-authored-by: Priit Jõerüüt Co-authored-by: Reza Almanda Co-authored-by: Ricky Tigg Co-authored-by: Saúl Palacios Co-authored-by: Shift18 Co-authored-by: Stephan Paternotte Co-authored-by: Sveinn í Felli Co-authored-by: Thibault Deckers Co-authored-by: VertekPlus Co-authored-by: Whoever4976 Co-authored-by: Yurt Page Co-authored-by: bovirus Co-authored-by: cat Co-authored-by: elid Co-authored-by: hanyang cheng Co-authored-by: hugoalh Co-authored-by: marciozomb13 Co-authored-by: pitroig Co-authored-by: rcasl Co-authored-by: rehork Co-authored-by: slabs37 Co-authored-by: ssantos Co-authored-by: syu_pf_ssy Co-authored-by: vesp Co-authored-by: yangyangdaji <1504305527@qq.com> Co-authored-by: Макар Разин Co-authored-by: Максим Горпиніч Co-authored-by: Максим Горпиніч Co-authored-by: தமிழ்நேரம் Co-authored-by: 大王叫我来巡山 --- lib/l10n/app_es.arb | 32 ++++++++++++++++++++++++++++++-- lib/l10n/app_gl.arb | 32 ++++++++++++++++++++++++++++++-- lib/l10n/app_he.arb | 16 +++++++++++++++- 3 files changed, 75 insertions(+), 5 deletions(-) diff --git a/lib/l10n/app_es.arb b/lib/l10n/app_es.arb index 11f66734d..7e788fe8d 100644 --- a/lib/l10n/app_es.arb +++ b/lib/l10n/app_es.arb @@ -445,7 +445,7 @@ "@menuActionStats": {}, "viewDialogSortSectionTitle": "Ordenar", "@viewDialogSortSectionTitle": {}, - "viewDialogGroupSectionTitle": "Grupo", + "viewDialogGroupSectionTitle": "Secciones", "@viewDialogGroupSectionTitle": {}, "viewDialogLayoutSectionTitle": "Disposición", "@viewDialogLayoutSectionTitle": {}, @@ -1402,5 +1402,33 @@ "editEntryLocationDialogTimeShift": "Desplazamiento de tiempo", "@editEntryLocationDialogTimeShift": {}, "coordinateFormatDdm": "DDM", - "@coordinateFormatDdm": {} + "@coordinateFormatDdm": {}, + "sortByPath": "Por ruta", + "@sortByPath": {}, + "searchFormatSectionTitle": "Formatos", + "@searchFormatSectionTitle": {}, + "newGroupDialogTitle": "Nuevo grupo", + "@newGroupDialogTitle": {}, + "ungrouped": "No agrupado", + "@ungrouped": {}, + "albumTierGroups": "Grupos", + "@albumTierGroups": {}, + "groupEmpty": "Sin grupos", + "@groupEmpty": {}, + "newGroupDialogNameLabel": "Nombre del grupo", + "@newGroupDialogNameLabel": {}, + "createButtonLabel": "CREAR", + "@createButtonLabel": {}, + "chipActionGroup": "Agrupar", + "@chipActionGroup": {}, + "chipActionCreateGroup": "Crear grupo", + "@chipActionCreateGroup": {}, + "groupAlreadyExists": "Ya existe el grupo", + "@groupAlreadyExists": {}, + "groupPickerTitle": "Seleccionar grupo", + "@groupPickerTitle": {}, + "groupPickerUseThisGroupButton": "Usar este grupo", + "@groupPickerUseThisGroupButton": {}, + "sectionNone": "Sin secciones", + "@sectionNone": {} } diff --git a/lib/l10n/app_gl.arb b/lib/l10n/app_gl.arb index e0e0b0c42..452f0d7c3 100644 --- a/lib/l10n/app_gl.arb +++ b/lib/l10n/app_gl.arb @@ -823,7 +823,7 @@ "@menuActionSlideshow": {}, "menuActionStats": "Estatísticas", "@menuActionStats": {}, - "viewDialogGroupSectionTitle": "Agrupar", + "viewDialogGroupSectionTitle": "Seccións", "@viewDialogGroupSectionTitle": {}, "castDialogTitle": "Dispositivos de emisión", "@castDialogTitle": {}, @@ -1610,5 +1610,33 @@ "panoramaDisableSensorControl": "Desactivar control do sensor", "@panoramaDisableSensorControl": {}, "settingsHiddenFiltersBanner": "As fotos e vídeos que cadren cos filtros ocultos non se amosarán na súa colección.", - "@settingsHiddenFiltersBanner": {} + "@settingsHiddenFiltersBanner": {}, + "createButtonLabel": "CREAR", + "@createButtonLabel": {}, + "chipActionGroup": "Agrupar", + "@chipActionGroup": {}, + "chipActionCreateGroup": "Crear grupo", + "@chipActionCreateGroup": {}, + "albumTierGroups": "Grupos", + "@albumTierGroups": {}, + "newGroupDialogTitle": "Novo grupo", + "@newGroupDialogTitle": {}, + "newGroupDialogNameLabel": "Nome do grupo", + "@newGroupDialogNameLabel": {}, + "groupAlreadyExists": "Xa existe o grupo", + "@groupAlreadyExists": {}, + "groupEmpty": "Sen grupos", + "@groupEmpty": {}, + "ungrouped": "Non agrupado", + "@ungrouped": {}, + "groupPickerTitle": "Escolmar grupo", + "@groupPickerTitle": {}, + "groupPickerUseThisGroupButton": "Usar este grupo", + "@groupPickerUseThisGroupButton": {}, + "sectionNone": "Sen seccións", + "@sectionNone": {}, + "sortByPath": "Por ruta", + "@sortByPath": {}, + "searchFormatSectionTitle": "Formatos", + "@searchFormatSectionTitle": {} } diff --git a/lib/l10n/app_he.arb b/lib/l10n/app_he.arb index bf8fa21c6..0cdef30e9 100644 --- a/lib/l10n/app_he.arb +++ b/lib/l10n/app_he.arb @@ -144,5 +144,19 @@ "stopTooltip": "עצור", "@stopTooltip": {}, "chipActionGoToExplorerPage": "הצג בסייר", - "@chipActionGoToExplorerPage": {} + "@chipActionGoToExplorerPage": {}, + "chipActionSetCover": "הגדר עטיפה", + "@chipActionSetCover": {}, + "chipActionCreateAlbum": "צור אלבום", + "@chipActionCreateAlbum": {}, + "chipActionShowCountryStates": "הצג סטטיסטיקות", + "@chipActionShowCountryStates": {}, + "createButtonLabel": "צור", + "@createButtonLabel": {}, + "chipActionGroup": "קבוצה", + "@chipActionGroup": {}, + "chipActionCreateGroup": "צור קבוצה", + "@chipActionCreateGroup": {}, + "chipActionCreateVault": "צור כספת", + "@chipActionCreateVault": {} } From e0af21f098f2d56c9a7cde6995dde12a5ddf3bf6 Mon Sep 17 00:00:00 2001 From: Thibault Deckers Date: Wed, 14 May 2025 22:18:09 +0200 Subject: [PATCH 6/6] version bump --- CHANGELOG.md | 2 ++ fastlane/metadata/android/en-US/changelogs/152.txt | 4 ++++ fastlane/metadata/android/en-US/changelogs/15201.txt | 4 ++++ pubspec.yaml | 2 +- whatsnew/whatsnew-en-US | 2 +- 5 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/152.txt create mode 100644 fastlane/metadata/android/en-US/changelogs/15201.txt diff --git a/CHANGELOG.md b/CHANGELOG.md index bf204808f..98fb110e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [v1.13.1] - 2025-05-14 + ### Fixed - albums: show groups to move/copy/export items diff --git a/fastlane/metadata/android/en-US/changelogs/152.txt b/fastlane/metadata/android/en-US/changelogs/152.txt new file mode 100644 index 000000000..1400f36e5 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/152.txt @@ -0,0 +1,4 @@ +In v1.13.1: +- group albums +- filter by day of the week +Full changelog available on GitHub \ No newline at end of file diff --git a/fastlane/metadata/android/en-US/changelogs/15201.txt b/fastlane/metadata/android/en-US/changelogs/15201.txt new file mode 100644 index 000000000..1400f36e5 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/15201.txt @@ -0,0 +1,4 @@ +In v1.13.1: +- group albums +- filter by day of the week +Full changelog available on GitHub \ No newline at end of file diff --git a/pubspec.yaml b/pubspec.yaml index 8ff7ca052..de9243f95 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -7,7 +7,7 @@ repository: https://github.com/deckerst/aves # - play changelog: /whatsnew/whatsnew-en-US # - izzy changelog: /fastlane/metadata/android/en-US/changelogs/XXX01.txt # - libre changelog: /fastlane/metadata/android/en-US/changelogs/XXX.txt -version: 1.13.0+151 +version: 1.13.1+152 publish_to: none environment: diff --git a/whatsnew/whatsnew-en-US b/whatsnew/whatsnew-en-US index 7492062b9..1400f36e5 100644 --- a/whatsnew/whatsnew-en-US +++ b/whatsnew/whatsnew-en-US @@ -1,4 +1,4 @@ -In v1.13.0: +In v1.13.1: - group albums - filter by day of the week Full changelog available on GitHub \ No newline at end of file