Skip to content
This repository has been archived by the owner on Sep 4, 2018. It is now read-only.

Commit

Permalink
Merge pull request #274 from supermarin/jurre/xcode6.3.2-6.4
Browse files Browse the repository at this point in the history
Support Xcode 6.3.2 + 6.4
  • Loading branch information
supermarin committed May 19, 2015
2 parents fdb349e + ac7066b commit b657c72
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Alcatraz/Alcatraz-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
<string>992275C1-432A-4CF7-B659-D84ED6D42D3F</string>
<string>A16FF353-8441-459E-A50C-B071F53F51B7</string>
<string>9F75337B-21B4-4ADC-B558-F9CADF7073A7</string>
<string>992275C1-432A-4CF7-B659-D84ED6D42D3F</string>
<string>E969541F-E6F9-4D25-8158-72DC3545A6C6</string>
</array>
<key>XC4Compatible</key>
<true/>
Expand Down
6 changes: 4 additions & 2 deletions Alcatraz/Alcatraz.m
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ + (NSString *)localizedStringForKey:(NSString *)key {
- (id)initWithBundle:(NSBundle *)plugin {
if (self = [super init]) {
self.bundle = plugin;
[self createMenuItem];
[[NSOperationQueue mainQueue] addOperationWithBlock:^{

[self createMenuItem];
}];
[self updateAlcatraz];
}
return self;
Expand Down Expand Up @@ -104,7 +107,6 @@ - (void)presentAlertWithMessageKey:(NSString *)messageKey {
- (void)updateAlcatraz {
NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[queue addOperationWithBlock:^{

[ATZAlcatrazPackage update];
}];
}
Expand Down

10 comments on commit b657c72

@aemreunal
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The menu item is not being created for me, at Xcode 6.3.2. Tried re-installing Alactraz, but to no avail. Xcode prompts me to load the bundle, which I accepted to.

@andyblackwell
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same for me on Xcode 6.4 (6E14), no menu item. Got excited with the new release a few hours ago and tried again. Also uninstalled and re-installed.

@supermarin
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@andyblackwell nothing happens when you use CMD+Shift+9 either?

@kattrali
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just checked and this UUID for build Xcode 6.4 6E14 (8DC44374-2B35-4C57-A6FE-2AD66A36AAD9) is not in the array.

@aemreunal
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@andyblackwell
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@supermarin no, nothing happened with CMD+Shift+9 either. but @kattrali, I added that UUID to the Info.plist and restarted Xcode and now it works :) Thanks!

@jurre
Copy link
Collaborator

@jurre jurre commented on b657c72 May 19, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, we'll need to add it then!

@kattrali
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Woo, issue resolved!

@supermarin
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Released 1.1.4 with the new UUID!

@aemreunal
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fantastic, it's working now. Thank you for a swift resolution to the problem. (pardon the pun)

Please sign in to comment.