chore(web,mobile): update github repo url (#974)

This commit is contained in:
Jason Rasmussen 2022-11-15 21:30:44 -05:00 committed by GitHub
parent 4727671c79
commit 909e4820d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 11 additions and 10 deletions

View File

@ -8,17 +8,19 @@ You can use the CLI to upload an existing gallery to the Immich server
[Immich CLI Repository](https://github.com/immich-app/CLI)
## Requirements
* Node.js 16 or above
* Npm
- Node.js 16 or above
- Npm
## Installation
```bash
npm i -g immich
```
## Quick Start
Specify user's credentials, Immich's server address and port, and the directory you would like to upload videos/photos from.
```bash
@ -58,10 +60,9 @@ immich upload --email testuser@email.com --password password --server http://192
### Run from source
```bash title="Clone Repository"
git clone https://github.com/alextran1502/immich-cli
git clone https://github.com/immich-app/CLI
```
```bash title="Install dependencies"
npm install
```

View File

@ -1,3 +1,3 @@
This is a client app for Immich Server and you will need to run/manage the server on your own in order to use the app.
Github URL: https://github.com/alextran1502/immich
Github URL: https://github.com/immich-app/immich

View File

@ -18,7 +18,7 @@ class ReleaseInfoNotifier extends StateNotifier<String> {
String? localReleaseVersion = box.get(githubReleaseInfoKey);
final res = await client.get(
Uri.parse(
"https://api.github.com/repos/alextran1502/immich/releases/latest",
"https://api.github.com/repos/immich-app/immich/releases/latest",
),
headers: {"Accept": "application/vnd.github.v3+json"});

View File

@ -14,7 +14,7 @@ class VersionAnnouncementOverlay extends HookConsumerWidget {
Widget build(BuildContext context, WidgetRef ref) {
void goToReleaseNote() async {
final Uri url =
Uri.parse('https://github.com/alextran1502/immich/releases/latest');
Uri.parse('https://github.com/immich-app/immich/releases/latest');
await launchUrl(url);
}

View File

@ -26,7 +26,7 @@
>, please take your time to visit the
<span class="underline font-medium"
><a
href="https://github.com/alextran1502/immich/releases/latest"
href="https://github.com/immich-app/immich/releases/latest"
target="_blank"
rel="noopener noreferrer">release note</a
></span

View File

@ -9,7 +9,7 @@ type GithubRelease = {
};
export const checkAppVersion = async (): Promise<CheckAppVersionReponse> => {
const res = await fetch('https://api.github.com/repos/alextran1502/immich/releases/latest', {
const res = await fetch('https://api.github.com/repos/immich-app/immich/releases/latest', {
headers: {
Accept: 'application/vnd.github.v3+json'
}