FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

chore: update internal references after repository rename to bbb-plugin-decrease-volume-on-speak by Copilot · Pull Request #9 · bigbluebutton/bbb-plugin-decrease-volume-on-speak · GitHub

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

Filter by extension

Filter by extension .js  (1) .json  (3) .md  (1) No extension  (1) All 4 file types selected
Only manifest files
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
4 changes: 2 additions & 2 deletions README.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
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

Back | FazBrowse Home | New Git URL