This repository has been archived by the owner on Apr 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(OAuth): Add support for OAuth (#82)
* feat(OAuth): Rework the main flow around OAuth * feat(OAuth): BREAKING CHANGE: You don't need to provide your API key nor your username now, just login with Bungie.
- Loading branch information
1 parent
fd249f4
commit b878265
Showing
29 changed files
with
9,403 additions
and
11,979 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 |
---|---|---|
|
@@ -66,5 +66,8 @@ dist/ | |
# Packaging directory | ||
bin/ | ||
|
||
out/ | ||
.webpack/ | ||
|
||
# Icon directory | ||
generated_icons/ | ||
generated_icons/ |
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,5 @@ | ||
{ | ||
"apiKey": "4c71c1518a7541edabc7b1d4ba7cd5e8", | ||
"clientId": "27342", | ||
"clientSecret": "wtkPxF2Oh5TXfZC7nPutGN4PkHMugjsZE.88EpECx5U" | ||
} |
Binary file not shown.
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,53 @@ | ||
module.exports = { | ||
packagerConfig: { | ||
asar: true | ||
}, | ||
publisher: [ | ||
{ | ||
name: "@electron-forge/publisher-github", | ||
config: { | ||
repository: { | ||
owner: "brakacai", | ||
name: "discord-ghost" | ||
} | ||
} | ||
} | ||
], | ||
makers: [ | ||
{ | ||
name: "@electron-forge/maker-squirrel", | ||
config: { | ||
name: "discord_ghost" | ||
} | ||
}, | ||
{ | ||
name: "@electron-forge/maker-deb", | ||
config: { | ||
maintainer: "Louis Bompart", | ||
homepage: "https://github.com/brakacai/discord-ghost" | ||
} | ||
}, | ||
{ | ||
name: "@electron-forge/maker-dmg", | ||
config: {} | ||
} | ||
], | ||
plugins: [ | ||
[ | ||
"@electron-forge/plugin-webpack", | ||
{ | ||
mainConfig: "./webpack.main.config.js", | ||
renderer: { | ||
config: "./webpack.renderer.config.js", | ||
entryPoints: [ | ||
{ | ||
html: "./src/index.html", | ||
js: "./src/renderer.js", | ||
name: "main_window" | ||
} | ||
] | ||
} | ||
} | ||
] | ||
] | ||
}; |
Oops, something went wrong.