From 4bb46922fc59565926f4fb2976c761f9588807d6 Mon Sep 17 00:00:00 2001 From: Alex Christoffer Rasmussen Date: Fri, 10 May 2024 21:51:18 +0200 Subject: [PATCH] fix: duplicate labels (#55) --- companion/manifest.json | 2 +- package.json | 2 +- src/v3/actions/playback.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/companion/manifest.json b/companion/manifest.json index e17c230..95d489c 100644 --- a/companion/manifest.json +++ b/companion/manifest.json @@ -3,7 +3,7 @@ "name": "getontime-ontime", "shortname": "ontime", "description": "Companion module for ontime", - "version": "4.0.0", + "version": "4.0.1", "license": "MIT", "repository": "git+https://github.com/bitfocus/companion-module-getontime-ontime.git", "bugs": "https://github.com/bitfocus/companion-module-getontime-ontime/issues", diff --git a/package.json b/package.json index fd5e923..f31943b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "getontime-ontime", - "version": "4.0.0", + "version": "4.0.1", "main": "/dist/index.js", "license": "MIT", "prettier": "@companion-module/tools/.prettierrc.json", diff --git a/src/v3/actions/playback.ts b/src/v3/actions/playback.ts index 4dc9b71..f27e9e1 100644 --- a/src/v3/actions/playback.ts +++ b/src/v3/actions/playback.ts @@ -102,7 +102,7 @@ export function createPlaybackActions(ontime: OntimeV3): { [id: string]: Compani }, [ActionId.Pause]: { - name: 'Load an event', + name: 'Pause running timer', options: [], callback: () => socketSendJson(ActionCommand.Pause), },