Skip to content

Commit 0437bce

Browse files
committed
Change version
1 parent 5fe9305 commit 0437bce

File tree

4 files changed

+30
-30
lines changed

4 files changed

+30
-30
lines changed

lib/app.js

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

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
2-
"name": "nginx-obs-automatic-low-bitrate-switching",
3-
"version": "1.0.0",
4-
"description": "Simple app to automatically switch scenes based on the current bitrate on the nginx stats page.",
5-
"main": "app.js",
6-
"scripts": {
7-
"test": "echo \"Error: no test specified\" && exit 1",
8-
"start": "node ./lib/app",
9-
"build": "babel src -d lib",
10-
"dev": "nodemon --exec babel-node ./src/app.js"
11-
},
12-
"author": "Brian Spit",
13-
"license": "MIT",
14-
"dependencies": {
15-
"node-fetch": "^2.3.0",
16-
"obs-websocket-js": "^1.2.0",
17-
"signale": "^1.3.0",
18-
"ws": "^6.1.2",
19-
"xml2js": "^0.4.19"
20-
},
21-
"devDependencies": {
22-
"@babel/cli": "^7.2.3",
23-
"@babel/core": "^7.2.2",
24-
"@babel/node": "^7.2.2",
25-
"@babel/preset-env": "^7.2.3",
26-
"nodemon": "^1.18.9"
27-
}
2+
"name": "nginx-obs-automatic-low-bitrate-switching",
3+
"version": "1.0.2",
4+
"description": "Simple app to automatically switch scenes based on the current bitrate on the nginx stats page.",
5+
"main": "lib/app",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1",
8+
"start": "node ./lib/app",
9+
"build": "babel src -d lib",
10+
"dev": "nodemon --exec babel-node ./src/app.js"
11+
},
12+
"author": "Brian Spit",
13+
"license": "MIT",
14+
"dependencies": {
15+
"node-fetch": "^2.3.0",
16+
"obs-websocket-js": "^1.2.0",
17+
"signale": "^1.3.0",
18+
"ws": "^6.1.2",
19+
"xml2js": "^0.4.19"
20+
},
21+
"devDependencies": {
22+
"@babel/cli": "^7.2.3",
23+
"@babel/core": "^7.2.2",
24+
"@babel/node": "^7.2.2",
25+
"@babel/preset-env": "^7.2.3",
26+
"nodemon": "^1.18.9"
27+
}
2828
}

src/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ console.log(`
88
██╔██╗ ██║██║ ██║███████║██║ ██████╔╝███████╗
99
██║╚██╗██║██║ ██║██╔══██║██║ ██╔══██╗╚════██║
1010
██║ ╚████║╚██████╔╝██║ ██║███████╗██████╔╝███████║
11-
╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═════╝ ╚══════╝ v1.0.1
11+
╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═════╝ ╚══════╝ v${process.env.npm_package_version}
1212
`);
1313

1414
const obs = new ObsSwitcher(

0 commit comments

Comments
 (0)