ReleaseType()
Description
Section titled âDescriptionâThe ReleaseType Lua function returns a string with the type of release for the MA software. All the software versions available from MA Lighting will return âReleaseâ. Internally and during development, there can be other release types.
Arguments
Section titled âArgumentsâThis function does not accept any arguments.
- String:
The returned string is the release type of the grandMA3 software.
Example
Section titled âExampleâThis example prints the release type in the Command Line History:
| Copy CodeLua |
| ``` |
| return function() |
Printf("The ReleaseType is "..ReleaseType())end