[Changelog] Remove automatic formatting and use manual instead, start v9-dev

pull/43/head
Oj18 3 years ago
parent a34599fd89
commit a3c73d0811

@ -1,5 +1,18 @@
# GooseMod Changelog
## v9.0.0-dev [2021-06-25]
- ### React Settings
- **It's finally here: React settings.** Long requested by some, it's finally done. We rewrote essentially over 2.5 thousand lines of JS so now our settings are made using React (instead of DOM which it used to use). What this means for you:
- **More fitting UI.** GooseMod's settings are now even more fitting with Discord's, now featuring animations, new colors, and finer looking items, making it now more seamless than ever.
- **Plaid speed.** Settings should be somewhat noticeably faster both when opening it and when clicking GooseMod pages.
- **Rewritten home.** We also rewrote some of our home settings code. Now home items should be more reliable, plus a new codebase which allows easier additions and tweaks for the future.
- ### Tweaks and Fixes
- **Fixed user badges.** A friendly Discord update broke them sometimes a few days ago but now they are back up and running.
- **Removed i18n debug option.** Removed as it was no longer being used and caused confusion with some users.
## v8.12.0 [2021-06-22]
- ### Home [progress]

@ -25,7 +25,7 @@ body = body.map((x, i) => {
x = `${i !== 0 ? '\n' : ''}${x} {${type}${i === 0 ? ' marginTop' : ''}}\n======================\n`;
} else {
const split = x.split(/,/);
/* const split = x.split(/,/);
if (split.length === 1) {
x = `* **${x}.**`;
@ -35,7 +35,9 @@ body = body.map((x, i) => {
sub = sub[0].toUpperCase() + sub.substring(1);
x = `* **${main}.** ${sub}.`;
}
} */
x = `* ${x}`;
}
return x;

Loading…
Cancel
Save