Skip to content
Snippets Groups Projects
  1. Mar 16, 2021
  2. Mar 15, 2021
  3. Mar 11, 2021
    • Ramón Souza's avatar
      Applies changes needed to serve locale files as static content (#11234) · 0105373c
      Ramón Souza authored
      * moving locales folder to /public and applying changes needed to serve locales as static files
      
      * better dev/prod check
      
      * transifex pull script changes to match new locales directory + ignore locales with less than 100 lines
      
      * fix local/prod locales path
      
      * merge fallback messages
      
      * applies new locale changes to legacy client
      
      `bbb-html5.nginx` file content should also be changed to the following:
      
      ```
      location /html5client/locales {
        alias /usr/share/meteor/bundle/programs/web.browser/app/locales;
      }
      
      location /html5client/compatibility {
        alias /usr/share/meteor/bundle/programs/web.browser/app/compatibility;
      }
      
      location /html5client/resources {
        alias /usr/share/meteor/bundle/programs/web.browser/app/resources;
      }
      
      location /html5client/svgs {
        alias /usr/share/meteor/bundle/programs/web.browser/app/svgs;
      }
      
      location /html5client/fonts {
        alias /usr/share/meteor/bundle/programs/web.browser/app/fonts;
      }
      
      location /html5client {
        # proxy_pass http://127.0.0.1:4100; # use for development
        proxy_pass http://poolhtml5servers; # use for production
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "Upgrade";
      }
      ```
      0105373c
  4. Mar 10, 2021
  5. Mar 08, 2021
    • Mario Jr's avatar
      Improve the way we observe changes on Users's collection · c7df108f
      Mario Jr authored
      It is safer to look at subscriptions's state to users instead of depending
      on the initial state of the collection at mounting time. Although
      i couldn't force any race conditions on this, there's a chance it could
      happen. The fix avoid this problem.
      This complements #11533
      c7df108f
  6. Mar 05, 2021
  7. Mar 02, 2021
    • hiroshisuga's avatar
      Probably a bug in usersVideo · b228d4cb
      hiroshisuga authored
      b228d4cb
    • Mario Jr's avatar
      Fix audio and push alerts for user join · 8036ce71
      Mario Jr authored
      When validating tokens, the dummyUser created at the beginning is set
      with validated=true. This means there won't be the state change that used
      to occur from validated:false to validated:true (which detects the moment
      joined the meeting) , therefore the alert code that expects for this change
      won't run.
      To fix this for audio alerts, we now detect when user join by observing
      additions in Users's collection. This is actually good because we start
      observing this only once (in componentDidMount), differently we used to do,
      by calling this every time the tracker was activated.
      
      To distinguish between the user addition that initially populates user's
      collection from those that happens after user join (which are the ones we
      want), we store the initial state (at componentDidMount) and compare it
      with new additions. If the user added is present at the initial state,
      then it is an addition to populates the collection, otherwise this is a real
      user addition (happened after user joined the meeting)
      
      Partially fixes #11399
      8036ce71
  8. Mar 01, 2021
  9. Feb 24, 2021
  10. Feb 20, 2021
  11. Feb 19, 2021
  12. Feb 18, 2021
  13. Feb 17, 2021
  14. Feb 16, 2021
  15. Feb 12, 2021
  16. Feb 05, 2021
  17. Feb 02, 2021
  18. Jan 29, 2021
  19. Jan 27, 2021
  20. Jan 26, 2021
  21. Jan 24, 2021
  22. Jan 19, 2021
  23. Dec 17, 2020
  24. Dec 15, 2020
  25. Dec 12, 2020
  26. Dec 11, 2020
  27. Dec 10, 2020
  28. Dec 09, 2020
  29. Dec 08, 2020
Loading