From 7d6ed9297b99f8ef95cf931a647da67503b72759 Mon Sep 17 00:00:00 2001 From: h2entwicklung Date: Tue, 16 Jan 2024 23:38:03 +0100 Subject: [PATCH 1/2] refactoror all routes in controlers to attrubutes --- RELEASE_NOTE.md | 3 +++ assets/js/createSocialButtons.js | 3 +++ assets/js/onlyConference.js | 2 +- templates/changelog/index.html.twig | 21 +++++++++++++++++++++ 4 files changed, 28 insertions(+), 1 deletion(-) diff --git a/RELEASE_NOTE.md b/RELEASE_NOTE.md index 81f1f0988..6e396bf1f 100644 --- a/RELEASE_NOTE.md +++ b/RELEASE_NOTE.md @@ -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. diff --git a/assets/js/createSocialButtons.js b/assets/js/createSocialButtons.js index ad3870c4d..45fc76c59 100644 --- a/assets/js/createSocialButtons.js +++ b/assets/js/createSocialButtons.js @@ -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'); diff --git a/assets/js/onlyConference.js b/assets/js/onlyConference.js index 4ce9afe4d..d585bf473 100644 --- a/assets/js/onlyConference.js +++ b/assets/js/onlyConference.js @@ -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; diff --git a/templates/changelog/index.html.twig b/templates/changelog/index.html.twig index d2bcd67a6..5eed296b2 100644 --- a/templates/changelog/index.html.twig +++ b/templates/changelog/index.html.twig @@ -5,6 +5,27 @@ {% block content %}
+ {{ 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':' From b6d89b8ebe55ff48b9a8898675aec2568d8f542e Mon Sep 17 00:00:00 2001 From: h2entwicklung Date: Tue, 30 Jan 2024 13:19:29 +0100 Subject: [PATCH 2/2] fix ready to close when laving to breaktouroom --- assets/js/lobbyParticipant.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/lobbyParticipant.js b/assets/js/lobbyParticipant.js index d9cc65c16..d613b5023 100644 --- a/assets/js/lobbyParticipant.js +++ b/assets/js/lobbyParticipant.js @@ -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;