From 373a348d65c6015880f7de49b91137e7c80f241a Mon Sep 17 00:00:00 2001 From: Ellie Date: Sun, 12 Oct 2025 00:02:18 +0100 Subject: [PATCH] Update authors --- package.json | 4 ++-- src/app/i18n/index.ts | 2 +- src/app/main/index.ts | 2 +- src/common/constants.ts | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 5be8acc..8442b21 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "1.6.1", "description": "Nintendo Switch app APIs", "license": "AGPL-3.0-or-later", - "author": "Samuel Elliott ", + "author": "Ellie ", "main": "dist/index.js", "type": "module", "repository": { @@ -94,7 +94,7 @@ "build": { "appId": "uk.org.fancy.nxapi.app", "productName": "Nintendo Switch Online", - "copyright": "Copyright © 2023 Samuel Elliott", + "copyright": "Copyright © 2023 Ellie", "npmRebuild": false, "files": [ "dist/app/bundle", diff --git a/src/app/i18n/index.ts b/src/app/i18n/index.ts index 8d5a6b5..c7625c6 100644 --- a/src/app/i18n/index.ts +++ b/src/app/i18n/index.ts @@ -10,7 +10,7 @@ export const languages = { name: 'English', app: () => import('./locale/en-gb.js'), authors: [ - ['Samuel Elliott', 'https://gitlab.fancy.org.uk/samuel', 'https://github.com/samuelthomas2774'], + ['Ellie', 'https://gitlab.fancy.org.uk/ellie'], ], }, 'de-DE': { diff --git a/src/app/main/index.ts b/src/app/main/index.ts index 3c3bda5..548f7d5 100644 --- a/src/app/main/index.ts +++ b/src/app/main/index.ts @@ -154,7 +154,7 @@ function setAboutPanelOptions(i18n?: i18n) { applicationVersion: process.platform === 'darwin' ? version : version + (!release ? '-' + (git?.revision.substr(0, 8) ?? '?') : ''), version: git?.revision.substr(0, 8) ?? '?', - authors: ['Samuel Elliott'], + authors: ['Ellie'], website: GITLAB_URL, credits: (i18n?.t('app:credits') ?? CREDITS_NOTICE) + (language?.authors.length ? '\n\n' + i18n!.t('app:translation_credits', { diff --git a/src/common/constants.ts b/src/common/constants.ts index 36468bf..1e696d8 100644 --- a/src/common/constants.ts +++ b/src/common/constants.ts @@ -6,7 +6,7 @@ export const USER_AGENT_INFO_URL = 'https://gitlab.fancy.org.uk/samuel/nxapi#use export const CONFIG_URL = 'https://fancy.org.uk/api/nxapi/config'; export const LICENCE_NOTICE = ` -Copyright (c) 2023 Samuel Elliott +Copyright (c) 2023 Ellie This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. @@ -18,7 +18,7 @@ This product is not affiliated with Nintendo, Discord and others. All product na `.trim(); export const CREDITS_NOTICE = ` -This product uses services provided by Nintendo (https://nintendo.co.jp), Samuel Elliott (https://gitlab.fancy.org.uk/samuel/nxapi-znca-api) and Jone Wang (https://imink.app). +This product uses services provided by Nintendo (https://nintendo.co.jp), Ellie (https://gitlab.fancy.org.uk/samuel/nxapi-znca-api) and Jone Wang (https://imink.app). `.trim(); export const ZNCA_API_USE_VERSION = 2;