From 1ae4692aceda51683b5bb240980189493130ecdd Mon Sep 17 00:00:00 2001 From: Leonardo Crauss Daronco Date: Mon, 18 Nov 2019 11:02:03 -0300 Subject: [PATCH] Version 3.0.0 --- CHANGELOG.md | 22 ++++++++++++++++++++-- Gemfile.lock | 4 ++-- lib/bigbluebutton_rails/version.rb | 2 +- 3 files changed, 23 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4eb5afde..11f2b828 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Change Log +## [3.0.0] - 2019-11-18 + +* Rename Room's and Server's #param to #slug. +* New route and logic to remove meeting objects. +* Remove `description` from meetings, move contents to `title`. +* Add option for users to edit the title of meetings. +* Send participant count in the ajax response when the meeting is running. +* Use incremental numbers when generating dial numbers, not random ones. +* Remove recordings when a meeting is removed. +* Add state to recordings, following new developments in BigBlueButton's API. +* Run the worker to fetch recordings after a meeting ends a little faster + than before. Now that we track the state of recordings they will appear + faster in a `getRecordings` call. +* Set the default title of new meetings to the name of the room. +* Add option to turn on debug on API calls. + + ## [2.3.0] - 2019-11-14 * [#136] Improve matching between recordings and meetings and migrate old recordings to @@ -319,8 +336,9 @@ https://github.com/mconf/bigbluebutton_rails/wiki/Migrate-to-1.3.0 * Controller to access servers and rooms * rooms_controller interacts with a BBB server using bigbluebutton-api-ruby -[2.2.0]: https://github.com/mconf/bigbluebutton_rails/compare/v2.2.0...v2.3.0 -[2.3.0]: https://github.com/mconf/bigbluebutton_rails/compare/v2.1.0...v2.2.0 +[3.0.0]: https://github.com/mconf/bigbluebutton_rails/compare/v2.3.0...v3.0.0 +[2.3.0]: https://github.com/mconf/bigbluebutton_rails/compare/v2.2.0...v2.3.0 +[2.2.0]: https://github.com/mconf/bigbluebutton_rails/compare/v2.1.0...v2.2.0 [2.1.0]: https://github.com/mconf/bigbluebutton_rails/compare/v2.0.0...v2.1.0 [2.0.0]: https://github.com/mconf/bigbluebutton_rails/compare/v1.4.0...v2.0.0 [1.4.0]: https://github.com/mconf/bigbluebutton_rails/compare/v1.3.0...v1.4.0 diff --git a/Gemfile.lock b/Gemfile.lock index 3d1e5926..5415265c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - bigbluebutton_rails (2.3.0) + bigbluebutton_rails (3.0.0) activerecord-import (~> 1.0) bigbluebutton-api-ruby (~> 1.6) browser (~> 0.8.0) @@ -147,7 +147,7 @@ GEM rabl (0.10.1) activesupport (>= 2.3.14) rack (1.5.2) - rack-protection (1.5.3) + rack-protection (1.5.5) rack rack-test (0.6.2) rack (>= 1.0) diff --git a/lib/bigbluebutton_rails/version.rb b/lib/bigbluebutton_rails/version.rb index a0faad30..e02ab353 100644 --- a/lib/bigbluebutton_rails/version.rb +++ b/lib/bigbluebutton_rails/version.rb @@ -1,3 +1,3 @@ module BigbluebuttonRails - VERSION = "2.3.0".freeze + VERSION = "3.0.0".freeze end