Skip to content

Commit

Permalink
1.5.10
Browse files Browse the repository at this point in the history
Lots of bug fixes
  • Loading branch information
fabulouspanda committed Jan 23, 2014
1 parent d5bfd2c commit fa2208f
Show file tree
Hide file tree
Showing 134 changed files with 31,451 additions and 117 deletions.
10 changes: 8 additions & 2 deletions MacMiner/AppDelegate.m
Expand Up @@ -35,7 +35,7 @@ - (void)applicationDidFinishLaunching:(NSNotification *)aNotification

NSString *hideVersion = [prefs objectForKey:@"hideVersion"];

if ([hideVersion isEqualToString:@"158"]) {
if ([hideVersion isEqualToString:@"1510"]) {
[self.releaseNotes orderOut:nil];
}

Expand Down Expand Up @@ -264,6 +264,8 @@ -(void)mobileCommandsThread {
NSString *appID = [prefs objectForKey:@"appID"];

NSString *machineName = [[NSHost currentHost] localizedName];
machineName = [machineName stringByReplacingOccurrencesOfString:@" " withString:@"_"];
machineName = [machineName stringByReplacingOccurrencesOfString:@"-" withString:@"_"];
if (machineName.length <= 1) {
machineName = @"Mac";
}
Expand Down Expand Up @@ -353,6 +355,8 @@ - (void)mobilePost
NSString *appID = [prefs objectForKey:@"appID"];

NSString *machineName = [[NSHost currentHost] localizedName];
machineName = [machineName stringByReplacingOccurrencesOfString:@" " withString:@"_"];
machineName = [machineName stringByReplacingOccurrencesOfString:@"-" withString:@"_"];
if (machineName.length <= 1) {
machineName = @"Mac";
}
Expand Down Expand Up @@ -439,6 +443,8 @@ - (void)mobilePostThread {
NSString *appID = [prefs objectForKey:@"appID"];

NSString *machineName = [[NSHost currentHost] localizedName];
machineName = [machineName stringByReplacingOccurrencesOfString:@" " withString:@"_"];
machineName = [machineName stringByReplacingOccurrencesOfString:@"-" withString:@"_"];
if (machineName.length <= 1) {
machineName = @"Mac";
}
Expand Down Expand Up @@ -538,7 +544,7 @@ - (IBAction)hideVersionStuff:(id)sender
{
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];

[prefs setObject:@"158" forKey:@"hideVersion"];
[prefs setObject:@"1510" forKey:@"hideVersion"];

[prefs synchronize];

Expand Down
4 changes: 2 additions & 2 deletions MacMiner/MacMiner-Info.plist
Expand Up @@ -19,11 +19,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.5.8</string>
<string>1.5.10</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1508</string>
<string>1510</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key>
Expand Down
2 changes: 2 additions & 0 deletions MacMiner/asicMiner.h
Expand Up @@ -25,6 +25,8 @@
NSTimer *toggleTimer;

NSTimer *loopTimer;

NSTimer *timerTimer;



Expand Down

0 comments on commit fa2208f

Please sign in to comment.