-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Добавлена поддержка модов. - Увеличено окно с прогрессбаром. - Добавлена настройка отключения поддержки модов. - Убрано отставание файлов (когда происходило какое-либо изменение вне программы).
- Loading branch information
Showing
29 changed files
with
433 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,5 +92,6 @@ out/ | |
src/backups/ | ||
|
||
.vscode/ | ||
src/scripts/temp/ | ||
src/scripts/mainTemp/ | ||
src/scripts/modsTemp/ | ||
update/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"name":"snowrunner-xml-editor-desktop","productName":"SnowRunner XML Editor","version":"0.5.8","description":"Allows you to visually edit the game's XML files.","repository":{"type":"git","url":"https://github.com/VerZsuT/SnowRunner-XML-Editor-Desktop.git"},"main":"src/app/index.js","scripts":{"start":"electron-forge start","build":"node preBuild.js && npm run package && node postBuild.js","package":"electron-forge package --platform=win32 --arch=ia32"},"keywords":[],"author":{"name":"VerZsuT","email":"verzsut@gmail.com"},"license":"MIT","config":{"forge":{"packagerConfig":{"ignore":["node_modules","docs","postBuild.js","preBuild.js",".gitignore"],"icon":"./src/icons/favicon.ico"}}},"devDependencies":{"@electron-forge/cli":"^6.0.0-beta.54","electron":"^12.0.2"},"dependencies":{}} | ||
{"name":"snowrunner-xml-editor-desktop","productName":"SnowRunner XML Editor","version":"0.6.0","description":"Allows you to visually edit the game's XML files.","repository":{"type":"git","url":"https://github.com/VerZsuT/SnowRunner-XML-Editor-Desktop.git"},"main":"src/app/index.js","scripts":{"start":"electron-forge start","build":"node preBuild.js && npm run package && node postBuild.js","package":"electron-forge package --platform=win32 --arch=ia32"},"keywords":[],"author":{"name":"VerZsuT","email":"verzsut@gmail.com"},"license":"MIT","config":{"forge":{"packagerConfig":{"ignore":["node_modules","docs","postBuild.js","preBuild.js",".gitignore"],"icon":"./src/icons/favicon.ico"}}},"devDependencies":{"@electron-forge/cli":"^6.0.0-beta.54","electron":"^12.0.2"},"dependencies":{}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,28 @@ | ||
{ | ||
"version": "0.5.8", | ||
"version": "0.6.0", | ||
"lang": "EN", | ||
"buildType": "dev", | ||
"paths": { | ||
"initial": null, | ||
"dlc": null, | ||
"classes": null, | ||
"game": null | ||
"game": null, | ||
"mods": null | ||
}, | ||
"settings": { | ||
"ignoreUpdates": false, | ||
"showWinRARWindow": false, | ||
"disableLimits": false, | ||
"disableDLC": false, | ||
"disableMods": false, | ||
"disableEditorLabel": false, | ||
"hideResetButton": true, | ||
"hideResetButton": false, | ||
"devMode": false | ||
}, | ||
"sums": { | ||
"initial": null, | ||
"mods": {} | ||
}, | ||
"modsList": {}, | ||
"dlcList": [] | ||
} |
Oops, something went wrong.