Merge branch 'main' into f-droid

This commit is contained in:
ashilkn
2024-05-28 12:37:14 +05:30
5 changed files with 6 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ on:
workflow_dispatch: # Allow manually running the action
env:
FLUTTER_VERSION: "3.22.0"
FLUTTER_VERSION: "3.19.4"
jobs:
build:

View File

@@ -9,7 +9,7 @@ on:
- ".github/workflows/mobile-lint.yml"
env:
FLUTTER_VERSION: "3.19.5"
FLUTTER_VERSION: "3.19.4"
jobs:
lint:

View File

@@ -9,7 +9,7 @@ on:
- "photos-v*"
env:
FLUTTER_VERSION: "3.19.3"
FLUTTER_VERSION: "3.19.4"
jobs:
build:

View File

@@ -46,7 +46,7 @@ You can alternatively install the build from PlayStore or F-Droid.
## 🧑‍💻 Building from source
1. [Install Flutter v3.19.3](https://flutter.dev/docs/get-started/install).
1. [Install Flutter v3.19.4](https://flutter.dev/docs/get-started/install).
2. Pull in all submodules with `git submodule update --init --recursive`

View File

@@ -320,7 +320,8 @@ class _PersonActionSheetState extends State<PersonActionSheet> {
final files = clustersToFiles.values.expand((e) => e).toList();
if (files.isEmpty) {
debugPrint(
"Person ${kDebugMode ? person.data.name : person.remoteID} has no files");
"Person ${kDebugMode ? person.data.name : person.remoteID} has no files",
);
continue;
}
personAndFileID.add((person, files.first));