Go to file
Zack Rauen e5d099ebce bugfixes
- Floating window going below min on low resolution
- Floating window editor not usable in settings
- Confirmation modal component gone
- Fix addon toast strings
- Fix emote render
- Add folder in AddonAPIs
- Restructure FloatingWindows
2020-07-17 22:24:20 -04:00
.github/ISSUE_TEMPLATE making some progress 2020-03-21 01:33:16 -04:00
css remove jquery use + fixes #255 2020-07-16 17:17:02 -04:00
data Bring up to date + some reorganizing 2020-07-16 01:42:56 -04:00
js bugfixes 2020-07-17 22:24:20 -04:00
src bugfixes 2020-07-17 22:24:20 -04:00
.eslintrc remove jquery use + fixes #255 2020-07-16 17:17:02 -04:00
.gitignore making some progress 2020-03-21 01:33:16 -04:00
LICENSE making some progress 2020-03-21 01:33:16 -04:00
README.md fix readme 2020-04-23 18:02:32 -04:00
TODO.md bugfixes 2020-07-17 22:24:20 -04:00
gulpfile.js initial rewrite of contentmanager 2020-03-21 01:33:28 -04:00
package-lock.json bugfixes 2020-07-17 22:24:20 -04:00
package.json bugfixes 2020-07-17 22:24:20 -04:00
webpack.config.js Bring up to date + some reorganizing 2020-07-16 01:42:56 -04:00

README.md

BandagedBD Patreon Paypal

This branch is for the ongoing rewrite of BandagedBD. You can view what I believe to be left in the TODO.md file.

Testing

The following steps tell you how you can currently test the state of the rewrite as of April 23rd 2020.

  1. locate your BD installation. For Windows it is usually in %localappdata%\Discord\app-0.0.306\resources\app\betterdiscord.
  2. Open config.json in a text editor (n++, notepad, etc).
  3. Change the line "branch": "master", to "branch": "development",.
  4. (optional) Change "minified": true, to "minified": false, to stay on the bleeding edge (sometimes I forget to update the minified version).
  5. Fully restart your Discord client.
  6. You can verify it worked by seeing the revamped plugins and themes pages as well as custom css. You can also see if the version in settings is 1.0.0+

Script Version

The above can be automatically done in script form.

((branch = "development", minified = false) => {
try {
    const fs = require("fs");
    const path = require("path");
    const configPath = path.join(DataStore.injectionPath, "betterdiscord", "config.json");
    const config = require(configPath);
    config.branch = branch;
    config.minified = minified;
    console.log(config);
    fs.writeFileSync(configPath, JSON.stringify(config, null, 4));
    const app = require("electron").remote.app;
    app.relaunch();
    app.exit();
}
catch (err) {console.error(err);}
})("development", false);