Skip to content

ReleaseType()

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.

This function does not accept any arguments.

  • String:
    The returned string is the release type of the grandMA3 software.

This example prints the release type in the Command Line History:

Copy CodeLua
```
return function()
Printf("The ReleaseType is "..ReleaseType())

end