diff --git a/Clocker.xcodeproj/project.xcworkspace/xcuserdata/abhishekbanthia.xcuserdatad/UserInterfaceState.xcuserstate b/Clocker.xcodeproj/project.xcworkspace/xcuserdata/abhishekbanthia.xcuserdatad/UserInterfaceState.xcuserstate index 352912c..781e692 100644 Binary files a/Clocker.xcodeproj/project.xcworkspace/xcuserdata/abhishekbanthia.xcuserdatad/UserInterfaceState.xcuserstate and b/Clocker.xcodeproj/project.xcworkspace/xcuserdata/abhishekbanthia.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/Clocker/PreferencesWindowController.m b/Clocker/PreferencesWindowController.m index 8d8aff1..2dee702 100644 --- a/Clocker/PreferencesWindowController.m +++ b/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]; }