Skip to content

Commit

Permalink
Version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
daronco committed Nov 18, 2019
1 parent 262e4e6 commit 1ae4692
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion lib/bigbluebutton_rails/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module BigbluebuttonRails
VERSION = "2.3.0".freeze
VERSION = "3.0.0".freeze
end

0 comments on commit 1ae4692

Please sign in to comment.