Skip to content

Commit

Permalink
pending v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ashchan committed Jul 31, 2011
1 parent 7ed0f76 commit 5f1e372
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Gmail Notifr.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@
isa = XCBuildConfiguration;
buildSettings = {
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 97;
CURRENT_PROJECT_VERSION = 98;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"\"$(SRCROOT)/build/Debug\"",
Expand All @@ -570,7 +570,7 @@
C01FCF4C08A954540054247B /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CURRENT_PROJECT_VERSION = 97;
CURRENT_PROJECT_VERSION = 98;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down
6 changes: 4 additions & 2 deletions Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleVersion</key>
<string>97</string>
<string>98</string>
<key>CFBundleShortVersionString</key>
<string>0.6.1</string>
<string>0.6.2</string>
<key>LSUIElement</key>
<true/>
<key>NSMainNibFile</key>
Expand All @@ -35,5 +35,7 @@
</array>
</dict>
</array>
<key>NSHumanReadableCopyright</key>
<string>Copyright 2008-2011 ashchan.com.</string>
</dict>
</plist>
2 changes: 0 additions & 2 deletions Resources/English.lproj/InfoPlist.strings
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* Localized versions of Info.plist keys */

CFBundleName = "Gmail Notifr";
CFBundleGetInfoString = "Gmail Notifr version 0.6.1, Copyright 2008-2011 ashchan.com.";
NSHumanReadableCopyright = "Copyright 2008-2011 ashchan.com.";
6 changes: 2 additions & 4 deletions rb_main.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,8 @@
main = File.basename(__FILE__, File.extname(__FILE__))
dir_path = NSBundle.mainBundle.resourcePath.fileSystemRepresentation

# try to load Security bs file on SnowLeopard
if NSAppKitVersionNumber < 1138 # Lion 10.7 is 1138
load_bridge_support_file "#{dir_path}/BridgeSupport/Security.bridgesupport"
end
# try to load Security bs file on SnowLeopard, Lion 10.7 has version number 1138
load_bridge_support_file "#{dir_path}/BridgeSupport/Security.bridgesupport" if NSAppKitVersionNumber < 1138

Dir.glob(File.join(dir_path, '*.{rb,rbo}')).map { |x| File.basename(x, File.extname(x)) }.uniq.each do |path|
if path != main
Expand Down

0 comments on commit 5f1e372

Please sign in to comment.