Hello, we use Unity in university classes with an educational license and the Hub config file.
The new 3.6.0 version left us unable to start any projects.
Our services-config.json contains:
{
“hubDisableSignin”:true,
}
Problem: With 3.6.0, the signin appears anyway, and the signin button has no effect.
Our workaround is to downgrade to an older Hub version, and use this config file:
{
“hubDisableAnalytics”:true,
“hubDisableAutoUpdate”: true,
“hubDisableCloudProjects”:false,
“hubDisableCommunity”:true,
“hubDisableElevate”:true,
“hubDisableLearn”:true,
“hubDisablePersonalLicense”:false,
“hubDisableSignin”:true,
“hubDisableVisualStudioDownload”:true,
“hubDisableWelcomeScreen”:true
}