forked from Strencher/BdBrowser
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Reworked startup so both betterdiscord.js and betterdiscord.asar can be loaded from the local ./dist/ extension folder. This makes it easier for users to quickly override the VFS asar file. NOTE: The load order is... 1. Local betterdiscord.js 2. Local betterdiscord.asar 3. VFS betterdiscord.asar - Renamed constant BD_CONFIG_PLUGINS to fit in with the rest of the FilePath constants. - Added try/catch for backend IPC fetch handler. - Added localizations for the extension options page (en/de). - Added missing filesystem definitions to the bdPreload object.
- Loading branch information
Showing
16 changed files
with
280 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"extName": { | ||
"message": "BDBrowser" | ||
}, | ||
"extDesc": { | ||
"message": "Erlaubt das Laden von BetterDiscord im Web Client. Manche Plugins funktionieren ggf. nicht." | ||
}, | ||
"titlePersistentOptions": { | ||
"message": "Dauerhafte Optionen" | ||
}, | ||
"titleResetOnReloadOptions": { | ||
"message": "Einmalige Optionen" | ||
}, | ||
"disableBdRenderer": { | ||
"message": "BetterDiscord Renderer nicht laden" | ||
}, | ||
"disableBdPluginsOnReload": { | ||
"message": "Beim Laden alle Plugins deaktivieren" | ||
}, | ||
"deleteBdRendererOnReload": { | ||
"message": "Beim Laden Asar aus VFS löschen" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"extName": { | ||
"message": "BDBrowser" | ||
}, | ||
"extDesc": { | ||
"message": "Allows you to use BetterDiscord on the web client. Some plugins might not be working correctly." | ||
}, | ||
"titlePersistentOptions": { | ||
"message": "Persistent Options" | ||
}, | ||
"titleResetOnReloadOptions": { | ||
"message": "Reset on Reload Options" | ||
}, | ||
"disableBdRenderer": { | ||
"message": "Do not load BetterDiscord Renderer" | ||
}, | ||
"disableBdPluginsOnReload": { | ||
"message": "Disable all Plugins on Reload" | ||
}, | ||
"deleteBdRendererOnReload": { | ||
"message": "Delete Asar from VFS on Reload" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.