generated from bitfocus/companion-module-template-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v3.5+ add sequence increment and update dependency version
This commit will only work for Bitfocus version 3.5 and above due to the runtime update from node 18 to node 22. Added a sequence increment to the packet header. This will allow quicker responses for successive button pushes and conform more with the Visca protocol. Updated the dependency and yarn versions in package.json. Updated the runtime node version to 22 in manifest.json. Added .yarnrc.yml as it was needed for the newer yarn version.
- Loading branch information
Showing
5 changed files
with
29 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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,4 +1,5 @@ | ||
node_modules/ | ||
.yarn/ | ||
package-lock.json | ||
yarn.lock | ||
/pkg | ||
|
This file contains 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains 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
This file contains 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
This file contains 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": "aver-ptz", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"main": "main.js", | ||
"scripts": { | ||
"format": "prettier -w .", | ||
|
@@ -12,10 +12,13 @@ | |
"url": "git+https://github.com/bitfocus/companion-module-aver-ptz.git" | ||
}, | ||
"dependencies": { | ||
"@companion-module/base": "~1.5.1" | ||
"@companion-module/base": "^1.11.2" | ||
}, | ||
"devDependencies": { | ||
"@companion-module/tools": "^1.4.1" | ||
"@companion-module/tools": "^2.1.1", | ||
"eslint": "^9.17.0", | ||
"prettier": "^3.4.2" | ||
}, | ||
"prettier": "@companion-module/tools/.prettierrc.json" | ||
} | ||
"prettier": "@companion-module/tools/.prettierrc.json", | ||
"packageManager": "[email protected]" | ||
} |