mirror of https://github.com/sualko/cloud_bbb
Compare commits
No commits in common. "59cddcbd0e70c10e8004a9b22e2dc6400a2134d7" and "5d466291d22efcca26d73e9c13637ad1874c0a14" have entirely different histories.
59cddcbd0e
...
5d466291d2
|
@ -5,12 +5,10 @@ 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]
|
||||
|
||||
## 2.1.0 (2021-12-08)
|
||||
### Added
|
||||
- bump max nc version to 23
|
||||
- [#184](https://github.com/sualko/cloud_bbb/issues/184) add origin meta params
|
||||
- [#176](https://github.com/sualko/cloud_bbb/issues/176) add admin settings for default skip media
|
||||
- [#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
|
||||
|
|
|
@ -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.1.0</version>
|
||||
<version>2.1.0-beta.1</version>
|
||||
<licence>agpl</licence>
|
||||
<author mail="klaus@jsxc.org">Klaus Herberth</author>
|
||||
<namespace>BigBlueButton</namespace>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@sualko/cloud_bbb",
|
||||
"description": "Nextcloud Integration for BigBlueButton",
|
||||
"version": "2.1.0",
|
||||
"version": "2.1.0-beta.1",
|
||||
"author": "Klaus Herberth <klaus@jsxc.org>",
|
||||
"bugs": {
|
||||
"url": "https://github.com/sualko/cloud_bbb/issues"
|
||||
|
|
|
@ -1,20 +1,10 @@
|
|||
<?php
|
||||
|
||||
if (!defined('PHPUNIT_RUN')) {
|
||||
define('PHPUNIT_RUN', 1);
|
||||
}
|
||||
|
||||
if (!($ncRoot = getenv('NEXTCLOUD_ROOT'))) {
|
||||
$ncRoot = __DIR__ . '/../../..';
|
||||
}
|
||||
|
||||
echo "Using ".realpath($ncRoot)." as Nextcloud root.\n\n";
|
||||
|
||||
require_once $ncRoot . '/lib/base.php';
|
||||
require_once __DIR__ . '/../vendor/autoload.php';
|
||||
|
||||
\OC_App::loadApp('bbb');
|
||||
|
||||
if (!class_exists('\PHPUnit\Framework\TestCase')) {
|
||||
require_once('PHPUnit/Autoload.php');
|
||||
}
|
||||
|
||||
echo "Using ".realpath($ncRoot)." as Nextcloud root.\n\n";
|
||||
|
|
Loading…
Reference in New Issue