Skip to content

Commit

Permalink
Handle brand-new MacBooks, bump to version 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tomrittervg committed Oct 28, 2015
1 parent 777976b commit 37e3814
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ YoNTMA runs as a status bar icon on FileVault-protected laptops. If the laptop i
Binaries
--------

YoNTMA is available for Mac, and has been tested on 10.10, 10.9 and a little bit on 10.8.
YoNTMA is available for Mac, and has been tested on 10.11, 10.10, 10.9 and a little bit on 10.8.

* [YoNTMA (Mac) 1.0.1](https://github.com/iSECPartners/yontma-mac/releases/tag/1.0.1)
* [dmg installer](https://github.com/iSECPartners/yontma-mac/releases/download/1.0.1/yontma-1.0.1.dmg) ([sig](https://github.com/iSECPartners/yontma-mac/releases/download/1.0.1/yontma-1.0.1.dmg.sig) [key](http://keyserver.ubuntu.com/pks/lookup?op=vindex&fingerprint=on&search=0xE578C0E157AD2E71))
* [YoNTMA (Mac) 1.0.2](https://github.com/iSECPartners/yontma-mac/releases/tag/1.0.2)
* [dmg installer](https://github.com/iSECPartners/yontma-mac/releases/download/1.0.2/yontma-1.0.2.dmg) ([sig](https://github.com/iSECPartners/yontma-mac/releases/download/1.0.2/yontma-1.0.2.dmg.sig) [key](http://keyserver.ubuntu.com/pks/lookup?op=vindex&fingerprint=on&search=0xE578C0E157AD2E71))

[YoNTMA is also available for Windows](https://github.com/iSECPartners/yontma), in another Github project.

Expand Down
4 changes: 2 additions & 2 deletions You'll Never Take Me Alive!.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "Developer ID Application";
CODE_SIGN_IDENTITY = "Mac Developer";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Mac Developer";
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
Expand All @@ -485,7 +485,7 @@
isa = XCBuildConfiguration;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "Developer ID Application";
CODE_SIGN_IDENTITY = "Mac Developer";
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Mac Developer";
COMBINE_HIDPI_IMAGES = YES;
GCC_PRECOMPILE_PREFIX_HEADER = YES;
Expand Down
7 changes: 7 additions & 0 deletions You'll Never Take Me Alive!/LaptopSettingsController.m
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,13 @@ +(Boolean) canStandby
return true;
return false;
}
else if([model rangeOfString:@"MacBook"].location != NSNotFound)
{
//MacBook (2015) and later
if(majorVersion >= 8)
return true;
return false;
}
else
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0.1</string>
<string>1.0.2</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down

0 comments on commit 37e3814

Please sign in to comment.