extensions/source/macosx/quicklookpreview/appex/Info.plist.in | 4 ++-- extensions/source/macosx/quicklookthumbnail/appex/Info.plist.in | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
New commits: commit 41df8ca6cb7ec210cf391ff27fce1a6eb36de33b Author: Christian Lohmaier <lohmaier+libreoff...@googlemail.com> AuthorDate: Fri Feb 14 21:05:27 2025 +0100 Commit: Christian Lohmaier <lohmaier+libreoff...@googlemail.com> CommitDate: Sat Feb 15 22:27:48 2025 +0100 QuickLook Preview/Thumbnail version should match the app's version appstore verification complains about CFBundleVersion Mismatch / CFBundleShortVersionString Mismatch and while submissions aren't rejected yet "you may want to correct the following issues in your next delivery"… Change-Id: I19f7db194c1f027f91eb84100955f85cd0bfd545 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/181681 Reviewed-by: Christian Lohmaier <lohmaier+libreoff...@googlemail.com> Tested-by: Jenkins diff --git a/extensions/source/macosx/quicklookpreview/appex/Info.plist.in b/extensions/source/macosx/quicklookpreview/appex/Info.plist.in index 2010e8a1bca2..5892fae09fce 100644 --- a/extensions/source/macosx/quicklookpreview/appex/Info.plist.in +++ b/extensions/source/macosx/quicklookpreview/appex/Info.plist.in @@ -24,13 +24,13 @@ <key>CFBundlePackageType</key> <string>XPC!</string> <key>CFBundleShortVersionString</key> - <string>1.0</string> + <string>@MACOSX_BUNDLE_SHORTVERSION@</string> <key>CFBundleSupportedPlatforms</key> <array> <string>MacOSX</string> </array> <key>CFBundleVersion</key> - <string>1</string> + <string>@MACOSX_BUNDLE_VERSION@</string> <key>LSMinimumSystemVersion</key> <string>@MACOSX_DEPLOYMENT_TARGET@.0</string> <key>DTXcodeBuild</key> diff --git a/extensions/source/macosx/quicklookthumbnail/appex/Info.plist.in b/extensions/source/macosx/quicklookthumbnail/appex/Info.plist.in index 7ae631f1dc59..eb7366cdb294 100644 --- a/extensions/source/macosx/quicklookthumbnail/appex/Info.plist.in +++ b/extensions/source/macosx/quicklookthumbnail/appex/Info.plist.in @@ -24,13 +24,13 @@ <key>CFBundlePackageType</key> <string>XPC!</string> <key>CFBundleShortVersionString</key> - <string>1.0</string> + <string>@MACOSX_BUNDLE_SHORTVERSION@</string> <key>CFBundleSupportedPlatforms</key> <array> <string>MacOSX</string> </array> <key>CFBundleVersion</key> - <string>1</string> + <string>@MACOSX_BUNDLE_VERSION@</string> <key>LSMinimumSystemVersion</key> <string>@MACOSX_DEPLOYMENT_TARGET@.0</string> <key>DTXcodeBuild</key>