Skip to content

Commit

Permalink
Merge pull request #508 from H2-invent/hotfix/star-breakoutrooms
Browse files Browse the repository at this point in the history
hotfix: change into breakoutroom leads to the star page
  • Loading branch information
holzi1005 authored Feb 5, 2024
2 parents efc8094 + b6d89b8 commit 4ad1011
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 2 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@
- **Enhanced Fullscreen Mode**: Made the Fullscreen mode in multiframe mode more robust, ensuring a smoother and more reliable experience.
- **Improved Multiframe Closing**: Users can now close a multiframe even if its internal content has not loaded, improving the overall user experience.

## Bugfix
- **Breakoutroom leads to Star page** Moving to a Breakout room leads to the star page

## Discussion:
We highly value your feedback and suggestions, which play a crucial role in shaping our platform. Your insights, ideas, and any encountered issues in this version are instrumental in guiding our future enhancements.

Expand Down
3 changes: 3 additions & 0 deletions assets/js/createSocialButtons.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ export function initSocialIcons(api) {

function createCameraChangeButton(api) {
api.getAvailableDevices().then(devices => {
if (document.getElementById('social_changeCamera')){
document.getElementById('social_changeCamera').remove();
}
if (devices['videoInput'].length > 1) {
gDevices = devices;
var $body = document.getElementById('wrapperIcons');
Expand Down
2 changes: 1 addition & 1 deletion assets/js/lobbyParticipant.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ function initJitsiMeet(data) {
api.executeCommand('toggleE2EE', true);
}
}
api.addListener('videoConferenceLeft', function (e) {
api.addListener('readyToClose', function (e) {
leaveMeeting();
initStarSend();
api = null;
Expand Down
2 changes: 1 addition & 1 deletion assets/js/onlyConference.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ api.addListener('videoConferenceJoined', function (e) {
e.stopImmediatePropagation();
return closeTabText;
}
api.addListener('videoConferenceLeft', function (e) {
api.addListener('readyToClose', function (e) {
leaveMeeting();
initStarSend();
api = null;
Expand Down
21 changes: 21 additions & 0 deletions templates/changelog/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@
{% block content %}

<div class="row markdown">
{{ include('changelog/__entry.html.twig',
{'version':'0.79.4',
'bugfix':'
- Moving to a Breakout room leads to the star page
'}) }}
{{ include('changelog/__entry.html.twig',
{'version':'0.79.3',
'bugfix':'
- Make fullscreen multiframe more robust
'}) }}
{{ include('changelog/__entry.html.twig',
{'version':'0.79.2',
'bugfix':'
- Fix logo issue was to large
'}) }}
{{ include('changelog/__entry.html.twig',
{'version':'0.79.1',
'bugfix':'
- Fix https Routes after login
'}) }}

{{ include('changelog/__entry.html.twig',
{'version':'0.79.0',
'whatsNew':'
Expand Down

0 comments on commit 4ad1011

Please sign in to comment.