Minor changes

This commit is contained in:
Observer KRypt0n_ 2021-12-31 19:23:33 +02:00
parent df9d2f8a33
commit 3faa73dcfd
No known key found for this signature in database
GPG key ID: DC5D4EC1303465DA
5 changed files with 10 additions and 10 deletions

View file

@ -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/",

View file

@ -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"
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

View file

@ -12,7 +12,7 @@
"wineserver": "bin/wineserver",
"winecfg": "lib64/wine/x86_64-windows/winecfg.exe"
},
"recommended": true
"recommended": false
},
{
"family": "Wine-GE",

View file

@ -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<void> => {
@ -18,12 +20,10 @@ export default (): Promise<void> => {
// 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'
});