diff options
author | 0neGal <mail@0negal.com> | 2022-01-02 03:36:39 +0100 |
---|---|---|
committer | 0neGal <mail@0negal.com> | 2022-01-02 03:36:39 +0100 |
commit | 9c4b2aa7bfe2a96354f968c23a98213995242380 (patch) | |
tree | c2247f0aa5c5678d49d469fd55c2a9758c043b28 /package-lock.json | |
parent | 80eeab10e81a32c00c24608be83e7ea75ff9accf (diff) | |
download | Viper-9c4b2aa7bfe2a96354f968c23a98213995242380.tar.gz Viper-9c4b2aa7bfe2a96354f968c23a98213995242380.zip |
toggling, removing and installing mods works
Mostly, the installing part needs a bit more look at, to support
archives and different layouts for the mod. Such as searching through an
archive to find the right folder because some mods don't use a proper
layout. I also somewhat mitigated the whole issue of JSON files not
being formatted properly by the mod developer (please just fix your
formatting, I beg you.) by simply assigning the absolute basics, however
we can't know the versions of the mods.
I am not going to go out of my way to write code which can parse a file
that wasn't made to be parsed because whoever wrote it doesn't know what
a JSON file is made of. Simply not happening.
I also added a few locatiolization related things, along with more info
for --mods, so besides the normal counter for "Installed mods" you also
have "Enabled mods" and "Disabled mods", very useful.
The GUI also has a new added "Disabled" tag to mods that are disabled,
however this is a temporary, it looks bad and I don't want it in
release, I just needed a way to distinquish when testing.
Because you can now also enable and disable mods, mods.list() gives back
an Object that goes more or less something like:
{all: ..., enabled: ..., disabled: ... }, take your guesses as to what
everything means, you might even get it in the first try.
Diffstat (limited to 'package-lock.json')
-rw-r--r-- | package-lock.json | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package-lock.json b/package-lock.json index 96d23eb..8bb3e29 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,6 +9,7 @@ "version": "0.9.0", "license": "GPL-3.0-or-later", "dependencies": { + "copy-dir": "^1.3.0", "electron-updater": "^4.6.1", "follow-redirects": "^1.14.6", "marked-man": "^0.7.0", @@ -1085,6 +1086,11 @@ "node": ">=8" } }, + "node_modules/copy-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/copy-dir/-/copy-dir-1.3.0.tgz", + "integrity": "sha512-Q4+qBFnN4bwGwvtXXzbp4P/4iNk0MaiGAzvQ8OiMtlLjkIKjmNN689uVzShSM0908q7GoFHXIPx4zi75ocoaHw==" + }, "node_modules/core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", @@ -4540,6 +4546,11 @@ "xdg-basedir": "^4.0.0" } }, + "copy-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/copy-dir/-/copy-dir-1.3.0.tgz", + "integrity": "sha512-Q4+qBFnN4bwGwvtXXzbp4P/4iNk0MaiGAzvQ8OiMtlLjkIKjmNN689uVzShSM0908q7GoFHXIPx4zi75ocoaHw==" + }, "core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", |