Changeset 3931
- Timestamp:
- 03/19/06 16:21:11 (2 years ago)
- Files:
-
- Tuna/trunk/English.lproj/InfoPlist.strings (modified) (1 diff)
- Tuna/trunk/English.lproj/MainMenu.nib/classes.nib (modified) (1 diff)
- Tuna/trunk/English.lproj/MainMenu.nib/info.nib (modified) (2 diffs)
- Tuna/trunk/English.lproj/MainMenu.nib/keyedobjects.nib (modified) (previous)
- Tuna/trunk/English.lproj/MainMenu.nib/objects.nib (modified) (previous)
- Tuna/trunk/Info.plist (modified) (1 diff)
- Tuna/trunk/TNDocument.h (modified) (1 diff)
- Tuna/trunk/TNDocument.m (modified) (1 diff)
- Tuna/trunk/TNMainController.h (modified) (2 diffs)
- Tuna/trunk/TNMainController.m (modified) (2 diffs)
- Tuna/trunk/TNNode.h (modified) (1 diff)
- Tuna/trunk/TNNode.m (modified) (1 diff)
- Tuna/trunk/TNParser.h (modified) (1 diff)
- Tuna/trunk/TNParser.m (modified) (1 diff)
- Tuna/trunk/TNProfilerController.h (modified) (1 diff)
- Tuna/trunk/TNProfilerController.m (modified) (1 diff)
- Tuna/trunk/TNSessionController.h (modified) (1 diff)
- Tuna/trunk/TNSessionController.m (modified) (1 diff)
- Tuna/trunk/TNSettings.h (modified) (1 diff)
- Tuna/trunk/TNSettings.m (modified) (1 diff)
- Tuna/trunk/TNSub.h (modified) (1 diff)
- Tuna/trunk/TNSub.m (modified) (1 diff)
- Tuna/trunk/TNTree.h (modified) (1 diff)
- Tuna/trunk/TNTree.m (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Tuna/trunk/English.lproj/InfoPlist.strings
r2913 r3931 2 2 CFBundleName = "Tuna"; 3 3 CFBundleShortVersionString = "1.0.1"; 4 CFBundleGetInfoString = " 1.0.1, Copyright © 2005Zanka Software.";5 NSHumanReadableCopyright = "Copyright © 2005 Zanka Software.";4 CFBundleGetInfoString = "Tuna 1.0.1, Copyright © 2005-2006 Zanka Software."; 5 NSHumanReadableCopyright = "Copyright © 2005-2006 Zanka Software."; Tuna/trunk/English.lproj/MainMenu.nib/classes.nib
r3409 r3931 15 15 }, 16 16 { 17 ACTIONS = {manual = id; newDocument = id; releaseNotes = id; tutorial = id;};17 ACTIONS = {manual = id; newDocument = id; }; 18 18 CLASS = TNMainController; 19 19 LANGUAGE = ObjC; 20 SUPERCLASS = WIObject; 21 }, 22 { 23 ACTIONS = {orderFrontReleaseNotesWindow = id; }; 24 CLASS = WIApplication; 25 LANGUAGE = ObjC; 20 26 OUTLETS = {"_releaseNotesTextView" = NSTextView; "_releaseNotesWindow" = NSWindow; }; 21 SUPERCLASS = WIObject;27 SUPERCLASS = NSApplication; 22 28 }, 23 29 {CLASS = WIObject; LANGUAGE = ObjC; SUPERCLASS = NSObject; } Tuna/trunk/English.lproj/MainMenu.nib/info.nib
r3409 r3931 8 8 <dict> 9 9 <key>29</key> 10 <string> 395 701359 44 0 0 1280 1002 </string>10 <string>721 756 359 44 0 0 1280 1002 </string> 11 11 </dict> 12 12 <key>IBFramework Version</key> … … 14 14 <key>IBOpenObjects</key> 15 15 <array> 16 <integer>252</integer>17 16 <integer>29</integer> 18 17 </array> 19 18 <key>IBSystem Version</key> 20 <string>8 F46</string>19 <string>8H14</string> 21 20 </dict> 22 21 </plist> Tuna/trunk/Info.plist
r2814 r3931 39 39 <string>MainMenu</string> 40 40 <key>NSPrincipalClass</key> 41 <string> NSApplication</string>41 <string>WIApplication</string> 42 42 </dict> 43 43 </plist> Tuna/trunk/TNDocument.h
r2814 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNDocument.m
r2814 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNMainController.h
r3401 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * … … 27 27 */ 28 28 29 @interface TNMainController : WIObject { 30 IBOutlet NSWindow *_releaseNotesWindow; 31 IBOutlet NSTextView *_releaseNotesTextView; 32 } 33 29 @interface TNMainController : WIObject 34 30 35 31 - (IBAction)newDocument:(id)sender; 36 32 37 - (IBAction)releaseNotes:(id)sender;38 33 - (IBAction)manual:(id)sender; 39 34 Tuna/trunk/TNMainController.m
r2839 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * … … 42 42 43 43 44 - (IBAction)releaseNotes:(id)sender {45 NSAttributedString *string;46 NSString *path;47 48 if([[_releaseNotesTextView string] length] == 0) {49 path = [[self bundle] pathForResource:@"ReleaseNotes" ofType:@"rtf"];50 string = [[NSAttributedString alloc] initWithRTF:[NSData dataWithContentsOfFile:path]51 documentAttributes:NULL];52 53 [_releaseNotesTextView setAttributedString:string];54 [string release];55 }56 57 [_releaseNotesWindow makeKeyAndOrderFront:self];58 }59 60 61 62 44 - (IBAction)manual:(id)sender { 63 45 [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.zankasoftware.com/tuna/manual"]]; Tuna/trunk/TNNode.h
r3401 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNNode.m
r3375 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNParser.h
r3401 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNParser.m
r3375 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNProfilerController.h
r3401 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNProfilerController.m
r3375 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNSessionController.h
r3401 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNSessionController.m
r3401 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNSettings.h
r3401 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNSettings.m
r2814 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNSub.h
r3401 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNSub.m
r2814 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNTree.h
r3401 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 * Tuna/trunk/TNTree.m
r2814 r3931 2 2 3 3 /* 4 * Copyright (c) 2005 Axel Andersson4 * Copyright (c) 2005-2006 Axel Andersson 5 5 * All rights reserved. 6 6 *
