1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-10 03:57:20 +08:00

Add comment about rationale behind always updating version in config

This commit is contained in:
Dean Herbert 2020-03-05 15:35:27 +09:00
parent 1e1e8cbcb5
commit 507af4fa72

View File

@ -39,6 +39,8 @@ namespace osu.Game.Updater
Notifications.Post(new UpdateCompleteNotification(version)); Notifications.Post(new UpdateCompleteNotification(version));
} }
// debug / local compilations will reset to a non-release string.
// can be useful to check when an install has transitioned between release and otherwise (see OsuConfigManager's migrations).
config.Set(OsuSetting.Version, version); config.Set(OsuSetting.Version, version);
} }