Changeset 92
- Timestamp:
- 09/12/07 13:50:38 (3 years ago)
- Location:
- branches/0_9_0
- Files:
-
- 7 modified
-
changelog.txt (modified) (1 diff)
-
host-cocoa/cocoaQemu.m (modified) (3 diffs)
-
qcontrol/Resources/English.lproj/Localizable.strings (modified) (previous)
-
qcontrol/Resources/French.lproj/Localizable.strings (modified) (previous)
-
qcontrol/Resources/German.lproj/Localizable.strings (modified) (previous)
-
qcontrol/Resources/pl.lproj/Localizable.strings (modified) (1 diff)
-
qcontrol/cocoaControlEditPC.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0_9_0/changelog.txt
r89 r92 1 Q-0.9.0d92 2 [fix] ARM emulation on Q GUI breaks (Chocobo) (#17) 3 [fix] Editing a PC inserts incorrect spaces into argument (andreasf) (#13) 4 [fix] Starting guest can display screenshot of previous session (andreasf) (#28) 5 [fix] Edit PC window title inconsistent (andreasf) (#26) 6 7 Q-0.9.0d91 8 branch Q-0.9.0a89 9 1 10 Q-0.9.0d89 2 11 [new] new icons (Andi) -
branches/0_9_0/host-cocoa/cocoaQemu.m
r84 r92 100 100 pcPath = [[@"~/Documents/QEMU/temp.qvm" stringByExpandingTildeInPath] retain]; 101 101 pcTimer = [NSTimer scheduledTimerWithTimeInterval:10 target:self selector:@selector( liveThumbnail ) userInfo:nil repeats:YES]; 102 [self liveThumbnail]; 102 103 pcDialogs = YES; 103 104 pc = self; … … 838 839 { 839 840 pcStatus = @"shutdown"; 841 if([[NSFileManager defaultManager] fileExistsAtPath: [NSString stringWithFormat: @"%@/thumbnail.png", pcPath]]) [[NSFileManager defaultManager] removeFileAtPath: [NSString stringWithFormat: @"%@/thumbnail.png", pcPath] handler: nil]; 840 842 qemu_system_shutdown_request(); 841 843 vm_start(); … … 857 859 if ( [pcStatus isEqual: @"running"] ) 858 860 pcStatus = @"shutdown"; 861 if([[NSFileManager defaultManager] fileExistsAtPath: [NSString stringWithFormat: @"%@/thumbnail.png", pcPath]]) [[NSFileManager defaultManager] removeFileAtPath: [NSString stringWithFormat: @"%@/thumbnail.png", pcPath] handler: nil]; 859 862 qemu_system_shutdown_request(); 860 863 vm_start(); -
branches/0_9_0/qcontrol/Resources/pl.lproj/Localizable.strings
r83 r92 135 135 "toolbar:toolTip:network" = "Network"; 136 136 137 " viewGeneral:title" = "Główne";137 "editPCviewGeneral:title" = "Główne"; 138 138 139 139 "viewHardware:title" = "Q %@ - Sprzęt"; -
branches/0_9_0/qcontrol/cocoaControlEditPC.m
r78 r92 75 75 } 76 76 77 [editPCPanel setTitle:[NSString stringWithFormat: NSLocalizedStringFromTable(@" viewGeneral:title", @"Localizable", @"cocoaControlEditPC"), [[thisPC objectForKey:@"PC Data"] objectForKey:@"name"]]];77 [editPCPanel setTitle:[NSString stringWithFormat: NSLocalizedStringFromTable(@"editPCviewGeneral:title", @"Localizable", @"cocoaControlEditPC"), [[thisPC objectForKey:@"PC Data"] objectForKey:@"name"]]]; 78 78 [editPCPanel setFrame:NSMakeRect( 79 79 [editPCPanel frame].origin.x, … … 1112 1112 1113 1113 /* qemu arguments */ 1114 [[thisPC objectForKey:@"Arguments"] appendFormat:@" %@",[textFieldArguments stringValue]]; 1114 if ([[textFieldArguments stringValue] length] > 0) 1115 [[thisPC objectForKey:@"Arguments"] appendFormat:@" %@",[textFieldArguments stringValue]]; 1115 1116 1116 1117 /* save PC */
