mirror of https://github.com/sualko/cloud_bbb
Compare commits
3 Commits
50c1066abd
...
5cc0340dbb
Author | SHA1 | Date |
---|---|---|
|
5cc0340dbb | |
|
a283e327b1 | |
|
2b83f9ccf8 |
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## 2.4.0 (2022-11-10)
|
||||||
|
### Added
|
||||||
|
- bump Nextcloud version (min 23, max 25)
|
||||||
|
- allow to send files to running presentation (bbb > 2.5)
|
||||||
|
|
||||||
|
### Misc
|
||||||
|
- drop tests for php 7.3
|
||||||
|
- replace deprecated package
|
||||||
|
- update php cs fixer
|
||||||
|
|
||||||
## 2.3.1 (2022-07-28)
|
## 2.3.1 (2022-07-28)
|
||||||
### Fixed
|
### Fixed
|
||||||
- broken build
|
- broken build
|
||||||
|
|
|
@ -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.4.0-alpha</version>
|
<version>2.4.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>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@sualko/cloud_bbb",
|
"name": "@sualko/cloud_bbb",
|
||||||
"description": "Nextcloud Integration for BigBlueButton",
|
"description": "Nextcloud Integration for BigBlueButton",
|
||||||
"version": "2.3.1",
|
"version": "2.4.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"
|
||||||
|
|
|
@ -134,7 +134,7 @@ async function createGithubRelease(changeLog) {
|
||||||
name: `BigBlueButton Integration ${tagName}`,
|
name: `BigBlueButton Integration ${tagName}`,
|
||||||
body: changeLog.replace(/^## [^\n]+\n/, ''),
|
body: changeLog.replace(/^## [^\n]+\n/, ''),
|
||||||
prerelease: !/^\d+\.\d+\.\d+$/.test(packageInfo.version),
|
prerelease: !/^\d+\.\d+\.\d+$/.test(packageInfo.version),
|
||||||
draft: true,
|
draft: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
if (isDryRun) {
|
if (isDryRun) {
|
||||||
|
@ -144,7 +144,7 @@ async function createGithubRelease(changeLog) {
|
||||||
|
|
||||||
const releaseResponse = await octokit.repos.createRelease(releaseOptions);
|
const releaseResponse = await octokit.repos.createRelease(releaseOptions);
|
||||||
|
|
||||||
console.log(`Draft created, see ${releaseResponse.data.html_url}`.verbose);
|
console.log(`Release created, see ${releaseResponse.data.html_url}`.verbose);
|
||||||
|
|
||||||
function getMimeType(filename) {
|
function getMimeType(filename) {
|
||||||
if (filename.endsWith('.asc') || filename.endsWith('sig')) {
|
if (filename.endsWith('.asc') || filename.endsWith('sig')) {
|
||||||
|
|
Loading…
Reference in New Issue