Compare commits

...

3 Commits

Author SHA1 Message Date
sualko 59cddcbd0e
release: 2.1.0 🎉 2021-12-08 13:32:52 +01:00
sualko 6ff3ab130b chore: enable app for unit tests 2021-12-08 13:32:21 +01:00
sualko 7de8330d60 docs: update change log 2021-12-08 12:48:17 +01:00
4 changed files with 18 additions and 6 deletions

View File

@ -5,10 +5,12 @@ 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]
## 2.1.0 (2021-12-08)
### Added ### Added
- bump max nc version to 23 - bump max nc version to 23
- [#184](https://github.com/sualko/cloud_bbb/issues/184) add source meta params - [#184](https://github.com/sualko/cloud_bbb/issues/184) add origin meta params
- add admin settings for default skip media (#176) - [#176](https://github.com/sualko/cloud_bbb/issues/176) add admin settings for default skip media
- [#152](https://github.com/sualko/cloud_bbb/issues/152) add option for all users to join a meeting muted (#173) - [#152](https://github.com/sualko/cloud_bbb/issues/152) add option for all users to join a meeting muted (#173)
### Fixed ### Fixed

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.1.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>

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.1.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"

View File

@ -1,10 +1,20 @@
<?php <?php
if (!defined('PHPUNIT_RUN')) {
define('PHPUNIT_RUN', 1);
}
if (!($ncRoot = getenv('NEXTCLOUD_ROOT'))) { if (!($ncRoot = getenv('NEXTCLOUD_ROOT'))) {
$ncRoot = __DIR__ . '/../../..'; $ncRoot = __DIR__ . '/../../..';
} }
echo "Using ".realpath($ncRoot)." as Nextcloud root.\n\n";
require_once $ncRoot . '/lib/base.php'; require_once $ncRoot . '/lib/base.php';
require_once __DIR__ . '/../vendor/autoload.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";