mirror of
https://github.com/immich-app/immich.git
synced 2025-07-09 03:06:56 -04:00
chore(web,mobile): update github repo url (#974)
This commit is contained in:
parent
4727671c79
commit
909e4820d6
@ -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)
|
[Immich CLI Repository](https://github.com/immich-app/CLI)
|
||||||
|
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
* Node.js 16 or above
|
|
||||||
* Npm
|
- Node.js 16 or above
|
||||||
|
- Npm
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm i -g immich
|
npm i -g immich
|
||||||
```
|
```
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
||||||
Specify user's credentials, Immich's server address and port, and the directory you would like to upload videos/photos from.
|
Specify user's credentials, Immich's server address and port, and the directory you would like to upload videos/photos from.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
@ -58,10 +60,9 @@ immich upload --email testuser@email.com --password password --server http://192
|
|||||||
### Run from source
|
### Run from source
|
||||||
|
|
||||||
```bash title="Clone Repository"
|
```bash title="Clone Repository"
|
||||||
git clone https://github.com/alextran1502/immich-cli
|
git clone https://github.com/immich-app/CLI
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
```bash title="Install dependencies"
|
```bash title="Install dependencies"
|
||||||
npm install
|
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.
|
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);
|
String? localReleaseVersion = box.get(githubReleaseInfoKey);
|
||||||
final res = await client.get(
|
final res = await client.get(
|
||||||
Uri.parse(
|
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"});
|
headers: {"Accept": "application/vnd.github.v3+json"});
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ class VersionAnnouncementOverlay extends HookConsumerWidget {
|
|||||||
Widget build(BuildContext context, WidgetRef ref) {
|
Widget build(BuildContext context, WidgetRef ref) {
|
||||||
void goToReleaseNote() async {
|
void goToReleaseNote() async {
|
||||||
final Uri url =
|
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);
|
await launchUrl(url);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
>, please take your time to visit the
|
>, please take your time to visit the
|
||||||
<span class="underline font-medium"
|
<span class="underline font-medium"
|
||||||
><a
|
><a
|
||||||
href="https://github.com/alextran1502/immich/releases/latest"
|
href="https://github.com/immich-app/immich/releases/latest"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer">release note</a
|
rel="noopener noreferrer">release note</a
|
||||||
></span
|
></span
|
||||||
|
@ -9,7 +9,7 @@ type GithubRelease = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const checkAppVersion = async (): Promise<CheckAppVersionReponse> => {
|
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: {
|
headers: {
|
||||||
Accept: 'application/vnd.github.v3+json'
|
Accept: 'application/vnd.github.v3+json'
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user