Buildinfo properties hyperlink

Hi

I have integrated additional properties in ‘buildinfo’ within the build.gradle file to show extra application properties (such as release details) when the user selects the help->about.

One quick question, is there a way to display properties as a hyperlink to an external url? An example is we would like to include a hyperlink to the release notes associated with the version.

buildInfo {
    appName ='Application'
    version = 'Version1.2'
    properties = ['release notes': 'would like to display hyperlink to external document here via a url']
}

Thanks in advance.
David

Hi David,
The standard About window doesn’t support displaying links for BuildInfo properties.
You can easily implement your own screen in the project - see AboutWindow.java for reference.

Regards,
Konstantin

Thanks @knstvk.