mirror of https://github.com/sualko/cloud_bbb
Compare commits
4 Commits
73e6e48255
...
c4d27ee7c0
Author | SHA1 | Date |
---|---|---|
|
c4d27ee7c0 | |
|
76c4a91d3e | |
|
818802ad73 | |
|
c9a92b8695 |
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -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).
|
||||
|
||||
## [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)
|
||||
### Added
|
||||
|
|
|
@ -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.*
|
||||
]]></description>
|
||||
<version>2.0.0</version>
|
||||
<version>2.1.0-beta.1</version>
|
||||
<licence>agpl</licence>
|
||||
<author mail="klaus@jsxc.org">Klaus Herberth</author>
|
||||
<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>mbstring</lib>
|
||||
<lib>SimpleXML</lib>
|
||||
<nextcloud min-version="20" max-version="22"/>
|
||||
<nextcloud min-version="20" max-version="23"/>
|
||||
</dependencies>
|
||||
<settings>
|
||||
<admin>OCA\BigBlueButton\Settings\Admin</admin>
|
||||
|
|
|
@ -9,7 +9,7 @@ class Presentation {
|
|||
|
||||
public function __construct(string $url, string $filename) {
|
||||
$this->url = $url;
|
||||
$this->filename = $filename;
|
||||
$this->filename = preg_replace('/[^\x20-\x7E]+/','#', $filename);
|
||||
}
|
||||
|
||||
public function getUrl(): string {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@sualko/cloud_bbb",
|
||||
"description": "Nextcloud Integration for BigBlueButton",
|
||||
"version": "2.0.0",
|
||||
"version": "2.1.0-beta.1",
|
||||
"author": "Klaus Herberth <klaus@jsxc.org>",
|
||||
"bugs": {
|
||||
"url": "https://github.com/sualko/cloud_bbb/issues"
|
||||
|
|
Loading…
Reference in New Issue