Browse Source

Report Bug on Issues Page!

Localization
Abhishek Banthia 9 years ago
parent
commit
fe29778565
  1. BIN
      Clocker.xcodeproj/project.xcworkspace/xcuserdata/abhishekbanthia.xcuserdatad/UserInterfaceState.xcuserstate
  2. 7
      Clocker/PreferencesWindowController.m

BIN
Clocker.xcodeproj/project.xcworkspace/xcuserdata/abhishekbanthia.xcuserdatad/UserInterfaceState.xcuserstate generated

Binary file not shown.

7
Clocker/PreferencesWindowController.m

@ -433,11 +433,16 @@ static PreferencesWindowController *sharedPreferences = nil;
- (IBAction)supportAction:(id)sender
{
/*
NSAppleScript *mailScript;
NSString *scriptString= @"tell application \"Mail\"\nset theAddress to \"abhishekbanthia@me.com\"\n set msg to make new outgoing message with properties {visible:true, subject:\"Regarding Clocker - We need to talk!\"}\ntell msg to make new to recipient at end of every to recipient with properties {address:theAddress}\n activate\nend tell";
mailScript = [[NSAppleScript alloc] initWithSource:scriptString];
NSDictionary *dict = nil;
[mailScript executeAndReturnError:&dict];
[mailScript executeAndReturnError:&dict];*/
NSString *issuePage = @"https://github.com/Abhishaker17/Clocker/issues";
NSURL *mainURL = [NSURL URLWithString:issuePage];
[[NSWorkspace sharedWorkspace] openURL:mainURL];
}

Loading…
Cancel
Save