Dev3.0.35 snapshot of Laser PR - #280
Open
hiroshisuga wants to merge 90 commits into
Open
Conversation
To adopt this PR to popup again, you need: - to change -> "const targetDoc = popupWindow?.document || document;" (at two places whare "const targetDoc = document"; is writted) - to add-> "popupWindow" at the ends of two React.useEffect()s which defines "const targetDoc" (same functions above)
More simple implementation, although the values are slightly different from the values taken from the 'translate' value of the finally rendered HTML.
according to the coderabbitai
according to coderabbitai
chore: BigBlueButton 3.0.33 iteration
…bluebutton#25571) * docs: iteration doc sync for 3.0.33 (bigbluebutton#25568) * docs: iteration doc sync for 3.0.33 Covers documentation-worthy changes on v3.0.x-release since the v3.0.32 tag that were not yet reflected in the docs: - new-features.md: Panopto external video player; the new public.whiteboard.slideSwapDecodeTimeoutMs client setting; corrected the html5PluginSdkVersion line to 0.0.104; tagged maxSharedNotesInitialContentUrlPayloadSize with 3.0.33 and added numPresentationDownloadThreads to the bbb-web properties ledger. - create.tsx: "(added 3.0.33)" on sharedNotesInitialContentMarkdown and sharedNotesInitialContentMarkdownUrl. - api.md: the three shared-notes initial-content create parameters added to the "Updated in 3.0" list, tagged with the point release that shipped them. - plugins.md: useTimer hook (plugin SDK 0.0.104) and the new senderRole field on useLoadedChatMessages. - faq.md: external video line now mentions Panopto.
|
This pull request has conflicts ☹ |
Updated the description of the `useLoadedChatMessages` hook to remove redundant information.
Removed the `useTimer` hook description from the plugins documentation.
Removed details about sharing Panopto videos and slide-change image swap settings. Updated various client settings and added new settings for shared notes and plugin manifest timeouts.
|
This pull request has conflicts ☹ |
🚨 Automated tests failed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
[Laser pointer implementation]
Motivation
but no laser (actually any other cursors) shown as a presenter although laser visible in the viewer's screenTo do and problems
Not working for a presenter on iOS (as a viewer there is no problem)akka-apps does not start properly (killed gracefully).bbb-conf --restart sometimes does not work for that reason. -> this is not the problem of the source code. By apt install --reinstall bbb-apps-akka can recover the problem (or simply, sudo systemctl start bbb-apps-akka) : the point is to execute: ln -s /lib/systemd/system/bbb-apps-akka.service /etc/systemd/system/multi-user.target.wants/bbb-apps-akka.service , and ln -s /lib/systemd/system/bbb-apps-akka.service /etc/systemd/system/bigbluebutton.target.wants/bbb-apps-akka.service , which are not included in the deploy.sh in akka-bbb-apps source code. -> fix(akka-apps): [development] Correctly start bbb-apps-akka by creating symlinks bigbluebutton/bigbluebutton#25372 fixed the problemTo use this PR with the popup PR, you need:
"const targetDoc = popupWindow?.document || document;"(at many places where "const targetDoc = document"; is used) "const targetDoc = getWhiteboardDocument();"to add-> "popupWindow" at the ends of two React.useEffect()s which defines "const targetDoc" (same functions above)(when refactoring on Apr 26, it turned out that they need not to be changed)