Notifications after export in G3?

Of course, and all settings are just like G2 where it works as it should.

So yuh don’t get any notifications or only the ones for longer running operations?
If it is the former, then there is something wrong with your notification settings. I’m not sure how to properly reset them.

I’m not sure what qualifies as a longer operation. Is there some big open-source project I could test it with? I tried Noto but couldn’t export because of some issues that would take longer to troubleshoot.

Can you run this in the Macro window?

notification = NSUserNotification.new()
notification.setTitle_("Export Finished")
notification.setInformativeText_("some more info")
NSUserNotificationCenter.defaultUserNotificationCenter().deliverNotification_(notification)

It should show a user notification.

No notification, just this traceback:

Traceback (most recent call last):
  File "<macro panel>", line 3
NameError: name 'NSUserNotification' is not defined

Sorry. This should work.

from AppKit import *
notification = NSUserNotification.new()
notification.setTitle_("Export Finished")
notification.setInformativeText_("some more info")
NSUserNotificationCenter.defaultUserNotificationCenter().deliverNotification_(notification)

Instant crash, I sent you the report.

It worked after a few tries, I got the Export Finished notification. Same file, didn’t even change anything.

Do you mean that you get the export notification from that script now? Do you also get it when you export a font?

No, just from that script.