Compare commits

...

4 Commits

Author SHA1 Message Date
sualko c4d27ee7c0
release: 2.1.0-beta.1 🎉 2021-12-02 15:50:55 +01:00
sualko 76c4a91d3e docs: update change log 2021-12-02 15:50:13 +01:00
sualko 818802ad73 fix: replace non-ascii chars
in pre-uploaded filenames

fix #183
2021-12-02 15:40:37 +01:00
sualko c9a92b8695 feat: bump max nc version to 23 2021-12-02 15:40:37 +01:00
4 changed files with 19 additions and 4 deletions

View File

@ -5,6 +5,21 @@ 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.0.0</version> <version>2.1.0-beta.1</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="22"/> <nextcloud min-version="20" max-version="23"/>
</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 = $filename; $this->filename = preg_replace('/[^\x20-\x7E]+/','#', $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.0.0", "version": "2.1.0-beta.1",
"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"