mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2024-12-29 21:18:17 +03:00
Minor changes
This commit is contained in:
parent
df9d2f8a33
commit
3faa73dcfd
5 changed files with 10 additions and 10 deletions
|
@ -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/",
|
||||
|
|
10
package.json
10
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"
|
||||
}
|
||||
}
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 24 KiB |
|
@ -12,7 +12,7 @@
|
|||
"wineserver": "bin/wineserver",
|
||||
"winecfg": "lib64/wine/x86_64-windows/winecfg.exe"
|
||||
},
|
||||
"recommended": true
|
||||
"recommended": false
|
||||
},
|
||||
{
|
||||
"family": "Wine-GE",
|
||||
|
|
|
@ -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'
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue