Skip to content

Commit 6bd7dd4

Browse files
Copilotantobinary
andauthored
chore: rename references from plugin-X to bbb-plugin-X pattern
Agent-Logs-Url: https://github.com/bigbluebutton/bbb-plugin-decrease-volume-on-speak/sessions/9e2bd328-cfe6-4262-b796-b9d3d5dd6fb7 Co-authored-by: antobinary <6312397+antobinary@users.noreply.github.com>
1 parent f99ad6d commit 6bd7dd4

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ This plugin is one of the official bbb plugins. It basically decreases the exter
1010
To build the plugin for production use, follow these steps:
1111

1212
```bash
13-
cd $HOME/src/plugin-decrease-volume-on-speak
13+
cd $HOME/src/bbb-plugin-decrease-volume-on-speak
1414
npm ci
1515
npm run build-bundle
1616
```
1717

18-
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`.
18+
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`.
1919

2020
If you install the plugin separated from the manifest, remember to change the `javascriptEntrypointUrl` in the `manifest.json` to the correct endpoint.
2121

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Priority: extra
44
Maintainer: Anton Georgiev <anton.georgiev@blindsidenetworks.com>
55
Build-Depends: debhelper (>= 13), nodejs (>= 18)
66
Standards-Version: 4.1.4
7-
Homepage: https://github.com/bigbluebutton/plugin-decrease-volume-on-speak
7+
Homepage: https://github.com/bigbluebutton/bbb-plugin-decrease-volume-on-speak
88

99
Package: bbb-plugin-decrease-volume-on-speak
1010
Architecture: all

manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"requiredSdkVersion": "~0.0.59",
3-
"name": "DecreaseVolumeOnSpeak",
4-
"version": "0.1.1",
5-
"javascriptEntrypointUrl": "DecreaseVolumeOnSpeak.js",
3+
"name": "BbbPluginDecreaseVolumeOnSpeak",
4+
"version": "0.0.1",
5+
"javascriptEntrypointUrl": "BbbPluginDecreaseVolumeOnSpeak.js",
66
"localesBaseUrl": "https://cdn.domain.com/pluginabc/"
77
}

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "decrease-volume-on-speak",
3-
"version": "0.1.1",
2+
"name": "bbb-plugin-decrease-volume-on-speak",
3+
"version": "0.0.1",
44
"private": true,
55
"main": "./src/index.tsx",
66
"dependencies": {

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ const path = require('path');
55
module.exports = {
66
entry: './src/index.tsx',
77
output: {
8-
filename: 'DecreaseVolumeOnSpeak.js',
9-
library: 'DecreaseVolumeOnSpeak',
8+
filename: 'BbbPluginDecreaseVolumeOnSpeak.js',
9+
library: 'BbbPluginDecreaseVolumeOnSpeak',
1010
libraryTarget: 'umd',
1111
publicPath: '/',
1212
globalObject: 'this',

0 commit comments

Comments
 (0)