From 1d5577a7dc7d780bd42149c78b448508ffe34041 Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Mon, 19 May 2025 17:14:20 +0200 Subject: [PATCH] Fix repository link. Fix about page: Change contributors and use GitLab links Display website in the dedicated field, Remove duplicate repository link --- electron/package.json | 2 +- src/app/home/about/about.modal.html | 22 ++++++---------------- src/app/home/home.page.html | 2 +- src/environments/environment.prod.ts | 4 ++-- src/environments/environment.ts | 4 ++-- 5 files changed, 12 insertions(+), 22 deletions(-) diff --git a/electron/package.json b/electron/package.json index 540ffd3..e53b40a 100644 --- a/electron/package.json +++ b/electron/package.json @@ -10,7 +10,7 @@ "type": "git", "url": "git.duniter.org:clients/cesium-grp/cesium2.git" }, - "homepage": "https://git.duniter.org/clients/cesium-grp/cesium1s", + "homepage": "https://git.duniter.org/clients/cesium-grp/cesium2s", "license": "AGPL-3.0", "main": "build/src/index.js", "scripts": { diff --git a/src/app/home/about/about.modal.html b/src/app/home/about/about.modal.html index 4acaa1e..b91956b 100644 --- a/src/app/home/about/about.modal.html +++ b/src/app/home/about/about.modal.html @@ -21,8 +21,6 @@ <ion-label> {{ 'COMMON.APP_NAME' | translate }} <b>{{ 'COMMON.APP_VERSION' | translate: { version: environment.version } }}</b> - - - <a href="{{ environment.officialUrl }}" target="_system">{{ environment.officialUrl }}</a> </ion-label> <ion-label [innerHTML]="'ABOUT.LICENSE' | translate"></ion-label> </ion-item> @@ -40,7 +38,7 @@ <ion-icon slot="start" name="laptop-outline"></ion-icon> <ion-label translate>ABOUT.OFFICIAL_WEB_SITE</ion-label> <ion-label> - <a href="{{ environment.sourceUrl }}" target="_system" translate>{{ environment.sourceUrl }}</a> + <a href="{{ environment.officialUrl }}" target="_system">{{ environment.officialUrl }}</a> </ion-label> </ion-item> @@ -71,19 +69,11 @@ <ion-icon slot="start" name="people"></ion-icon> <ion-label translate>ABOUT.DEVELOPERS</ion-label> <ion-label> - <a href="https://github.com/blavenie" target="_system">Benoit Lavenier</a> - , - <a href="https://github.com/bpresles" target="_system">bpresles</a> - , - <a href="https://github.com/c-geek" target="_system">cgeek</a> - , - <a href="https://github.com/devingfx" target="_system">DiG</a> - , - <a href="https://git.duniter.org/ji_emme" target="_system">Ji_emme</a> - , - <a href="https://git.duniter.org/matograine" target="_system">matograine</a> - , - <a href="https://github.com/duniter/cesium/graphs/contributors" target="_system" title="{{ 'HOME.SHOW_ALL_FEED' | translate }}">...</a> + <a href="https://git.duniter.org/blavenie" target="_system">Benoit Lavenier</a>, + <a href="https://git.duniter.org/indelog" target="_system">Maxime (indelog)</a>, + <a href="https://git.duniter.org/zoltounet" target="_system">Dorian Marco</a>, + <a href="https://git.duniter.org/txels" target="_system">Carles Barrobés (txels)</a>, + <a href="https://github.com/duniter/cesium2s/graphs/contributors" target="_system" title="{{ 'HOME.SHOW_ALL_FEED' | translate }}">...</a> </ion-label> </ion-item> </ion-list> diff --git a/src/app/home/home.page.html b/src/app/home/home.page.html index 0307edc..0b62f08 100644 --- a/src/app/home/home.page.html +++ b/src/app/home/home.page.html @@ -24,7 +24,7 @@ <a [href]="environment.sourceUrl" target="_blank" title="{{ 'HOME.FORK_ME' | translate }}"> <ion-badge color="secondary" translate>HOME.FREE_SOFTWARE</ion-badge> </a> - <a href="https://git.duniter.org/clients/cesium-grp/cesium/-/raw/master/LICENSE" target="_blank" title="{{ 'HOME.SHOW_LICENSE' | translate }}"> + <a href="https://git.duniter.org/clients/cesium-grp/cesium2s/-/raw/master/LICENSE" target="_blank" title="{{ 'HOME.SHOW_LICENSE' | translate }}"> <ion-badge color="light">AGPL-3.0</ion-badge> </a> </div> diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index bc83030..76fe289 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -14,8 +14,8 @@ export const environment = <Environment>{ // About officialUrl: 'https://www.cesium.app', - sourceUrl: 'https://git.duniter.org/clients/cesium-grp/cesium', - reportIssueUrl: 'https://git.duniter.org/clients/cesium-grp/cesium/-/issues/new', + sourceUrl: 'https://git.duniter.org/clients/cesium-grp/cesium2s', + reportIssueUrl: 'https://git.duniter.org/clients/cesium-grp/cesium2s/-/issues/new', forumUrl: 'https://forum.monnaie-libre.fr', graphql: { diff --git a/src/environments/environment.ts b/src/environments/environment.ts index 58f4da6..fc117a2 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -16,8 +16,8 @@ export const environment = <Environment>{ // About officialUrl: 'https://www.cesium.app', - sourceUrl: 'https://git.duniter.org/clients/cesium-grp/cesium', - reportIssueUrl: 'https://git.duniter.org/clients/cesium-grp/cesium/-/issues/new', + sourceUrl: 'https://git.duniter.org/clients/cesium-grp/cesium2s', + reportIssueUrl: 'https://git.duniter.org/clients/cesium-grp/cesium2s/-/issues/new', forumUrl: 'https://forum.monnaie-libre.fr', graphql: { -- GitLab