mirror of https://github.com/sualko/cloud_bbb
Compare commits
4 Commits
f18c63a109
...
93688851a7
Author | SHA1 | Date |
---|---|---|
sualko | 93688851a7 | |
sualko | 6395b36926 | |
sualko | a4eff086a8 | |
sualko | d8fb52b2b0 |
|
@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## 2.7.2 (2024-10-08)
|
||||
### Misc
|
||||
- rebuild frontend client
|
||||
- update dependencies
|
||||
- update translations
|
||||
|
||||
## 2.7.1 (2024-09-18)
|
||||
### Misc
|
||||
- fix composer install in build script
|
||||
|
|
|
@ -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.7.1</version>
|
||||
<version>2.7.2</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.7.1",
|
||||
"version": "2.7.2",
|
||||
"author": "Klaus Herberth <klaus@jsxc.org>",
|
||||
"bugs": {
|
||||
"url": "https://github.com/sualko/cloud_bbb/issues"
|
||||
|
|
|
@ -74,15 +74,15 @@ async function createRelease(appId) {
|
|||
console.log(composerDev.stdout, composerDev.stderr);
|
||||
console.log('✔ composer dev dependencies installed'.green);
|
||||
|
||||
await execa('yarn', ['lint']);
|
||||
await execa('yarn lint');
|
||||
console.log('✔ linters are happy'.green);
|
||||
|
||||
const composerNoDev = await execa('composer install --no-dev');
|
||||
console.log(composerNoDev.stdout, composerNoDev.stderr);
|
||||
console.log('✔ composer dependencies installed'.green);
|
||||
|
||||
await execa('yarn', ['build']);
|
||||
console.log('✔ scripts built'.green);
|
||||
await execa('yarn build');
|
||||
console.log('✔ webpack done'.green);
|
||||
|
||||
await updateChangelog();
|
||||
|
||||
|
|
|
@ -250,7 +250,7 @@ async function run() {
|
|||
await pull();
|
||||
console.log('✔ pulled latest changes'.green);
|
||||
|
||||
await execa('yarn', ['composer:install:dev']);
|
||||
await execa('yarn composer:install:dev');
|
||||
console.log('✔ composer dev dependencies installed'.green);
|
||||
|
||||
await notAlreadyTagged();
|
||||
|
|
|
@ -2420,9 +2420,9 @@ camelcase@^5.3.1:
|
|||
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==
|
||||
|
||||
caniuse-lite@^1.0.30001317:
|
||||
version "1.0.30001425"
|
||||
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001425.tgz"
|
||||
integrity sha512-/pzFv0OmNG6W0ym80P3NtapU0QEiDS3VuYAZMGoLLqiC7f6FJFe1MjpQDREGApeenD9wloeytmVDj+JLXPC6qw==
|
||||
version "1.0.30001667"
|
||||
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001667.tgz"
|
||||
integrity sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==
|
||||
|
||||
caseless@~0.12.0:
|
||||
version "0.12.0"
|
||||
|
|
Loading…
Reference in New Issue