Update authors

This commit is contained in:
Ellie 2025-10-12 00:02:18 +01:00
parent 41f6182dc2
commit 373a348d65
No known key found for this signature in database
GPG Key ID: 9DBD8FA906936CFF
4 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,7 @@
"version": "1.6.1",
"description": "Nintendo Switch app APIs",
"license": "AGPL-3.0-or-later",
"author": "Samuel Elliott <samuel+nxapi@fancy.org.uk>",
"author": "Ellie <ellie+nxapi@fancy.org.uk>",
"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",

View File

@ -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': {

View File

@ -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', {

View File

@ -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;