Current version strings are really long and hard to parse at a glance. Can we maybe add some delimiters to make them easier to parse?
For example just adding periods would help a lot to easily identify the day of the build
20260925000509 → 2026.09.25.000509
In our package builds we use + to separate out revisions
20260925000509 → 2026.09.25+000509
Can we strip the millennium?
20260925000509 → 26.09.25+000509
How granular do we really need these seconds to be? There's only 86400 seconds in a day right so we're like into miliseconds in granularity or we have a leading 0?
20260925000509 → 26.09.25+00509
If we could parse it down to minutes that would nice since it takes more than a minute to build and upload:
20260925000509 → 26.09.25+0848
Current version strings are really long and hard to parse at a glance. Can we maybe add some delimiters to make them easier to parse?
For example just adding periods would help a lot to easily identify the day of the build
20260925000509→2026.09.25.000509In our package builds we use
+to separate out revisions20260925000509→2026.09.25+000509Can we strip the millennium?
20260925000509→26.09.25+000509How granular do we really need these seconds to be? There's only 86400 seconds in a day right so we're like into miliseconds in granularity or we have a leading 0?
20260925000509→26.09.25+00509If we could parse it down to minutes that would nice since it takes more than a minute to build and upload:
20260925000509→26.09.25+0848