<html>
    <head>
      <base href="https://bugs.documentfoundation.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - {macOS} Finder shows incorrect version number in column view"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=120153#c7">Comment # 7</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - {macOS} Finder shows incorrect version number in column view"
   href="https://bugs.documentfoundation.org/show_bug.cgi?id=120153">bug 120153</a>
              from <span class="vcard"><a class="email" href="mailto:glogow@fbihome.de" title="Jan-Marek Glogowski <glogow@fbihome.de>"> <span class="fn">Jan-Marek Glogowski</span></a>
</span></b>
        <pre>From "Technical Note TN2420: Version Numbers and Build Numbers"
<a href="https://developer.apple.com/library/archive/technotes/tn2420/_index.html">https://developer.apple.com/library/archive/technotes/tn2420/_index.html</a>

"The value for a version number or build number must consist only of '.'s and
numbers and must begin and end with a number. Each integer value separated by a
period is a component of the version. Version numbers and build numbers may
have up to three components separated by periods. The total number of
characters in your version number or in your build number cannot exceed
eighteen characters."

The internet doesn't agree with this document for the CFBundleVersion, but it
does for CFBundleShortVersionString, which is displayed everywhere, I guess.

Now quoting the configure.ac build configuration script from the source:

# The CFBundleShortVersionString in Info.plist consists of three integers, so
encode the third
# as the micro version times 1000 plus the patch number. Unfortunately the
LIBO_VERSION_SUFFIX can be anything so
# no way to encode that into an integer in general.
MACOSX_BUNDLE_SHORTVERSION=$LIBO_VERSION_MAJOR.$LIBO_VERSION_MINOR.`expr
$LIBO_VERSION_MICRO '*' 1000 + $LIBO_VERSION_PATCH`

So '6.1.2.1' becomes '6.1.2001' for Apple.

This is a limit on Apples side, so IMHO NOTOURBUG.</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>