aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-07-24Merge branch 'main' into packages-dir0neGal
2023-07-24Merge pull request #193 from 0neGal/add-missing-localizations0neGal
i18n: add missing localization strings
2023-07-24Merge branch 'main' into add-missing-localizations0neGal
2023-07-24Merge pull request #197 from DxsSucuk/add-missing-localizations0neGal
German translation.
2023-07-24Merge pull request #198 from DxsSucuk/packages-dir0neGal
German translation.
2023-07-24German translation.Presti
2023-07-24German translation.Presti
2023-07-23Merge pull request #195 from Alystrasz/french-translations0neGal
french trads
2023-07-23Merge pull request #196 from Alystrasz/packages-trad0neGal
translate
2023-07-22translateRemy Raes
2023-07-22french tradsRemy Raes
2023-07-22colored console logging0neGal
Far prettier, and far more useful at a glance.
2023-07-22Merge pull request #194 from AA-Delta/patch-80neGal
2023-07-21Add missing Spanish localizationsDelta
#193
2023-07-22minor edits to the README.md0neGal
2023-07-22added empty localization strings0neGal
2023-07-22Merge pull request #192 from AA-Delta/patch-70neGal
Added Spanish strings for plugin install prompt
2023-07-22Merge branch 'main' of https://github.com/0neGal/viper0neGal
2023-07-22minor changes to the styling0neGal
2023-07-21Added Spanish strings for plugin install promptDelta
#191
2023-07-22minor edits to the window decoration tooltips0neGal
2023-07-22added English strings for plugin install prompt0neGal
2023-07-22mostly support installing packages through GUI0neGal
Install toasts, installing overall, dependencies and so forth, all seem to be fully functional, however more bug testing is probably required to concluce whether that is actually the case or not... This also doesn't break `src/modules/mods.js`, i.e dragging mods in to manually install them still functions the same as always.
2023-07-22unify all mods of a package into one0neGal
This means instead of showing the invididual mods inside a package, we simply show 1 mod/package, we then use the name, description, version and so forth from the `manifest.json` inside the package folder. Further we now also support a local `icon.png` file, instead of relying on remotely stored icons and trying to match names against each other.
2023-07-21mods from packages can be removed in the frontend0neGal
I also love how I spent a very long time trying to figure out why Electron's serializer was failing, turns out, it just throws errors when it encounters functions, instead of stripping them out, like `JSON.stringify()` does Oh well...
2023-07-21rename mods.list() properties to use snake case0neGal
I may or may not have missed some properties or something somewhere, perhaps we'll see if something ends up broken in the future...
2023-07-21basic support for showing packages in frontend0neGal
2023-07-16minor changes to packages.install()0neGal
2023-07-16remove mods in old folder if installing to new one0neGal
If you're now installing a mod that's currently in the `mods/` folder it'll remove that, then install the new one to `packages/` with the new naming scheme and everything.
2023-07-16fixed unzipper pre-maturily thinking it's finished0neGal
This caused errors where the folder would already be moved even though it's not entirely done unzipping.
2023-07-16fixed packages without plugins not installing0neGal
2023-07-16initial support for packages dir0neGal
This is missing a lot of things, notably support for detecting and installing dependencies, it also is actually being used by the frontend, that still uses `mods.js`, this'll change soon™️ It should also when done, be capable of removing mods installed in the old `mods/` folder when updating those mods, and then installing in the new `packages/` folder, making the upgrade a smooth ride.
2023-06-28Merge pull request #190 from AA-Delta/patch-70neGal
[Spanish Translation] Improve clarity and fix spelling errors in element descriptions
2023-06-26Actualizar es.jsonDelta
2023-06-26[Spanish Translation] Improve clarity and fix spelling errors in element ↵Delta
descriptions The text of some elements did not correctly convey their purpose, so they were changed to be better understood. Some spelling mistakes were corrected.
2023-05-07fixed settings' animation messing with tooltip0neGal
2023-05-07added hover tooltips0neGal
They're pretty simple to use, and automatically make themselves fit on screen, on top of automatically disappearing and appearing of course. I've used them a few places now, and not sure where else they can be used, there are of course localization strings that need, well, localization, and I'll create a PR for this on a later date.
2023-05-06change launch button text if game is running0neGal
This should've already been a thing, and was a thing for when the game was currently launching, but this functionality seems to have been broken at some point.
2023-04-29use await on missing path alert0neGal
2023-04-29win.alert() now uses Promise, and added .confirm()0neGal
win.alert() now has a Promise return value, which'll allow you to wait until an alert has been closed before continuing code execution. win.confirm() was also added it's the same as win.alert() except it runs confirm() in the renderer instead of alert(), and has a return boolean in the Promise resolve callback. This boolean being whether the user confirmed the action or not.
2023-04-16bumped version number to 1.7.3v1.7.30neGal
2023-04-16Merge pull request #183 from 0neGal/eadesktop-support0neGal
feat: Support EA Desktop better
2023-04-16Merge pull request #186 from AA-Delta/patch-60neGal
Update es.json
2023-04-14Update es.jsonDelta
#183
2023-04-13Merge pull request #185 from Alystrasz/eadesktop-support-fr0neGal
Eadesktop support french localization
2023-04-12refactor: update french localizationRémy Raes
2023-04-11Merge pull request #184 from DxsSucuk/eadesktop-support0neGal
Support EA Desktop German Localization
2023-04-11Update de.jsonPresti
Fixed a typo
2023-04-11added EA Desktop to settings entry (en.json)0neGal
The originkill setting now also includes EA Desktop in it's text. Other localizations still need these changes...
2023-04-11functional support for EADesktop.exe0neGal
EADesktop.exe is now killed alongside Viper when toggled in settings, alongside this, it also now contributes towards whether "Origin" is detected as running.