Post

Replies

Boosts

Views

Activity

Problem notarizing .dmg file with macOS app bundle: "The staple and validate action failed! Error 65"
We were signing and notarizing our dmg files (containing an universal app bundle) just fine until it failed this same month, from our xcrun notarytool history: -------------------------------------------------- createdDate: 2023-02-03T14:01:28.116Z id: .... name: FILE.dmg status: Invalid -------------------------------------------------- createdDate: 2022-12-12T22:20:17.885Z id: ... name: FILE.dmg status: Accepted -------------------------------------------------- ... Today we're trying to notarize a dmg and we continue with this error: When calling xcrun notarytool submit --wait: Submission ID received id: 3c6xxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx Upload progress: 100,00 % (18,2 MB of 18,2 MB) Successfully uploaded file id: 3c6xxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx path: /Users/.../FILE.dmg Waiting for processing to complete. Current status: Invalid.......... Processing complete id: 3c6xxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx status: Invalid When using xcrun stapler staple: CloudKit query for FILE.dmg (2/883xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx) failed due to "Record not found". Could not find base64 encoded ticket in response for 2/883xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx The staple and validate action failed! Error 65. We tried to update our "Developer ID Application" certificate but the problem is still there. Do you know if this is a temporal problem? Or why could be this happening? Why this was working until last year 2022?
1
0
969
Feb ’23
drawsAsynchronously doesn't update correctly + related crash?
Hi there, on our macOS app we're using NSView.layer.drawsAsynchronously=YES to draw the content of a NSView: self.wantsLayer = true; self.layer.drawsAsynchronously = true;Where self is a NSView.Before macOS Catalina the app worked great, but after Catalina I started noticing that sometimes some parts are not completelly redraw/updated in the view. Not sure if something has changed in the middle about this drawsAsynchronously flag (without the flag there are no issues, but the performance drops as we are doing some heavy color space conversions).Anyway today we got a crash report, but this case is from Mac OS X 10.14.6 (18G103), not sure if it's related or already fixed in Catalina (maybe some recommendation to give to this specific user would be to update to macOS 10.15):Thread 13 Crashed:: Dispatch queue: CA::CG::Queue 0 com.apple.CoreFoundation 0x00007fff53a60019 CFEqual + 49 1 com.apple.CoreFoundation 0x00007fff53a5d93e CFBasicHashFindBucket + 1218 2 com.apple.CoreFoundation 0x00007fff53a5d456 CFDictionaryGetValue + 90 3 com.apple.driver.AppleIntelBDWGraphicsMTLDriver 0x00007fff4b510648 -[MTLIGAccelDevice newTextureWithDescriptor:iosurface:plane:] + 217 4 com.apple.QuartzCore 0x00007fff5e67efc0 CA::OGL::MetalContext::update_surface(CA::OGL::MetalImage*, CA::Render::Surface*, unsigned int, char const*) + 2986 5 com.apple.QuartzCore 0x00007fff5e541a8b CA::OGL::MetalContext::bind_image_impl(unsigned int, CA::Render::Texture*, unsigned int, CA::OGL::TextureFilter, CA::OGL::TextureFilter, float, CA::OGL::TextureEdgeMode, float*, char const*) + 559 6 com.apple.QuartzCore 0x00007fff5e541018 CA::OGL::Context::bind_image(unsigned int, CA::Render::Texture*, unsigned int, CA::OGL::TextureFilter, CA::OGL::TextureFilter, float, CA::OGL::TextureEdgeMode, CA::OGL::ContentsGeometry const*, float*, char const*) + 1046 7 com.apple.QuartzCore 0x00007fff5e5470ce CA::CG::fill_image(CA::CG::Renderer&, CGImage*, CA::Rect const&, CA::Mat2 const&, bool, bool, CGInterpolationQuality, CA::Bounds const*) + 4823 8 com.apple.QuartzCore 0x00007fff5e545dd8 CA::CG::DrawImage::draw_image(CA::CG::Renderer&, bool) const + 194 9 com.apple.QuartzCore 0x00007fff5e532919 CA::CG::DrawOp::render(CA::CG::Renderer&) const + 1919 10 com.apple.QuartzCore 0x00007fff5e52dfc1 CA::CG::Queue::render_callback(void*) + 1351 11 libdispatch.dylib 0x00007fff7f99963d _dispatch_client_callout + 8 12 libdispatch.dylib 0x00007fff7f99fa17 _dispatch_lane_serial_drain + 913 13 libdispatch.dylib 0x00007fff7f9a0396 _dispatch_lane_invoke + 385 14 libdispatch.dylib 0x00007fff7f9a86ed _dispatch_workloop_worker_thread + 598 15 libsystem_pthread.dylib 0x00007fff7fbd9611 _pthread_wqthread + 421 16 libsystem_pthread.dylib 0x00007fff7fbd93fd start_wqthread + 13For reference:Code where the NSView is created: https://github.com/aseprite/laf/blob/287e30976e201f99e20884afea1f4a3a1d78cbdb/os/osx/view.mm#L132Code where the paint is done: https://github.com/aseprite/laf/blob/287e30976e201f99e20884afea1f4a3a1d78cbdb/os/skia/skia_window_osx.mm#L373In case that you want the full .crash file please send me an email address where I can send it privately.
1
0
773
Mar ’20