diff --git a/src/docs/scripting/reference.groovy b/src/docs/scripting/reference.groovy index 3648cf5..4572b8b 100644 --- a/src/docs/scripting/reference.groovy +++ b/src/docs/scripting/reference.groovy @@ -220,6 +220,38 @@ node.cloud.enabled = true node.cloud.shape = "STAR" +/* + FreeplaneVersion +*/ + +// Returns the Maj number of the Freeplane version. + +c.freeplaneVersion.maj + +// Returns the Mid number of the Freeplane version. + +c.freeplaneVersion.mid + +// Returns the Min number of the Freeplane version. + +c.freeplaneVersion.min + +// Returns the Freeplane version. + +c.freeplaneVersion.num + +// Returns the Freeplane revision number. + +c.freeplaneVersion.revision + +// Returns "true" if the Freeplane version is final. + +c.freeplaneVersion.final + +// Returns the Freeplane version number as a string. + +c.freeplaneVersion.numberToString() + /* ConnectorRO