GooseMod v5.4.0: Settings UI improvements and tweaks

pull/14/head
Oj18 3 years ago
parent 04194eae91
commit 70c7adb27b

@ -1,5 +1,15 @@
# GooseMod Changelog
## v5.4.0 [2020-12-04]
- ### Features
- [GitHub PR #11 by Fjorge](https://github.com/GooseMod/Injector/pull/11): Only exclude modules with all (not some) authors unselected in Module Store Sidebar
- [GitHub PR #12 by Fjorge](https://github.com/GooseMod/Injector/pull/12): Add Changelog button to GooseMod settings
- ### Tweaks
- Removed uninstall setting option
## v5.3.1 [2020-12-04]
- ### Fixes

6
dist/index.js vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

@ -99,7 +99,7 @@ const init = async function () {
this.disabledModules = {};
this.lastVersion = localStorage.getItem('goosemodLastVersion');
this.version = '5.3.1';
this.version = '5.4.0';
this.versionHash = '<hash>'; // Hash of built final js file is inserted here via build script
fetch('https://goosemod-api.netlify.app/injectVersion.json').then((x) => x.json().then((latestInjectVersionInfo) => {

@ -1,5 +1,5 @@
import sleep from '../util/sleep';
import * as GoosemodChangelog from './ui/goosemodChangelog';
import * as GoosemodChangelog from './goosemodChangelog';
let goosemodScope = {};
@ -1432,17 +1432,17 @@ export const makeGooseModSettings = () => {
}
]);
goosemodScope.settings.createItem('Changelog', [""], async () => {
goosemodScope.settings.createItem('Change Log', [""], async () => {
GoosemodChangelog.show();
});
goosemodScope.settings.createItem('Uninstall', [""], async () => {
/* goosemodScope.settings.createItem('Uninstall', [""], async () => {
if (await goosemodScope.confirmDialog('Uninstall', 'Uninstall GooseMod', 'Are you sure you want to uninstall GooseMod? This is a quick uninstall, it may leave some code behind but there should be no remaining noticable changes.')) {
goosemodScope.settings.closeSettings();
goosemodScope.remove();
}
}, true);
}, true); */
/*if (window.DiscordNative !== undefined) {
goosemodScope.settings.createItem('Local Reinstall', [''], async () => {

Loading…
Cancel
Save