Skip to content

Commit

Permalink
fully remove voice and update todo list
Browse files Browse the repository at this point in the history
  • Loading branch information
kiawildberger committed May 6, 2021
1 parent 4995bb6 commit a89f918
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
5 changes: 4 additions & 1 deletion src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,11 @@ TODO:
- status polishing
- be able to send custom emojis
- display embeds
- server select div scroll on overflow
- server select div scroll on overflow [i believe i fixed this but im not sure]
+ channel list shows server name
- replies
- send files (images, etc)
MAYBE:
- send embeds
Expand Down
8 changes: 4 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -343,10 +343,10 @@ function fillGuildSelect(arg) { // generates and populates guild list
elm.addEventListener("click", () => { // handles selecting a vc
// @discordjs/opus WILL NOT WORK, voice is on hold til that works
// ipcRenderer.send("voiceConnect", vc.id); // connect to voice
id("vcchannel").innerText = "connected to: "+server.name + "/"+vc.name;
isVoiceConnected.id = vc.id;
isVoiceConnected.server = server.id;
id("voicestate").style.display = "block";
// id("vcchannel").innerText = "connected to: "+server.name + "/"+vc.name;
// isVoiceConnected.id = vc.id;
// isVoiceConnected.server = server.id;
// id("voicestate").style.display = "block";
})
}
})
Expand Down
3 changes: 3 additions & 0 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,9 @@ div.serverlist-item > p {
border-radius:50%;
margin:4px;
}

.channel-item[data-type="voice"] { cursor:not-allowed; } /* letting people know that voice doesnt work */

#vc-mute, #vc-dc { display:inline; }
#vc-dc { height:2em; cursor:pointer; margin-left:0.5em;}
#vc-mute { height:2em; cursor:pointer; }
Expand Down

0 comments on commit a89f918

Please sign in to comment.