diff --git a/package.json b/package.json index ddc4af4..fe327e3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "not-nextop", - "version": "1.5.9", + "version": "1.6.0", "private": true, "description": "Not-Nextop is a custom Discord desktop app", "keywords": [], diff --git a/src/main/constants.ts b/src/main/constants.ts index dcfc8fc..ff52a36 100644 --- a/src/main/constants.ts +++ b/src/main/constants.ts @@ -34,7 +34,7 @@ export const VENCORD_FILES_DIR = (require("./settings") as typeof import("./settings")).State.store.vencordDir || join(SESSION_DATA_DIR, "vencordFiles"); -export const USER_AGENT = `Vesktop/${app.getVersion()} (https://github.com/Vencord/Vesktop)`; +export const USER_AGENT = `Vesktop/${app.getVersion()} (https://github.com/Not-Nexulien/Not-Nextop)`; // dimensions shamelessly stolen from Discord Desktop :3 export const MIN_WIDTH = 940; diff --git a/src/main/index.ts b/src/main/index.ts index f583113..3dda0cc 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -126,10 +126,10 @@ function init() { if (!app.requestSingleInstanceLock({ IS_DEV })) { if (IS_DEV) { - console.log("Vesktop is already running. Quitting previous instance..."); + console.log("Not-Nextop is already running. Quitting previous instance..."); init(); } else { - console.log("Vesktop is already running. Quitting..."); + console.log("Not-Nextop is already running. Quitting..."); app.quit(); } } else { diff --git a/src/main/mainWindow.ts b/src/main/mainWindow.ts index d7ce92a..e5837af 100644 --- a/src/main/mainWindow.ts +++ b/src/main/mainWindow.ts @@ -164,24 +164,24 @@ function initMenuBar(win: BrowserWindow) { const subMenu = [ { - label: "About Vesktop", + label: "About Not-Nextop", click: createAboutWindow }, { - label: "Force Update Vencord", + label: "Force Update Not-Nexulien", async click() { await downloadVencordFiles(); app.relaunch(); app.quit(); }, - toolTip: "Vesktop will automatically restart after this operation" + toolTip: "Not-Nextop will automatically restart after this operation" }, { - label: "Reset Vesktop", + label: "Reset Not-Nextop", async click() { await clearData(win); }, - toolTip: "Vesktop will automatically restart after this operation" + toolTip: "Not-Nextop will automatically restart after this operation" }, { label: "Relaunch", @@ -248,7 +248,7 @@ function initMenuBar(win: BrowserWindow) { const menuItems = [ { - label: "Vesktop", + label: "Not-Nextop", role: "appMenu", submenu: subMenu.filter(isTruthy) }, diff --git a/src/main/settings.ts b/src/main/settings.ts index ce559fb..dd94746 100644 --- a/src/main/settings.ts +++ b/src/main/settings.ts @@ -34,6 +34,6 @@ function loadSettings(file: string, name: string) { return store; } -export const Settings = loadSettings(SETTINGS_FILE, "Vesktop settings"); -export const VencordSettings = loadSettings(VENCORD_SETTINGS_FILE, "Vencord settings"); -export const State = loadSettings(STATE_FILE, "Vesktop state"); +export const Settings = loadSettings(SETTINGS_FILE, "Not-Nextop settings"); +export const VencordSettings = loadSettings(VENCORD_SETTINGS_FILE, "Not-Nextop settings"); +export const State = loadSettings(STATE_FILE, "Not-Nextop state"); diff --git a/src/main/utils/vencordLoader.ts b/src/main/utils/vencordLoader.ts index fa35db9..1e904af 100644 --- a/src/main/utils/vencordLoader.ts +++ b/src/main/utils/vencordLoader.ts @@ -44,7 +44,7 @@ export async function githubGet(endpoint: string) { } export async function downloadVencordFiles() { - const release = await githubGet("/repos/not-nexulien/Not-Nexulien/releases/latest"); + const release = await githubGet("/repos/Not-Nexulien/Not-Nexulien/releases/latest"); const { assets }: ReleaseData = await release.json(); diff --git a/src/renderer/components/settings/Settings.tsx b/src/renderer/components/settings/Settings.tsx index 8bd60e9..a85ee60 100644 --- a/src/renderer/components/settings/Settings.tsx +++ b/src/renderer/components/settings/Settings.tsx @@ -179,15 +179,10 @@ export default ErrorBoundary.wrap( function SettingsUI() { return ( -<<<<<<< HEAD - - Not-Nextop Settings -======= {/* FIXME: Outdated type */} {/* @ts-expect-error Outdated type */} - Vesktop Settings ->>>>>>> 27293d4ae9db3a395325f7993cf3cc74a21e0122 + Not-Nextop Settings diff --git a/static/views/about.html b/static/views/about.html index 38ea463..176b23d 100644 --- a/static/views/about.html +++ b/static/views/about.html @@ -1,5 +1,5 @@ - About Vesktop + About Not-Nextop @@ -21,23 +21,17 @@ -

Vesktop v{{APP_VERSION}}

-

Vesktop is a cross platform Discord Desktop client, aiming to give you a better Discord experience

+

Not-Nextop v{{APP_VERSION}}

+

Not-Nextop is a cross platform Discord Desktop client, aiming to give you a better Discord experience

Links

@@ -45,7 +39,7 @@

License

- Vesktop is licensed under the + Not-Nextop is licensed under the GNU General Public License v3.0.
This is free software, and you are welcome to redistribute it under certain conditions; see the license for @@ -55,7 +49,7 @@

Acknowledgements

-

These awesome libraries empower Vesktop

+

These awesome libraries empower Not-Nextop

+

And thanks Vesktop for the original project.