mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	chore(web,mobile): update github repo url (#974)
This commit is contained in:
		@@ -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
 | 
			
		||||
```
 | 
			
		||||
 
 | 
			
		||||
@@ -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
 | 
			
		||||
 
 | 
			
		||||
@@ -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"});
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -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);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -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
 | 
			
		||||
 
 | 
			
		||||
@@ -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'
 | 
			
		||||
		}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user