Some minor fixes/improvements

master
WolverinDEV 2020-12-13 14:29:01 +01:00 committed by WolverinDEV
parent fee49bdeae
commit 87d5e4697d
3 changed files with 5 additions and 15 deletions

View File

@ -1,4 +1,7 @@
# Changelog:
* **13.12.20**
- Directly connection when hitting enter on the address line
* **12.12.20**
- Improved screen sharing and camara selection
- Showing the echoed own stream from the server instead of the local one

View File

@ -176,7 +176,7 @@ export class ChannelConversation extends AbstractChat<ChannelConversationEvents>
case "unsupported":
this.crossChannelChatSupported = false;
this.setConversationMode(ChannelConversationMode.Private, true);
this.setConversationMode(ChannelConversationMode.Private, false);
this.setCurrentMode("normal");
break;
}

View File

@ -81,20 +81,7 @@ export class ClientInfoController {
}
}));
this.listenerConnection.push(connection.getSelectedClientInfo().events.on("notify_client_changed", () => {
this.sendClient();
this.sendClientName();
this.sendCountry();
this.sendClientDescription();
this.sendForum();
this.sendChannelGroup();
this.sendServerGroups();
this.sendOnline();
this.sendClientStatus();
this.sendVolume();
this.sendVersion();
}));
this.listenerConnection.push(connection.getSelectedClientInfo().events.on("notify_client_changed", () => this.sendClient()));
this.listenerConnection.push(connection.getSelectedClientInfo().events.on("notify_cache_changed", event => {
switch (event.category) {
case "name":