This repository was archived by the owner on Jun 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,9 +22,7 @@ @interface ATSAppDelegate()
2222
2323@implementation ATSAppDelegate
2424
25- - (void )applicationDidFinishLaunching : (NSNotification *)aNotification {
26- [[NSUserDefaults standardUserDefaults ] registerDefaults: @{@" NSApplicationCrashOnExceptions" : @YES }];
27-
25+ - (void )applicationDidFinishLaunching : (NSNotification *)aNotification {
2826 [self .window orderOut: self ];
2927
3028 self.welcomeWindowController = [[ATSWelcomeWindowController alloc ] init ];
Original file line number Diff line number Diff line change @@ -111,7 +111,9 @@ - (void)symbolParser:(ATSSymbolParser *)parser didFindValidSymbol:(NSString *)sy
111111 [self .textView.textStorage addAttributes: @{NSForegroundColorAttributeName : [NSColor ats_highlightedTextColor ]}
112112 range: [self .textView.string rangeOfString: symbol]];
113113
114- [self .loadAddressTextField setStringValue: parser.loadAddress];
114+ if (parser.loadAddress ) {
115+ [self .loadAddressTextField setStringValue: parser.loadAddress];
116+ }
115117}
116118
117119@end
Original file line number Diff line number Diff line change 1515 <key >CFBundlePackageType </key >
1616 <string >APPL </string >
1717 <key >CFBundleShortVersionString </key >
18- <string >0.3 </string >
18+ <string >0.3.1 </string >
1919 <key >CFBundleSignature </key >
2020 <string >???? </string >
2121 <key >CFBundleVersion </key >
22- <string >1 </string >
22+ <string >2 </string >
2323 <key >LSApplicationCategoryType </key >
2424 <string >public.app-category.developer-tools </string >
2525 <key >LSMinimumSystemVersion </key >
You can’t perform that action at this time.
0 commit comments