Skip to content
Snippets Groups Projects
  1. Jun 28, 2021
  2. Jun 23, 2021
  3. Jun 11, 2021
  4. May 30, 2021
    • Pedro Beschorner Marin's avatar
      fix!(recording): moderator only webcams · 0e34d723
      Pedro Beschorner Marin authored
      BREAKING CHANGE: fix typo at moderator only webcams recorded event.
      0e34d723
    • Pedro Beschorner Marin's avatar
      feat(recording): record role change event · ed64e330
      Pedro Beschorner Marin authored
      Reuse `ParticipantStatusChangeEvent` record event, already used by emojis and
      webcam streams, to record `UserRoleChangedEvtMsg`.
      
      Role change is stored at `events.xml` as:
      
      - promotion
      ```
        <event timestamp="2068340" module="PARTICIPANT" eventname="ParticipantStatusChangeEvent">
          <timestampUTC>1622384175759</timestampUTC>
          <date>2021-05-30T14:16:15.759Z</date>
          <status>role</status>
          <userId>w_fowyht7g0tfi</userId>
          <value>MODERATOR</value>
        </event>
      ```
      
      - demotion
      ```
        <event timestamp="2071437" module="PARTICIPANT" eventname="ParticipantStatusChangeEvent">
          <timestampUTC>1622384178855</timestampUTC>
          <date>2021-05-30T14:16:18.855Z</date>
          <status>role</status>
          <userId>w_fowyht7g0tfi</userId>
          <value>VIEWER</value>
        </event>
      ```
      ed64e330
  5. May 27, 2021
  6. May 26, 2021
  7. May 20, 2021
  8. May 17, 2021
  9. May 11, 2021
  10. May 10, 2021
  11. Apr 29, 2021
  12. Apr 28, 2021
  13. Apr 24, 2021
  14. Apr 23, 2021
  15. Apr 15, 2021
    • hiroshisuga's avatar
      Fancy random viewer selection (#11297) · 4db28a28
      hiroshisuga authored
      * Revert "Delete bbb-icons-ori.woff"
      
      This reverts commit 84937a0d.
      
      * Revert "Add files via upload"
      
      This reverts commit 39143444.
      
      * Revert "Delete bbb-icons.woff"
      
      This reverts commit 7c245c66.
      
      * Revert "Add files via upload"
      
      This reverts commit 6f8c764c.
      
      * Revert "Delete tmp.woff"
      
      This reverts commit 5141e653.
      
      * Revert "Add files via upload"
      
      This reverts commit c8f7b17b.
      
      * Revert "Create tmp.woff"
      
      This reverts commit 73c45065.
      
      * Revert "Delete bbb-icons.woff"
      
      This reverts commit 9d01d585.
      
      * Revert "Revert "Delete bbb-icons.woff""
      
      This reverts commit d221d290cd5ad33b3c455b09f9da36d5788ee152.
      
      * Revert "Revert "Revert "Delete bbb-icons.woff"""
      
      This reverts commit c415ff02d1bd710e6f8804667c69d3c7d2e4caf1.
      
      * Revert "Revert "Delete bbb-icons.woff""
      
      This reverts commit d221d290cd5ad33b3c455b09f9da36d5788ee152.
      
      * Revert "Revert "Create tmp.woff""
      
      This reverts commit 267dc412d561c3d2eac49959e4b0ada77b8364bd.
      
      * Revert "Delete bbb-icons-ori.woff"
      
      This reverts commit 84937a0d.
      
      * Revert "Delete bbb-icons.woff"
      
      This reverts commit 7c245c66.
      
      * Revert "Add files via upload"
      
      This reverts commit 6f8c764c.
      
      * Revert "Add files via upload"
      
      This reverts commit c8f7b17b.
      
      * Revert "Create tmp.woff"
      
      This reverts commit 73c45065.
      
      * Revert "Delete bbb-icons.woff"
      
      This reverts commit 9d01d585.
      
      * Revert "Revert "Delete bbb-icons.woff""
      
      This reverts commit 64a48f2bd6d76ca7fe31bc606682700ec1078592.
      
      * Revert "Revert "Revert "Delete bbb-icons.woff"""
      
      This reverts commit 9d1b4a068ae4de2ca3ad2e842884c910e16af0b9.
      
      * Revert "Revert "Revert "Revert "Delete bbb-icons.woff""""
      
      This reverts commit b60491d933c2c984a5a64fa162026430d5f51485.
      
      * Revert "Revert "Revert "Revert "Revert "Delete bbb-icons.woff"""""
      
      This reverts commit 16e357091d558afe07bf17c7fedaa13ac8905f27.
      
      * Revert "Revert "Revert "Revert "Revert "Revert "Delete bbb-icons.woff""""""
      
      This reverts commit e0b70f20554884f7c9e64104a3f942d3d09bfe24.
      
      * Revert "Revert "Revert "Revert "Revert "Revert "Revert "Delete bbb-icons.woff"""""""
      
      This reverts commit 7b1bde97edbed7985beb63646d39c3ddc82138e6.
      
      * Update UsersMgs.scala
      
      * Update selectRandomViewer.js
      
      * Update clearRandomlySelectedUser.js
      
      * Update addMeeting.js
      
      * Update updateRandomViewer.js
      
      * Update component.jsx
      
      * Update container.jsx
      
      * Update component.jsx
      
      * Update container.jsx
      
      * Update styles.scss
      
      * Update en.json
      
      * Update SelectRandomViewerReqMsgHdlr.scala
      
      * code simplification
      
      * in case only one person to be selected
      
      * Update en.json
      
      * Create en.json
      
      * Update en.json
      
      * Update component.jsx
      
      * Update styles.scss
      
      * Update en.json
      
      * Update updateRandomViewer.js
      
      Fix a typo
      
      * Update component.jsx
      
      When the presenter is moved to a viewer, in the modal of ex-presenter "somebody is selected" should be displayed. Before this modification, "somebody is the only viewer" was displayed.
      
      * add a comment
      
      explaining why a condition is needed.
      
      * Update en.json
      
      * Update en.json
      
      * revert (due to the rename UserMgs -> UserMsgs)
      
      * Update UsersMsgs.scala
      4db28a28
  16. Apr 12, 2021
    • prlanzarin's avatar
      Rework of the floor event · 172e31b7
      prlanzarin authored
      Now it`s called AudioFloorChanged* to properly reflect its role
      
      Add fields to carry the floor state (boolean) along with the uID and vID to be able to send events for a floor takeover and a floor surrender
      172e31b7
  17. Apr 08, 2021
  18. Apr 05, 2021
    • Marcel Waldvogel's avatar
      Services run as starting PID · 9140613a
      Marcel Waldvogel authored
      The starting scripts now `exec` the main service instead of starting
      it as a subprocess. Also in line with docker-entrypoint recommendations.
      9140613a
  19. Mar 29, 2021
  20. Mar 24, 2021
  21. Mar 23, 2021
    • Aron Engineer's avatar
    • Pedro Beschorner Marin's avatar
      Handle pad's events and Meteor's instances · 0c4cf013
      Pedro Beschorner Marin authored
      Since Meteor was split in multiple process and events started to be
      filtered by instances, all Etherpad's Redis events were being discarded.
      
      Etherpad has a Redis' publisher plugin that is unaware of BigBlueButton's
      existence. All the communication between them is kept simple with minimal
      of internal data exchange. The concept of distincts subscribers at Meteor's
      side broke part of this simplicity and, now, Etherpad has to know which
      instance must receive it's messages. To provide such information I decided
      to include Meteor's instance as part of the pad's id. Should look like:
      
       - [instanceId]padId for the shared notes
       - [instanceId]padId_cc_(locale) for the closed captions
      
      With those changes the pad id generation made at the recording scripts had to
      be re-done because there is no instance id available. Pad id is now recorded at
      akka-apps and queried while archiving the shared notes.
      0c4cf013
  22. Mar 16, 2021
    • Pedro Beschorner Marin's avatar
      Isolated whiteboard access · 381c5cb1
      Pedro Beschorner Marin authored
      Modified the previous implementation of the whiteboard individual access to remove
      multiple Collections dependency on this feature. Multi-user whiteboard is now an
      array instead of a boolean value and most of the access control can be synchronized
      and handled by akka-apps.
      381c5cb1
  23. Mar 15, 2021
  24. Mar 11, 2021
  25. Mar 10, 2021
  26. Mar 09, 2021
Loading