From d19b4bea33ea59cd289d517363291f4160f6f806 Mon Sep 17 00:00:00 2001 From: Richard Herman Date: Thu, 2 May 2024 14:48:29 +0100 Subject: [PATCH] docs: fix Version format --- src/streamdeck/plugins/manifest/latest.ts | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/streamdeck/plugins/manifest/latest.ts b/src/streamdeck/plugins/manifest/latest.ts index 4e0a4f0..7f8f46f 100644 --- a/src/streamdeck/plugins/manifest/latest.ts +++ b/src/streamdeck/plugins/manifest/latest.ts @@ -205,18 +205,13 @@ export type Manifest = { UUID: string; /** - * Version of the plugin represented as a semantic version (https://semver.org) with a build number; pre-release identifiers are not permitted. - * - * **Examples:** - * - 1.2.3.0 ✅ - * - 0.0.99.123 ✅ - * - 2.1.9-beta1 ❌ + * Version of the plugin, in the format `{major}.{minor}.{patch}.{build}`. * @example * "1.0.0.0" * @pattern * ^(0|[1-9]\d*)(\.(0|[1-9]\d*)){3}$ * @errorMessage - * String must be semantic version with a build number (pre-release identifiers are not permitted) + * String must use format {major}.{minor}.{patch}.{build} */ Version: string; };