Some minor fixes/improvements
parent
fee49bdeae
commit
87d5e4697d
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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":
|
||||
|
|
Loading…
Reference in New Issue