diff --git a/README.md b/README.md index df34407..54dd913 100644 --- a/README.md +++ b/README.md @@ -10,12 +10,12 @@ This plugin is one of the official bbb plugins. It basically decreases the exter To build the plugin for production use, follow these steps: ```bash -cd $HOME/src/plugin-decrease-volume-on-speak +cd $HOME/src/bbb-plugin-decrease-volume-on-speak npm ci npm run build-bundle ``` -The above commands will generate the `dist` folder, containing the bundled JavaScript file named `DecreaseVolumeOnSpeak.js`. This file can be hosted on any HTTPS server along with its `manifest.json`. +The above commands will generate the `dist` folder, containing the bundled JavaScript file named `BbbPluginDecreaseVolumeOnSpeak.js`. This file can be hosted on any HTTPS server along with its `manifest.json`. If you install the plugin separated from the manifest, remember to change the `javascriptEntrypointUrl` in the `manifest.json` to the correct endpoint. diff --git a/debian/control b/debian/control index ce647a8..c0d1c2e 100644 --- a/debian/control +++ b/debian/control @@ -4,7 +4,7 @@ Priority: extra Maintainer: Anton Georgiev Build-Depends: debhelper (>= 13), nodejs (>= 18) Standards-Version: 4.1.4 -Homepage: https://github.com/bigbluebutton/plugin-decrease-volume-on-speak +Homepage: https://github.com/bigbluebutton/bbb-plugin-decrease-volume-on-speak Package: bbb-plugin-decrease-volume-on-speak Architecture: all diff --git a/manifest.json b/manifest.json index bf1ad47..bfb2bb1 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "requiredSdkVersion": "~0.0.59", - "name": "DecreaseVolumeOnSpeak", - "version": "0.1.1", - "javascriptEntrypointUrl": "DecreaseVolumeOnSpeak.js", + "name": "BbbPluginDecreaseVolumeOnSpeak", + "version": "0.0.1", + "javascriptEntrypointUrl": "BbbPluginDecreaseVolumeOnSpeak.js", "localesBaseUrl": "https://cdn.domain.com/pluginabc/" } diff --git a/package-lock.json b/package-lock.json index 6e8da97..4c8dba6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { - "name": "decrease-volume-on-speak", - "version": "0.1.1", + "name": "bbb-plugin-decrease-volume-on-speak", + "version": "0.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "decrease-volume-on-speak", - "version": "0.1.1", + "name": "bbb-plugin-decrease-volume-on-speak", + "version": "0.0.1", "dependencies": { "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^13.5.0", diff --git a/package.json b/package.json index e8015be..91a2e1b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "decrease-volume-on-speak", - "version": "0.1.1", + "name": "bbb-plugin-decrease-volume-on-speak", + "version": "0.0.1", "private": true, "main": "./src/index.tsx", "dependencies": { diff --git a/webpack.config.js b/webpack.config.js index 9767a97..3cc335e 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -5,8 +5,8 @@ const path = require('path'); module.exports = { entry: './src/index.tsx', output: { - filename: 'DecreaseVolumeOnSpeak.js', - library: 'DecreaseVolumeOnSpeak', + filename: 'BbbPluginDecreaseVolumeOnSpeak.js', + library: 'BbbPluginDecreaseVolumeOnSpeak', libraryTarget: 'umd', publicPath: '/', globalObject: 'this',