Improve Version Checker In Dashboard
Currently beta and official are using two different endpoints - version.php and version2.php.
Consolidate this into a single endpoint, and return results accordingly.
I think the idea is to create a new status flag: Alpha, Beta, Release
And still have X.Y.Z releases. Data structure should be something like so
{
major: 1,
minor: 2,
patch: 3,
cycle: [Alpha|Beta|Release],
point: 5
codename: 'Gear Isolation U3'
}
Something like the above. And then have the logic return if there is a new release or not.