Skip to content

Commit

Permalink
Add 'empty' response to unused upgrade script item
Browse files Browse the repository at this point in the history
  • Loading branch information
istnv committed Sep 23, 2023
1 parent 5147ae8 commit b68a905
Show file tree
Hide file tree
Showing 3 changed files with 185 additions and 189 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "videolan-vlc",
"version": "2.3.2",
"version": "2.3.3",
"main": "index.js",
"type": "module",
"scripts": {
Expand All @@ -15,7 +15,7 @@
"@companion-module/tools": "^1.3.2"
},
"dependencies": {
"@companion-module/base": "~1.4.1",
"@companion-module/base": "1.4.3",
"got": "^12.5.3"
}
}
6 changes: 6 additions & 0 deletions upgrades.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ import { CreateConvertToBooleanFeedbackUpgradeScript } from '@companion-module/b
export const UpgradeScripts = [
function () {
// no longer necessary - has to live on though
const result = {
updatedConfig: null,
updatedActions: [],
updatedFeedbacks: [],
}
return result
},
function (context, props) {
const result = {
Expand Down
Loading

0 comments on commit b68a905

Please sign in to comment.