diff options
author | 0neGal <mail@0negal.com> | 2021-12-29 00:39:52 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2021-12-29 00:39:52 +0100 |
commit | aefef2040280ae9e4292c39df65f2b378128aa07 (patch) | |
tree | 61dacc098255a7d102236bbd4d13b952fa91e573 | |
parent | 8b90dc59f005ccb394f3392a80dcc28cc0ac73e7 (diff) | |
download | Viper-aefef2040280ae9e4292c39df65f2b378128aa07.tar.gz Viper-aefef2040280ae9e4292c39df65f2b378128aa07.zip |
uses navigator.language to determine language
-rw-r--r-- | src/app/main.js | 3 | ||||
-rw-r--r-- | src/index.js | 1 | ||||
-rw-r--r-- | src/utils.js | 6 |
3 files changed, 9 insertions, 1 deletions
diff --git a/src/app/main.js b/src/app/main.js index a3a5676..579f785 100644 --- a/src/app/main.js +++ b/src/app/main.js @@ -7,12 +7,15 @@ const lang = require("../lang"); var settings = { gamepath: "", zip: "/northstar.zip", + lang: navigator.language, excludes: [ "ns_startup_args.txt", "ns_startup_args_dedi.txt" ] } +ipcRenderer.send("setlang", settings.lang); + if (fs.existsSync("viper.json")) { settings = {...settings, ...JSON.parse(fs.readFileSync("viper.json", "utf8"))}; settings.zip = path.join(settings.gamepath + "/northstar.zip"); diff --git a/src/index.js b/src/index.js index 4e64414..fead15b 100644 --- a/src/index.js +++ b/src/index.js @@ -33,6 +33,7 @@ function start() { } ipcMain.on("launch", (event) => {utils.launch()}) +ipcMain.on("setlang", (event, lang) => {utils.setlang(lang)}) ipcMain.on("launchVanilla", (event) => {utils.launch("vanilla")}) ipcMain.on("update", (event) => {utils.update()}) diff --git a/src/utils.js b/src/utils.js index 85ce5ce..ec15554 100644 --- a/src/utils.js +++ b/src/utils.js @@ -16,6 +16,7 @@ process.chdir(app.getPath("appData")); var settings = { gamepath: "", + lang: "en-US", zip: "/northstar.zip", excludes: [ "ns_startup_args.txt", @@ -30,7 +31,6 @@ if (fs.existsSync("viper.json")) { console.log("Game path is not set! Please select the path."); } - function setpath(win) { if (! win) { settings.gamepath = cli.param("setpath"); @@ -110,4 +110,8 @@ module.exports = { update, setpath, settings, + setlang: (lang) => { + settings.lang = lang; + saveSettings(); + }, } |