[krita] [Bug 493474] Thumbnail and QuickLook previews not displaying on macOS 15 Sequoia
https://bugs.kde.org/show_bug.cgi?id=493474
--- Comment #6 from Mel ---
Forwarding information from user kritabetterthancsp on the support forums:
"It appears that both Finder and Quick Look thumbnails agent are having
difficulty launching krita-preview ext and krita-thumbnailer ext respectively.
Finder fails with:
Failed to begin using with error: Error Domain=PlugInKit Code=4
"RBSLaunchRequest error trying to launch plugin
org.krita.krita-preview(F3086C11-): Error Domain=RBSRequestErrorDomain
Code=5 "Launch failed." UserInfo={NSLocalizedFailureReason=Launch failed.,
NSUnderlyingError=0x6c62d58f0 {Error Domain=NSPOSIXErrorDomain Code=111
"Unknown error: 111" UserInfo={NSLocalizedDescription=Launchd job spawn
failed}}}" UserInfo={NSLocalizedDescription=RBSLaunchRequest error trying to
launch plugin org.krita.krita-preview(F3086C11-): Error
Domain=RBSRequestErrorDomain Code=5 "Launch failed."
UserInfo={NSLocalizedFailureReason=Launch failed.,
NSUnderlyingError=0x6c62d58f0 {Error Domain=NSPOSIXErrorDomain Code=111
"Unknown error: 111" UserInfo={NSLocalizedDescription=Launchd job spawn
failed
ThumbnailsAgent fails with:
Launch failed with error: Error Domain=com.apple.extensionKit.errorDomain
Code=2 "(null)" UserInfo={NSUnderlyingError=0xc9ecffde0 {Error
Domain=RBSRequestErrorDomain Code=5 "Launch failed."
UserInfo={NSLocalizedFailureReason=Launch failed.,
NSUnderlyingError=0xc9ecff000 {Error Domain=NSPOSIXErrorDomain Code=111
"Unknown error: 111" UserInfo={NSLocalizedDescription=Launchd job spawn
failed}
Error code seemingly comes from OSLaunchdJob, because somewhere in chain of
launching krita-preview, runningboardd logged:
Creating and launching job for:
xpcservice:27747])(501)>{vt
hash: 0}
Submitting extension overlay (host PID 27747, path
/Applications/krita.app/Contents/PlugIns/krita-preview.appex/Contents/MacOS/krita-preview):
: submitExtension
created a job
: start succeeded,
info=spawn failed, error=111: Invalid or missing Program/ProgramArguments
I’m on Sequoia 15.7, with krita 4.3.1. I don’t have account in the bug tracker,
so I just dump this here. If someone do and stumble upon this wall of text,
kindly please forward this to that place!"
--
You are receiving this mail because:
You are watching all bug changes.
[krita] [Bug 493474] Thumbnail and QuickLook previews not displaying on macOS 15 Sequoia
https://bugs.kde.org/show_bug.cgi?id=493474 [email protected] changed: What|Removed |Added Resolution|FIXED |--- Status|RESOLVED|REOPENED CC||[email protected] --- Comment #5 from [email protected] --- Previews for .kra thumbnails and quicklook are not working after updating to Krita 5.3. I'm specifically using Sequoia 15.6, if that makes a difference. -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 493474] Thumbnail and QuickLook previews not displaying on macOS 15 Sequoia
https://bugs.kde.org/show_bug.cgi?id=493474 vanyossi changed: What|Removed |Added Latest Commit|https://invent.kde.org/grap |https://invent.kde.org/grap |hics/krita/-/commit/bd5b2e8 |hics/krita/-/commit/0f307e5 |19731c2ac700fa055310a80a812 |d165099e6c2f67c0fbf8cb8ec21 |d67f07 |f7c1c8 --- Comment #4 from vanyossi --- Git commit 0f307e5d165099e6c2f67c0fbf8cb8ec21f7c1c8 by Ivan Yossi. Committed on 04/12/2025 at 17:42. Pushed by ivany into branch 'krita/5.2'. macos: implement preview provider for macos 12 and up (cherry picked from commit bd5b2e819731c2ac700fa055310a80a812d67f07) M +3-0krita/integration/CMakeLists.txt M +354 -2krita/integration/integration.xcodeproj/project.pbxproj A +95 -0 krita/integration/integration.xcodeproj/xcshareddata/xcschemes/krita-preview.xcscheme A +71 -0 krita/integration/integration.xcodeproj/xcshareddata/xcschemes/krita-preview_helper.xcscheme A +78 -0 krita/integration/integration.xcodeproj/xcshareddata/xcschemes/previewHelper.xcscheme A +21 -0 krita/integration/krita-preview/Base.lproj/PreviewViewController.xib A +24 -0krita/integration/krita-preview/Info.plist A +126 -0krita/integration/krita-preview/PreviewProvider.swift A +40 -0krita/integration/krita-preview/PreviewViewController.swift A +24 -0krita/integration/krita-preview_helper/krita-preview-Info.plist M +5-1packaging/macos/osxdeploy.sh https://invent.kde.org/graphics/krita/-/commit/0f307e5d165099e6c2f67c0fbf8cb8ec21f7c1c8 -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 493474] Thumbnail and QuickLook previews not displaying on macOS 15 Sequoia
https://bugs.kde.org/show_bug.cgi?id=493474 --- Comment #3 from vanyossi --- Git commit 955bbc3d6cb3210910cc99413905ab31123285b9 by Ivan Yossi. Committed on 04/12/2025 at 17:42. Pushed by ivany into branch 'krita/5.2'. macos: working version of thumbnailer This adds a PreviewHelper app to embed the thumbnailer to it. We need this as application extensions does not register to lsregister if they are not embedded inside a bundle application. Small fixes to all project configurations The thumbnailer works as expected, special care needs to be taken with request.scale as it has the current screen scaling, cgImage need to take this into account. (cherry picked from commit 921f9b73682df40f5194f6e60831c9d4e5460d75) M +184 -10 krita/integration/integration.xcodeproj/project.pbxproj A +79 -0 krita/integration/integration.xcodeproj/xcshareddata/xcschemes/kritaquicklookng.xcscheme A +11 -0 krita/integration/previewHelper/Assets.xcassets/AccentColor.colorset/Contents.json A +58 -0 krita/integration/previewHelper/Assets.xcassets/AppIcon.appiconset/Contents.json A +6-0krita/integration/previewHelper/Assets.xcassets/Contents.json A +24 -0krita/integration/previewHelper/ContentView.swift A +125 -0krita/integration/previewHelper/Info.plist A +18 -0krita/integration/previewHelper/previewHelperApp.swift M +1-1krita/integration/quicklookng/Info.plist M +58 -30 krita/integration/quicklookng/ThumbnailProvider.swift https://invent.kde.org/graphics/krita/-/commit/955bbc3d6cb3210910cc99413905ab31123285b9 -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 493474] Thumbnail and QuickLook previews not displaying on macOS 15 Sequoia
https://bugs.kde.org/show_bug.cgi?id=493474 Halla Rempt changed: What|Removed |Added Status|ASSIGNED|RESOLVED Latest Commit||https://invent.kde.org/grap ||hics/krita/-/commit/bd5b2e8 ||19731c2ac700fa055310a80a812 ||d67f07 Resolution|--- |FIXED --- Comment #2 from Halla Rempt --- Git commit bd5b2e819731c2ac700fa055310a80a812d67f07 by Halla Rempt, on behalf of Ivan Yossi. Committed on 03/12/2025 at 12:46. Pushed by rempt into branch 'master'. macos: implement preview provider for macos 12 and up M +3-0krita/integration/CMakeLists.txt M +354 -2krita/integration/integration.xcodeproj/project.pbxproj A +95 -0 krita/integration/integration.xcodeproj/xcshareddata/xcschemes/krita-preview.xcscheme A +71 -0 krita/integration/integration.xcodeproj/xcshareddata/xcschemes/krita-preview_helper.xcscheme A +78 -0 krita/integration/integration.xcodeproj/xcshareddata/xcschemes/previewHelper.xcscheme A +21 -0 krita/integration/krita-preview/Base.lproj/PreviewViewController.xib A +24 -0krita/integration/krita-preview/Info.plist A +126 -0krita/integration/krita-preview/PreviewProvider.swift A +40 -0krita/integration/krita-preview/PreviewViewController.swift A +24 -0krita/integration/krita-preview_helper/krita-preview-Info.plist M +5-1packaging/macos/osxdeploy.sh https://invent.kde.org/graphics/krita/-/commit/bd5b2e819731c2ac700fa055310a80a812d67f07 -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 493474] Thumbnail and QuickLook previews not displaying on macOS 15 Sequoia
https://bugs.kde.org/show_bug.cgi?id=493474 --- Comment #1 from Halla Rempt --- Git commit 921f9b73682df40f5194f6e60831c9d4e5460d75 by Halla Rempt, on behalf of Ivan Yossi. Committed on 03/12/2025 at 12:46. Pushed by rempt into branch 'master'. macos: working version of thumbnailer This adds a PreviewHelper app to embed the thumbnailer to it. We need this as application extensions does not register to lsregister if they are not embedded inside a bundle application. Small fixes to all project configurations The thumbnailer works as expected, special care needs to be taken with request.scale as it has the current screen scaling, cgImage need to take this into account. M +184 -10 krita/integration/integration.xcodeproj/project.pbxproj A +79 -0 krita/integration/integration.xcodeproj/xcshareddata/xcschemes/kritaquicklookng.xcscheme A +11 -0 krita/integration/previewHelper/Assets.xcassets/AccentColor.colorset/Contents.json A +58 -0 krita/integration/previewHelper/Assets.xcassets/AppIcon.appiconset/Contents.json A +6-0krita/integration/previewHelper/Assets.xcassets/Contents.json A +24 -0krita/integration/previewHelper/ContentView.swift A +125 -0krita/integration/previewHelper/Info.plist A +18 -0krita/integration/previewHelper/previewHelperApp.swift M +1-1krita/integration/quicklookng/Info.plist M +58 -30 krita/integration/quicklookng/ThumbnailProvider.swift https://invent.kde.org/graphics/krita/-/commit/921f9b73682df40f5194f6e60831c9d4e5460d75 -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 493474] Thumbnail and QuickLook previews not displaying on macOS 15 Sequoia
https://bugs.kde.org/show_bug.cgi?id=493474 [email protected] changed: What|Removed |Added CC||[email protected] -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 493474] Thumbnail and QuickLook previews not displaying on macOS 15 Sequoia
https://bugs.kde.org/show_bug.cgi?id=493474 Marco Rebhan changed: What|Removed |Added CC||[email protected] -- You are receiving this mail because: You are watching all bug changes.
[krita] [Bug 493474] Thumbnail and QuickLook previews not displaying on macOS 15 Sequoia
https://bugs.kde.org/show_bug.cgi?id=493474 Halla Rempt changed: What|Removed |Added CC||[email protected] Status|REPORTED|ASSIGNED Ever confirmed|0 |1 Assignee|[email protected] |[email protected] -- You are receiving this mail because: You are watching all bug changes.
