ODVersion class
We are still working the API Reference! This page might be incomplete or doesn't contain all details!
Overview
This is an Open Ticket version.
It has many features like comparing versions & checking if they are compatible.
You can use it in your own plugin, but most of the time you will use it to check the Open Ticket version!
Properties
inherited id
class ➜ api.ODId
The id of this data.
primary
number ➜ number
The first number of the version (example: v1.2.3
=> 1
)
secondary
number ➜ number
The second number of the version (example: v1.2.3
=> 2
)
tertiary
number ➜ number
The third number of the version (example: v1.2.3
=> 3
)
Methods
constructor()
function ➜ api.ODVersion
(no description)
View Parameters (4)
id
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.primary
: number ➜number
- Parameter Description Lorem Ipsum.secondary
: number ➜number
- Parameter Description Lorem Ipsum.tertiary
: number ➜number
- Parameter Description Lorem Ipsum.
inherited protected _change()
function ➜ void
Trigger an onChange()
event in the parent ODManager
of this class.
inherited changed()
function ➜ void
(❌ SYSTEM ONLY!!) Set the callback executed when a value inside this class changes.
compare()
function ➜ "higher"|"lower"|"equal"
Compare this version with another version and returns the result: higher
, lower
or equal
View Parameters (1)
comparator
: class ➜api.ODVersion
- Parameter Description Lorem Ipsum.
compatible()
function ➜ boolean
Check if this version is included in the list
View Parameters (1)
list
: array ➜api.ODVersion[]
- Parameter Description Lorem Ipsum.
toString()
function ➜ string
Get the version as a string (noprefix:true
=> with v
prefix)
View Parameters (1)
noprefix
: boolean ➜boolean
- Parameter Description Lorem Ipsum.
static fromString()
function ➜ api.ODVersion
Get the version from a string (also possible with v
prefix)
View Parameters (2)
id
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.version
: string ➜string
- Parameter Description Lorem Ipsum.
Defaults
We're still working on this part of the documentation!
Examples
We're still working on this part of the documentation!