diff --git a/docs/docs/usage/bulk-upload.md b/docs/docs/usage/bulk-upload.md index a65b17e4d3..5fd97c7322 100644 --- a/docs/docs/usage/bulk-upload.md +++ b/docs/docs/usage/bulk-upload.md @@ -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 ``` diff --git a/mobile/android/metadata/en-US/full_description.txt b/mobile/android/metadata/en-US/full_description.txt index 1b9cf3fdd9..64a78ef8ca 100644 --- a/mobile/android/metadata/en-US/full_description.txt +++ b/mobile/android/metadata/en-US/full_description.txt @@ -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 \ No newline at end of file +Github URL: https://github.com/immich-app/immich diff --git a/mobile/lib/shared/providers/release_info.provider.dart b/mobile/lib/shared/providers/release_info.provider.dart index 559a544ac1..da24505e98 100644 --- a/mobile/lib/shared/providers/release_info.provider.dart +++ b/mobile/lib/shared/providers/release_info.provider.dart @@ -18,7 +18,7 @@ class ReleaseInfoNotifier extends StateNotifier { 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"}); diff --git a/mobile/lib/shared/views/version_announcement_overlay.dart b/mobile/lib/shared/views/version_announcement_overlay.dart index d066be676d..8ec0d0b1bc 100644 --- a/mobile/lib/shared/views/version_announcement_overlay.dart +++ b/mobile/lib/shared/views/version_announcement_overlay.dart @@ -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); } diff --git a/web/src/lib/components/shared-components/announcement-box.svelte b/web/src/lib/components/shared-components/announcement-box.svelte index 4ad9f73579..eb2c34e367 100644 --- a/web/src/lib/components/shared-components/announcement-box.svelte +++ b/web/src/lib/components/shared-components/announcement-box.svelte @@ -26,7 +26,7 @@ >, please take your time to visit the release note => { - 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' }