You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 4, 2018. It is now read-only.
When a new version of Xcode is released with a new DVTPlugInCompatibilityUUID there is a window of time where only Alcatraz is loaded, until Alcatraz updates each plugin. Once the plugin has been updated by Alcatraz, it won't be loaded until Xcode is relaunched and the user selects Load Bundles when prompted by Xcode's Unexpected code bundle popup.
When Alcatraz updates a plugin that requires an Xcode relaunch, Alcatraz should notify the user to relaunch Xcode and select Load Bundles when prompted.
This can happen even if the plugin maintainer adds support for the new DVTPlugInCompatibilityUUID before Alcatraz does, because Alcatraz might have not updated the plugin to the latest version before the user upgrades Xcode.
The text was updated successfully, but these errors were encountered:
Just have the Alcatraz interface conform to the NSUserNotificationCenterDelegate protocol, create a shouldPresentNotification method that returns YES, then create a new NSUserNotification and display it by passing it to deliverNotification method on the NSUserNotificationCenter.
When a new version of Xcode is released with a new
DVTPlugInCompatibilityUUID
there is a window of time where only Alcatraz is loaded, until Alcatraz updates each plugin. Once the plugin has been updated by Alcatraz, it won't be loaded until Xcode is relaunched and the user selectsLoad Bundles
when prompted by Xcode'sUnexpected code bundle
popup.When Alcatraz updates a plugin that requires an Xcode relaunch, Alcatraz should notify the user to relaunch Xcode and select
Load Bundles
when prompted.This can happen even if the plugin maintainer adds support for the new
DVTPlugInCompatibilityUUID
before Alcatraz does, because Alcatraz might have not updated the plugin to the latest version before the user upgrades Xcode.The text was updated successfully, but these errors were encountered: