Change frame => photos-app in README etc
This commit is contained in:
parent
59ad671ee2
commit
f4aae4947a
5 changed files with 16 additions and 10 deletions
15
README.md
15
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`
|
||||
|
||||
<br/>
|
||||
|
||||
|
@ -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.
|
||||
|
||||
<br/>
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -199,7 +199,7 @@ Future<void> 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<void> 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,
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue