Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Priority: extra
Maintainer: Anton Georgiev <anton.georgiev@blindsidenetworks.com>
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
Expand Down
6 changes: 3 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -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/"
}
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down