diff --git a/neutralino.config.json b/neutralino.config.json index 44bdd0f..e0466eb 100644 --- a/neutralino.config.json +++ b/neutralino.config.json @@ -1,6 +1,6 @@ { "applicationId": "com.krypt0nn.an-anime-game-launcher", - "version": "3.0.0", + "version": "2.0.0", "defaultMode": "window", "port": 0, "documentRoot": "/bundle/", diff --git a/package.json b/package.json index 5786827..9ef477e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "an-anime-game-launcher", - "version": "3.0.0", + "version": "2.0.0", "license": "GPL-3.0", "type": "module", "scripts": { @@ -15,16 +15,16 @@ "yaml": "^1.10.2" }, "devDependencies": { - "@neutralinojs/neu": "^8.0.0", - "@sveltejs/vite-plugin-svelte": "^1.0.0-next.32", + "@neutralinojs/neu": "^8.1.0", + "@sveltejs/vite-plugin-svelte": "^1.0.0-next.33", "@tsconfig/svelte": "^3.0.0", "@types/js-md5": "^0.4.3", - "sass": "^1.45.1", + "sass": "^1.45.2", "svelte": "^3.44.3", "svelte-check": "^2.2.11", "svelte-preprocess": "^4.10.1", "tslib": "^2.3.1", "typescript": "^4.5.4", - "vite": "^2.7.8" + "vite": "^2.7.10" } } diff --git a/public/icons/baal64-transparent.png b/public/icons/baal64-transparent.png deleted file mode 100644 index fb8f688..0000000 Binary files a/public/icons/baal64-transparent.png and /dev/null differ diff --git a/public/runners.json b/public/runners.json index 42ce4cc..305aa47 100644 --- a/public/runners.json +++ b/public/runners.json @@ -12,7 +12,7 @@ "wineserver": "bin/wineserver", "winecfg": "lib64/wine/x86_64-windows/winecfg.exe" }, - "recommended": true + "recommended": false }, { "family": "Wine-GE", diff --git a/src/ts/launcher/states/Launch.ts b/src/ts/launcher/states/Launch.ts index 1bebf85..219eab1 100644 --- a/src/ts/launcher/states/Launch.ts +++ b/src/ts/launcher/states/Launch.ts @@ -7,6 +7,8 @@ import Game from '../../Game'; import Process from '../../neutralino/Process'; import Window from '../../neutralino/Window'; +import Baal from '../../../assets/images/baal64-transparent.png'; + declare const Neutralino; export default (): Promise => { @@ -18,12 +20,10 @@ export default (): Promise => { // If telemetry servers are not disabled if (!telemetry) { - const icon = `${constants.paths.appDir}/public/icons/baal64-transparent.png`; - Notifications.show({ title: 'An Anime Game Launcher', body: 'Telemetry servers are not disabled', - icon: icon, + icon: Baal, importance: 'critical' });