minor
Syntax

PluginVersion.minor;
Access
readonly
Parameters
Return value number
The minor version number of the installed Studio plug-ins.
Description
The minor property returns the minor version number component of the installed WoodWing Studio plug-ins version. In a version string such as “v21.0.1 DAILY build 34”, the minor version number is 0.
Examples
Retrieve the semantic version string of the installed plug-in
// Combine major, minor and patch to form the semantic version string.
var version = app.studioPlugins.version;
var semver = version.major + "." + version.minor + "." + version.patch;
// For plug-in version "v21.0.1 DAILY build 34", semver is "21.0.1".
alert("Installed Studio plug-in: " + semver);
Supported versions
| Adobe Version | Supported |
|---|---|
| 2023 | |
| 2024 | |
| 2025 (v20.0.4) | ✔ |
| 2026 (v21.0.1) | ✔ |