Compare commits

..

No commits in common. "c4d27ee7c0bf74594ba540b186407e1ede8c4420" and "73e6e482554475b2ab14d165ac3e7696fe4a8865" have entirely different histories.

4 changed files with 4 additions and 19 deletions

View File

@ -5,21 +5,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
### Added
- bump max nc version to 23
- [#184](https://github.com/sualko/cloud_bbb/issues/184) add source meta params
- add admin settings for default skip media (#176)
- [#152](https://github.com/sualko/cloud_bbb/issues/152) add option for all users to join a meeting muted (#173)
### Fixed
- [#183](https://github.com/sualko/cloud_bbb/issues/183) replace non-ascii chars for filenames
- [#174](https://github.com/sualko/cloud_bbb/issues/174) sort recordings by date
- fix collapsible arrow
- use settings icon for room settings
- log response message for create request
### Misc
- update dependencies
## 2.0.0 (2021-07-28) ## 2.0.0 (2021-07-28)
### Added ### Added

View File

@ -22,7 +22,7 @@ Developer wanted! If you have time it would be awesome if you could help to enha
*This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.* *This app integrates BigBlueButton and is not endorsed or certified by BigBlueButton Inc. BigBlueButton and the BigBlueButton Logo are trademarks of BigBlueButton Inc.*
]]></description> ]]></description>
<version>2.1.0-beta.1</version> <version>2.0.0</version>
<licence>agpl</licence> <licence>agpl</licence>
<author mail="klaus@jsxc.org">Klaus Herberth</author> <author mail="klaus@jsxc.org">Klaus Herberth</author>
<namespace>BigBlueButton</namespace> <namespace>BigBlueButton</namespace>
@ -43,7 +43,7 @@ Developer wanted! If you have time it would be awesome if you could help to enha
<lib>curl</lib> <lib>curl</lib>
<lib>mbstring</lib> <lib>mbstring</lib>
<lib>SimpleXML</lib> <lib>SimpleXML</lib>
<nextcloud min-version="20" max-version="23"/> <nextcloud min-version="20" max-version="22"/>
</dependencies> </dependencies>
<settings> <settings>
<admin>OCA\BigBlueButton\Settings\Admin</admin> <admin>OCA\BigBlueButton\Settings\Admin</admin>

View File

@ -9,7 +9,7 @@ class Presentation {
public function __construct(string $url, string $filename) { public function __construct(string $url, string $filename) {
$this->url = $url; $this->url = $url;
$this->filename = preg_replace('/[^\x20-\x7E]+/','#', $filename); $this->filename = $filename;
} }
public function getUrl(): string { public function getUrl(): string {

View File

@ -1,7 +1,7 @@
{ {
"name": "@sualko/cloud_bbb", "name": "@sualko/cloud_bbb",
"description": "Nextcloud Integration for BigBlueButton", "description": "Nextcloud Integration for BigBlueButton",
"version": "2.1.0-beta.1", "version": "2.0.0",
"author": "Klaus Herberth <klaus@jsxc.org>", "author": "Klaus Herberth <klaus@jsxc.org>",
"bugs": { "bugs": {
"url": "https://github.com/sualko/cloud_bbb/issues" "url": "https://github.com/sualko/cloud_bbb/issues"