forked from BetterDiscord/BetterDiscord
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructure BD into a small mono-repo
This is a repo-wide refactor that introduces the injector to the main branch. The new architecture is as such: common/ injector/ renderer/
- Loading branch information
Showing
165 changed files
with
13,640 additions
and
9,772 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* eslint-disable no-multi-spaces */ | ||
|
||
export const MINIMIZE = "bd-window-minimize"; | ||
export const MAXIMIZE = "bd-window-maximize"; | ||
export const RELAUNCH = "bd-relaunch-app"; | ||
export const GET_PATH = "bd-get-path"; | ||
export const RUN_SCRIPT = "bd-run-script"; | ||
export const NAVIGATE = "bd-did-navigate-in-page"; | ||
export const OPEN_DEVTOOLS = "bd-open-devtools"; | ||
export const CLOSE_DEVTOOLS = "bd-close-devtools"; | ||
export const OPEN_WINDOW = "bd-open-window"; |
File renamed without changes.
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 @@ | ||
node_modules |
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,3 @@ | ||
# BetterDiscord Injector | ||
|
||
You're probably looking for the main app, [click here](https://github.com/rauenzi/BetterDiscordApp) to go there. |
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,11 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2020", | ||
"allowSyntheticDefaultImports": false, | ||
"baseUrl": "./", | ||
"paths": { | ||
"common": ["../common"] | ||
} | ||
}, | ||
"exclude": ["node_modules"] | ||
} |
Oops, something went wrong.