Skip to content

Commit 0a4d990

Browse files
committed
Fix #1776 macOS CFBundleShortVersionString
1 parent 74dd526 commit 0a4d990

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

packaging/macos/Info.plist.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<key>CFBundleInfoDictionaryVersion</key>
1010
<string>6.0</string>
1111
<key>NSHumanReadableCopyright</key>
12-
<string>Copyright © 2011-2025 Meltytech, LLC</string>
12+
<string>Copyright © 2011-2026 Meltytech, LLC</string>
1313
<key>CFBundleSignature</key>
1414
<string>scut</string>
1515
<key>CFBundleExecutable</key>
@@ -19,7 +19,7 @@
1919
<key>CFBundleVersion</key>
2020
<string>@SHOTCUT_VERSION@</string>
2121
<key>CFBundleShortVersionString</key>
22-
<string>@SHORT_VERSION@</string>
22+
<string>@SHOTCUT_VERSION@</string>
2323
<key>NSPrincipalClass</key>
2424
<string>NSApplication</string>
2525
<key>NSHighResolutionCapable</key>

src/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,6 @@ endif()
340340
if(APPLE)
341341
target_sources(shotcut PRIVATE macos.mm macos.h
342342
widgets/metalvideowidget.h widgets/metalvideowidget.mm)
343-
string(SUBSTRING ${SHOTCUT_VERSION} 0, 5, SHORT_VERSION)
344343
set_target_properties(shotcut PROPERTIES
345344
OUTPUT_NAME "Shotcut"
346345
MACOSX_BUNDLE_INFO_PLIST ${CMAKE_SOURCE_DIR}/packaging/macos/Info.plist.in)

0 commit comments

Comments
 (0)