Page 1 of 1

Posted: 28 Mar 2018, 12:39
by sm_jamieson
I am sure the browser used to show the versions of User Modules, i.e. in SDK:

// module constants for browser info and module info
const AnsiCharPtr UserModuleBase::MODULE_NAME ="TestModule";
const AnsiCharPtr UserModuleBase::MODULE_DESC = "Test version of module";
const AnsiCharPtr UserModuleBase::MODULE_VERSION = "1.0";

// browser info
void GetBrowserInfo(ModuleInfo* pModuleInfo)
{
pModuleInfo->Name = UserModuleBase::MODULE_NAME;
pModuleInfo->Description = UserModuleBase::MODULE_DESC;
pModuleInfo->Version = UserModuleBase::MODULE_VERSION;
}

The version information is no longer shown in the browser.
All I see is the name of the module and the path where it is stored.

Simon.

Posted: 29 Mar 2018, 17:50
by senso
Yes you're right, this feature is suspended in HH3 but I recommand to keep it in your code if you can.
It could be reintroduced in futures versions.
senso+++