diff --git a/TeXmacs/tests/PDF/73_31.pdf b/TeXmacs/tests/PDF/73_31.pdf new file mode 100644 index 0000000000..925907ffca Binary files /dev/null and b/TeXmacs/tests/PDF/73_31.pdf differ diff --git a/TeXmacs/tests/tm/73_31.tm b/TeXmacs/tests/tm/73_31.tm new file mode 100644 index 0000000000..0833ad2396 --- /dev/null +++ b/TeXmacs/tests/tm/73_31.tm @@ -0,0 +1,13 @@ + + + + +<\body> + + + +<\initial> + <\collection> + + + diff --git a/packages/macos/Info.plist.in b/packages/macos/Info.plist.in index ba0c0929f0..e227392cb7 100644 --- a/packages/macos/Info.plist.in +++ b/packages/macos/Info.plist.in @@ -3,7 +3,7 @@ CFBundleDevelopmentRegion - English + en CFBundleDocumentTypes @@ -24,28 +24,24 @@ + CFBundleDisplayName + MoganResearch CFBundleExecutable MoganResearch + CFBundleName + MoganResearch CFBundleIconFile new-mogan CFBundleIdentifier app.mogan.research CFBundleInfoDictionaryVersion 6.0 - CFBundleName - TeXmacs CFBundlePackageType APPL CFBundleShortVersionString @XMACS_VERSION@ CFBundleVersion @XMACS_VERSION@ - SUFeedURL - @APPCAST@ - SUEnableAutomaticChecks - - CFBundleSignature - TXMC NSMainNibFile MainMenu NSPrincipalClass @@ -59,6 +55,6 @@ NSRequiresAquaSystemAppearance true NSHumanReadableCopyright - Copyright © 1998-2023 Joris van der Hoeven and others + Copyright © 2022-2024 Mogan Developers diff --git a/xmake/research.lua b/xmake/research.lua index 63720dc9ad..d9c1451690 100644 --- a/xmake/research.lua +++ b/xmake/research.lua @@ -246,7 +246,6 @@ function add_target_research_on_others() os.rm(app_dir .. "Contents/Frameworks/QtQmlModels.framework") os.rm(app_dir .. "Contents/Frameworks/QtQml.framework") os.rm(app_dir .. "Contents/Frameworks/QtQuick.framework") - os.execv("codesign", {"--force", "--deep", "--sign", "-", app_dir}) end end) @@ -326,6 +325,7 @@ target("research_packager") do after_install(function (target, opt) local app_dir = target:installdir() .. "/../../" os.cp("$(buildir)/Info.plist", app_dir .. "/Contents") + os.execv("codesign", {"--force", "--deep", "--sign", "-", app_dir}) os.execv("hdiutil create $(buildir)/" .. dmg_name .. " -fs HFS+ -srcfolder " .. app_dir) end) end