Update comment in manifest.pl based on experience

As far as I can tell, the KaiStore is quite happy with YY.MM.DD version
numbers.
This commit is contained in:
Ben Harris
2023-01-21 13:07:30 +00:00
parent eac7fc1665
commit eb366cb6c6

View File

@ -27,8 +27,8 @@ if ($version =~ /^20(\d\d)(\d\d)(\d\d)\./) {
# messes in the KaiStore that can only be resolved by Developer # messes in the KaiStore that can only be resolved by Developer
# Support. Specifically, uploading a bad version number as the # Support. Specifically, uploading a bad version number as the
# first upload of an app can make it impossible to upload a new # first upload of an app can make it impossible to upload a new
# version. I hope that three components of two digits each will # version. I hope that three components of two digits each seem
# be acceptable. # to be acceptable.
$decvers = join('.', $1+0, $2+0, $3+0); $decvers = join('.', $1+0, $2+0, $3+0);
} }