Skip to content

Commit

Permalink
docs: fix Version format
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekyEggo committed May 2, 2024
1 parent 3a48a77 commit d19b4be
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/streamdeck/plugins/manifest/latest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit d19b4be

Please sign in to comment.