Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

10.8 OS X Support #4

Merged
merged 1 commit into from
Aug 16, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<key>BundleIdentifier</key>
<string>com.apple.Terminal</string>
<key>MaxBundleVersion</key>
<string>303</string>
<string>309</string>
<key>MinBundleVersion</key>
<string>237</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion TerminalTabSwitching.m
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ - (void)updateTabListMenu
NSArray* tabViewItems = [[self valueForKey:@"tabView"] tabViewItems];
for(size_t tabIndex = 0; tabIndex < [tabViewItems count]; ++tabIndex)
{
NSString* keyEquivalent = (tabIndex < 10) ? [NSString stringWithFormat:@"%d", (tabIndex+1)%10] : @"";
NSString* keyEquivalent = (tabIndex < 10) ? [NSString stringWithFormat:@"%ld", (tabIndex+1)%10] : @"";
NSTabViewItem* tabViewItem = [tabViewItems objectAtIndex:tabIndex];
NSMenuItem* menuItem = [[NSMenuItem alloc] initWithTitle:[tabViewItem label]
action:@selector(selectRepresentedTabViewItem:)
Expand Down
6 changes: 6 additions & 0 deletions TerminalTabSwitching.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,11 @@
isa = PBXProject;
buildConfigurationList = 1DEB913E08733D840010E9CD /* Build configuration list for PBXProject "TerminalTabSwitching" */;
compatibilityVersion = "Xcode 3.0";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
en,
);
mainGroup = 089C166AFE841209C02AAC07 /* Blurminal */;
projectDirPath = "";
projectRoot = "";
Expand Down Expand Up @@ -195,6 +199,7 @@
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(HOME)/Library/Bundles";
PRODUCT_NAME = TerminalTabSwitching;
SDKROOT = macosx;
WRAPPER_EXTENSION = bundle;
ZERO_LINK = YES;
};
Expand All @@ -210,6 +215,7 @@
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "$(HOME)/Library/Bundles";
PRODUCT_NAME = TerminalTabSwitching;
SDKROOT = macosx;
WRAPPER_EXTENSION = bundle;
};
name = Release;
Expand Down