diff --git a/artwork/installer/installer.ifp b/artwork/installer/installer.ifp new file mode 100644 index 00000000..98c09a1e Binary files /dev/null and b/artwork/installer/installer.ifp differ diff --git a/artwork/installer/wizard.bmp b/artwork/installer/wizard.bmp new file mode 100644 index 00000000..ae9c43b6 Binary files /dev/null and b/artwork/installer/wizard.bmp differ diff --git a/artwork/installer/wizard.psd b/artwork/installer/wizard.psd new file mode 100644 index 00000000..3391c863 Binary files /dev/null and b/artwork/installer/wizard.psd differ diff --git a/gulp/standalone.js b/gulp/standalone.js index 0f14d5fc..00d2b685 100644 --- a/gulp/standalone.js +++ b/gulp/standalone.js @@ -128,7 +128,7 @@ function gulptasksStandalone($, gulp, buildFolder) { asar: true, executableName: "shapezio", icon: path.join(electronBaseDir, "favicon"), - name: "shapez.io Standalone", + name: "shapez.io-standalone", out: tempDestDir, overwrite: true, appBundleId: "io.shapez.standalone", diff --git a/package.json b/package.json index 49c72bb7..2e90c019 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ "scripts": { "dev": "./gulp/gulp main.serveDev", "tslint": "cd src/js && tsc", - "prettier-all": "prettier --write src/**/*.* && prettier --write gulp/**/*.*" + "prettier-all": "prettier --write src/**/*.* && prettier --write gulp/**/*.*", + "publishOnItch": "butler push tmp_standalone_files/shapez.io-standalone-win32-x64 tobspr/shapezio:windows --userversion-file version" }, "dependencies": { "@babel/core": "^7.5.4", diff --git a/src/css/states/main_menu.scss b/src/css/states/main_menu.scss index a479ed7e..17c54eb3 100644 --- a/src/css/states/main_menu.scss +++ b/src/css/states/main_menu.scss @@ -25,7 +25,7 @@ .exitAppButton { @include S(right, 100px); - background-image: resolve("icons/main_menu_exit.png"); + background-image: uiResource("icons/main_menu_exit.png"); } .fullscreenBackgroundVideo { diff --git a/src/html/index.standalone.html b/src/html/index.standalone.html index 404706d9..cde8e595 100644 --- a/src/html/index.standalone.html +++ b/src/html/index.standalone.html @@ -17,7 +17,6 @@ - diff --git a/src/js/core/config.js b/src/js/core/config.js index 3c0228b6..33f2c654 100644 --- a/src/js/core/config.js +++ b/src/js/core/config.js @@ -6,7 +6,7 @@ export const IS_DEBUG = window.location.search.indexOf("nodebug") < 0; export const IS_DEMO = - (G_IS_RELEASE && !G_IS_STANDALONE) || + (G_IS_PROD && !G_IS_STANDALONE) || (typeof window !== "undefined" && window.location.search.indexOf("demo") >= 0); const smoothCanvas = true;