Version 1.0.0f - Final Version
This commit is contained in:
parent
21679714d9
commit
ce135d1b48
48
README.md
48
README.md
@ -1,50 +1,22 @@
|
|||||||
# Subsonics Web
|
# <center>Subsonics Web</center>
|
||||||
|
|
||||||
<div style="font-size: 20px">
|
<div style="font-size: 20px">
|
||||||
|
|
||||||
|
|
||||||
## Instruction
|
|
||||||
|
|
||||||
* En cas de bug, n'hésitez pas à faire un **report** sur votre profil.
|
* En cas de bug, n'hésitez pas à faire un **report** sur votre profil.
|
||||||
* Vous pouvez utiliser la commande **/restart** sur Discord pour redémarrer l'intégralité du programme !
|
* Vous pouvez utiliser la commande **/restart** sur Discord pour redémarrer l'intégralité du Bot !
|
||||||
* Certaines fonctionnalités sont encore en développement et peuvent générer des bugs, merci de me les reports en faisant un Rapport en cliquant sur votre petite tête
|
* Pour toute suggestion, vous pouvez envoyez un rapport avec la catégorie Suggestion !
|
||||||
* Les playlists et les tokens de connexions sont désormais sauvegardés !
|
|
||||||
* N'hésitez pas lorsque vous êtes seuls à expérimenter le bot en le poussant à bout pour voir ses limites et de me le signaler ^^
|
|
||||||
* Pour toutes suggestions, pas de problème ^^ Vous pouvez envoyez un rapport avec la catégorie Suggestion ! ^^
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr>
|
<hr>
|
||||||
|
|
||||||
<div style="font-size: 14px;">
|
<div style="font-size: 14px; display: flex; flex-direction: column; gap: 2px;">
|
||||||
|
|
||||||
## Changelog
|
<strong>
|
||||||
|
<center>Développé par Raphix</center>
|
||||||
|
<center>Avec l'aide de Gabouille et de IcePlayer</center>
|
||||||
### Subsonics - Web - 1.0.0
|
<center>Pour le CLP 💖</center>
|
||||||
- **Adds :** *Bugs Fixes*
|
</strong>
|
||||||
#### Details
|
|
||||||
|
|
||||||
**Bugs Fixes**
|
|
||||||
> - Fix des playlist avec les noms interdits
|
|
||||||
> - Playlist Private - Handle Exception
|
|
||||||
|
|
||||||
**Final Logo**
|
|
||||||
> - Ajout du logo Final
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Subsonics - Web - 1.1.0
|
|
||||||
- **Adds :** *Soundboard Editor*
|
|
||||||
#### Details
|
|
||||||
-- TO DO
|
|
||||||
|
|
||||||
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
### Subsonics - Web - 1.2.0
|
|
||||||
- **Adds :** *Assets Rework*
|
|
||||||
#### Details
|
|
||||||
-- TO DO
|
|
||||||
|
|
||||||
</div>
|
</div>
|
@ -158,8 +158,9 @@
|
|||||||
"access_token": "jY17lCWaOpTdPQCnz50kfNm7ABpsGz",
|
"access_token": "jY17lCWaOpTdPQCnz50kfNm7ABpsGz",
|
||||||
"expires_in": 604800,
|
"expires_in": 604800,
|
||||||
"refresh_token": "3TronknZ7j5kVSDBjI3OechmCYF8ck",
|
"refresh_token": "3TronknZ7j5kVSDBjI3OechmCYF8ck",
|
||||||
"scope": "identify guilds guilds.members.read"
|
"scope": "guilds identify guilds.members.read"
|
||||||
},
|
},
|
||||||
|
"admin": true,
|
||||||
"avatar": null,
|
"avatar": null,
|
||||||
"communication_disabled_until": null,
|
"communication_disabled_until": null,
|
||||||
"flags": 0,
|
"flags": 0,
|
||||||
@ -187,6 +188,6 @@
|
|||||||
"deaf": false,
|
"deaf": false,
|
||||||
"bio": "",
|
"bio": "",
|
||||||
"banner": null,
|
"banner": null,
|
||||||
"token": "3ed275cc-de69-45cb-9b90-ac58b714609d"
|
"token": "df6bf93f-b890-4982-8b85-36df54af77f3"
|
||||||
}
|
}
|
||||||
]
|
]
|
@ -88,6 +88,11 @@ module.exports.getDiscordUser = function (code, session) {
|
|||||||
|
|
||||||
if(packageJson.beta_on == false) {
|
if(packageJson.beta_on == false) {
|
||||||
user.auth = authorizationKey
|
user.auth = authorizationKey
|
||||||
|
if(userInfo.user.id == "486943594893017119") {
|
||||||
|
|
||||||
|
user.admin = true
|
||||||
|
}
|
||||||
|
|
||||||
Object.assign(user, userInfo)
|
Object.assign(user, userInfo)
|
||||||
|
|
||||||
|
|
||||||
@ -96,7 +101,11 @@ module.exports.getDiscordUser = function (code, session) {
|
|||||||
} else {
|
} else {
|
||||||
|
|
||||||
if(betausers.includes(userInfo.user.id)) {
|
if(betausers.includes(userInfo.user.id)) {
|
||||||
|
user.auth = authorizationKey
|
||||||
|
if(userInfo.user.id == "486943594893017119") {
|
||||||
|
|
||||||
|
user.admin = true
|
||||||
|
}
|
||||||
user.beta = true
|
user.beta = true
|
||||||
Object.assign(user, userInfo)
|
Object.assign(user, userInfo)
|
||||||
|
|
||||||
|
BIN
src/web/public/images/logo-svg.png
Normal file
BIN
src/web/public/images/logo-svg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 64 KiB |
Binary file not shown.
Before Width: | Height: | Size: 195 KiB After Width: | Height: | Size: 4.1 KiB |
Loading…
Reference in New Issue
Block a user