mirror of https://github.com/sualko/cloud_bbb
Compare commits
No commits in common. "5cc0340dbb885c8d3bc833e22fa738be716e2d2f" and "50c1066abd8493ff5453bef85208a7e32f578156" have entirely different histories.
5cc0340dbb
...
50c1066abd
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -6,16 +6,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
|
||||
## [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)
|
||||
### Fixed
|
||||
- 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.*
|
||||
]]></description>
|
||||
<version>2.4.0</version>
|
||||
<version>2.4.0-alpha</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.4.0",
|
||||
"version": "2.3.1",
|
||||
"author": "Klaus Herberth <klaus@jsxc.org>",
|
||||
"bugs": {
|
||||
"url": "https://github.com/sualko/cloud_bbb/issues"
|
||||
|
|
|
@ -134,7 +134,7 @@ async function createGithubRelease(changeLog) {
|
|||
name: `BigBlueButton Integration ${tagName}`,
|
||||
body: changeLog.replace(/^## [^\n]+\n/, ''),
|
||||
prerelease: !/^\d+\.\d+\.\d+$/.test(packageInfo.version),
|
||||
draft: false,
|
||||
draft: true,
|
||||
};
|
||||
|
||||
if (isDryRun) {
|
||||
|
@ -144,7 +144,7 @@ async function createGithubRelease(changeLog) {
|
|||
|
||||
const releaseResponse = await octokit.repos.createRelease(releaseOptions);
|
||||
|
||||
console.log(`Release created, see ${releaseResponse.data.html_url}`.verbose);
|
||||
console.log(`Draft created, see ${releaseResponse.data.html_url}`.verbose);
|
||||
|
||||
function getMimeType(filename) {
|
||||
if (filename.endsWith('.asc') || filename.endsWith('sig')) {
|
||||
|
|
Loading…
Reference in New Issue