| |
Changeset 90
- Timestamp:
- 09/02/07 00:09:58
(1 year ago)
- Author:
- cordney
- Message:
[fix] ARM emulation on Q GUI breaks (Chocobo) (#17) [fix] Editing a PC inserts incorrect spaces into argument (andreasf) (#13) [fix] Starting guest can display screenshot of previous session (andreasf) (#28) [fix] Edit PC window title inconsistent (andreasf) (#26)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r89 |
r90 |
|
| | 1 | Q-0.9.0d90 |
|---|
| | 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 | |
|---|
| 1 | 7 | Q-0.9.0d89 |
|---|
| 2 | 8 | [new] new icons (Andi) |
|---|
| r84 |
r90 |
|
| 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(); |
|---|
| r83 |
r90 |
|
| 135 | 135 | "toolbar:toolTip:network" = "Network"; |
|---|
| 136 | 136 | |
|---|
| 137 | | "viewGeneral:title" = "Q %@ - General"; |
|---|
| | 137 | "editPCviewGeneral:title" = "Q %@ - General"; |
|---|
| 138 | 138 | |
|---|
| 139 | 139 | "viewHardware:title" = "Q %@ - Hardware"; |
|---|
| r83 |
r90 |
|
| 134 | 134 | "toolbar:toolTip:network" = "Réseau"; |
|---|
| 135 | 135 | |
|---|
| 136 | | "viewGeneral:title" = "Q %@ - Général"; |
|---|
| | 136 | "editPCviewGeneral:title" = "Q %@ - Général"; |
|---|
| 137 | 137 | |
|---|
| 138 | 138 | "viewHardware:title" = "Q %@ - Matériel"; |
|---|
| r84 |
r90 |
|
| 134 | 134 | "toolbar:toolTip:network" = "Netzwerk"; |
|---|
| 135 | 135 | |
|---|
| 136 | | "viewGeneral:title" = "Q %@ - Allgemein"; |
|---|
| | 136 | "editPCviewGeneral:title" = "Q %@ - Allgemein"; |
|---|
| 137 | 137 | |
|---|
| 138 | 138 | "viewHardware:title" = "Q %@ - Hardware"; |
|---|
| r83 |
r90 |
|
| 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"; |
|---|
| r78 |
r90 |
|
| 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 */ |
|---|
Download in other formats:
| |