diff --git a/README.md b/README.md
index 52ce5802098e7b0ed1297fd07e66913596a3a51c..727805f335aeb8948fac79d62651af3d97af2ebc 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).

@@ -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 71a1335304c6c993d3c033a49d5816992ead8124..5ff407563b7215fb976d75ae8634cf7c34031d8c 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 ab05c5f8ba02fa5efd9c16ef722b7c1ceb7b04d8..29f22b6ac237a9da343a2a7ff75a2ea504c10fd5 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 4952b92049e8944eb8362dc57e2edf8164836dd0..6b5c93cf8f89bd8f03fcc267c5a65bd720481357 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 c617ea3b98e7679c1dab0ee81b9239aad86c3dff..dff88888435dfcdc20bfdf6cf4e0bfc60cbd801f 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,
);