diff options
author | 0neGal <mail@0negal.com> | 2021-12-29 00:52:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-29 00:52:20 +0100 |
commit | efdc25e4516bc5341e305acf42935407f465a0fb (patch) | |
tree | 5b0eeb6c16d8d419e9dc680136918938cee3aff6 /src/index.js | |
parent | 3d5ccdad4b95e4453ac1857324b2a89497870f09 (diff) | |
parent | 4add9f34f5d9cded91db553aa7a72c6898f7d98b (diff) | |
download | Viper-efdc25e4516bc5341e305acf42935407f465a0fb.tar.gz Viper-efdc25e4516bc5341e305acf42935407f465a0fb.zip |
Merge pull request #7 from 0neGal/localization
Localization support
Diffstat (limited to 'src/index.js')
-rw-r--r-- | src/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
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()}) |