diff --git a/README.md b/README.md index 52ce58020..727805f33 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ We have open-source apps across Android, iOS, web and desktop that automatically backup your photos and videos. -This repository contains the code for our mobile apps, built with a lot of ❤️, and a little bit of [Flutter.](https://flutter.dev) +This repository contains the code for our mobile apps, built with a lot of ❤️, and a little bit of [Flutter](https://flutter.dev). ![App Screenshots](https://user-images.githubusercontent.com/24503581/175218240-fe5a0703-82c1-4750-bfea-abfd9f409a97.png) @@ -35,7 +35,11 @@ This repository contains the code for our mobile apps, built with a lot of ❤ ### Android -This [repository's GitHub releases](https://github.com/ente-io/frame/releases) contains APKs, built straight from source. The latest build is available @ [ente.io/apk](https://ente.io/apk). These builds keep themselves updated, without relying on third party stores. +This [repository's GitHub +releases](https://github.com/ente-io/photos-app/releases) contains APKs, built +straight from source. The latest build is available @ +[ente.io/apk](https://ente.io/apk). These builds keep themselves updated, +without relying on third party stores. You can alternatively install the build from PlayStore or F-Droid. @@ -58,10 +62,10 @@ You can alternatively install the build from PlayStore or F-Droid. ## 🧑‍💻 Building from source 1. [Install Flutter](https://flutter.dev/docs/get-started/install) -2. Clone this repository with `git clone git@github.com:ente-io/frame.git` +2. Clone this repository with `git clone git@github.com:ente-io/photos-app.git` 3. Pull in all submodules with `git submodule update --init --recursive` 4. For Android, run `flutter build apk --release --flavor independent` -5. For iOS, run `flutter build ios` +5. For iOS, run `flutter build ios`
@@ -81,7 +85,8 @@ We maintain a public roadmap, that's driven by our community @ [roadmap.ente.io] If you like this project, please consider upgrading to a paid subscription. -If you would like to motivate us to keep building, you can do so by [starring](https://github.com/ente-io/frame/stargazers) this project. +If you would like to motivate us to keep building, you can do so by +[starring](https://github.com/ente-io/photos-app/stargazers) this project.
diff --git a/fastlane/metadata/android/en-US/full_description.txt b/fastlane/metadata/android/en-US/full_description.txt index 71a133530..5ff407563 100644 --- a/fastlane/metadata/android/en-US/full_description.txt +++ b/fastlane/metadata/android/en-US/full_description.txt @@ -24,7 +24,7 @@ FEATURES - and a LOT more! PERMISSIONS -Ente requests for certain permissions to serve the purpose of a photo storage provider, which can be reviewed here: https://github.com/ente-io/frame/blob/f-droid/android/permissions.md +Ente requests for certain permissions to serve the purpose of a photo storage provider, which can be reviewed here: https://github.com/ente-io/photos-app/blob/f-droid/android/permissions.md PRICING We don't offer forever free plans, because it is important to us that we remain sustainable and withstand the test of time. Instead we offer affordable plans that you can freely share with your family. You can find more information at ente.io. diff --git a/lib/services/remote_sync_service.dart b/lib/services/remote_sync_service.dart index ab05c5f8b..29f22b6ac 100644 --- a/lib/services/remote_sync_service.dart +++ b/lib/services/remote_sync_service.dart @@ -502,7 +502,7 @@ class RemoteSyncService { break; } // prefer existing collection ID for manually uploaded files. - // See https://github.com/ente-io/frame/pull/187 + // See https://github.com/ente-io/photos-app/pull/187 final collectionID = file.collectionID ?? (await _collectionsService.getOrCreateForPath(file.deviceFolder)).id; _uploadFile(file, collectionID, futures); diff --git a/lib/ui/settings/about_section_widget.dart b/lib/ui/settings/about_section_widget.dart index 4952b9204..6b5c93cf8 100644 --- a/lib/ui/settings/about_section_widget.dart +++ b/lib/ui/settings/about_section_widget.dart @@ -37,7 +37,7 @@ class AboutSectionWidget extends StatelessWidget { trailingIcon: Icons.chevron_right_outlined, trailingIconIsMuted: true, onTap: () async { - launchUrl(Uri.parse("https://github.com/ente-io/frame")); + launchUrl(Uri.parse("https://github.com/ente-io/photos-app")); }, ), sectionOptionSpacing, diff --git a/lib/utils/email_util.dart b/lib/utils/email_util.dart index c617ea3b9..dff888884 100644 --- a/lib/utils/email_util.dart +++ b/lib/utils/email_util.dart @@ -199,7 +199,7 @@ Future sendEmail( ); if (Platform.isAndroid) { // Special handling due to issue in proton mail android client - // https://github.com/ente-io/frame/pull/253 + // https://github.com/ente-io/photos-app/pull/253 final Uri params = Uri( scheme: 'mailto', path: to, @@ -212,7 +212,8 @@ Future sendEmail( throw Exception('Could not launch ${params.toString()}'); } } else { - final OpenMailAppResult result = await OpenMailApp.composeNewEmailInMailApp( + final OpenMailAppResult result = + await OpenMailApp.composeNewEmailInMailApp( nativePickerTitle: 'Select email app', emailContent: email, );