Changeset 92

Show
Ignore:
Timestamp:
09/12/07 13:50:38 (1 year ago)
Author:
mike
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
  • branches/0_9_0/changelog.txt

    r89 r92  
     1Q-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 
     7Q-0.9.0d91 
     8branch Q-0.9.0a89 
     9 
    110Q-0.9.0d89 
    211[new] new icons (Andi) 
  • branches/0_9_0/host-cocoa/cocoaQemu.m

    r84 r92  
    100100                pcPath = [[@"~/Documents/QEMU/temp.qvm" stringByExpandingTildeInPath] retain]; 
    101101                pcTimer = [NSTimer scheduledTimerWithTimeInterval:10 target:self selector:@selector( liveThumbnail ) userInfo:nil repeats:YES]; 
     102                [self liveThumbnail]; 
    102103                pcDialogs = YES; 
    103104                pc = self; 
     
    838839        { 
    839840                pcStatus = @"shutdown"; 
     841                if([[NSFileManager defaultManager] fileExistsAtPath: [NSString stringWithFormat: @"%@/thumbnail.png", pcPath]]) [[NSFileManager defaultManager] removeFileAtPath: [NSString stringWithFormat: @"%@/thumbnail.png", pcPath] handler: nil]; 
    840842                qemu_system_shutdown_request(); 
    841843                vm_start(); 
     
    857859                if ( [pcStatus isEqual: @"running"] ) 
    858860                        pcStatus = @"shutdown"; 
     861                        if([[NSFileManager defaultManager] fileExistsAtPath: [NSString stringWithFormat: @"%@/thumbnail.png", pcPath]]) [[NSFileManager defaultManager] removeFileAtPath: [NSString stringWithFormat: @"%@/thumbnail.png", pcPath] handler: nil]; 
    859862                qemu_system_shutdown_request(); 
    860863                vm_start(); 
  • branches/0_9_0/qcontrol/Resources/English.lproj/Localizable.strings

    r83 r92  
    135135"toolbar:toolTip:network" = "Network"; 
    136136 
    137 "viewGeneral:title" = "Q %@ - General"; 
     137"editPCviewGeneral:title" = "Q %@ - General"; 
    138138 
    139139"viewHardware:title" = "Q %@ - Hardware"; 
  • branches/0_9_0/qcontrol/Resources/French.lproj/Localizable.strings

    r83 r92  
    134134"toolbar:toolTip:network" = "Réseau"; 
    135135 
    136 "viewGeneral:title" = "Q %@ - Général"; 
     136"editPCviewGeneral:title" = "Q %@ - Général"; 
    137137 
    138138"viewHardware:title" = "Q %@ - Matériel"; 
  • branches/0_9_0/qcontrol/Resources/German.lproj/Localizable.strings

    r84 r92  
    134134"toolbar:toolTip:network" = "Netzwerk"; 
    135135 
    136 "viewGeneral:title" = "Q %@ - Allgemein"; 
     136"editPCviewGeneral:title" = "Q %@ - Allgemein"; 
    137137 
    138138"viewHardware:title" = "Q %@ - Hardware"; 
  • branches/0_9_0/qcontrol/Resources/pl.lproj/Localizable.strings

    r83 r92  
    135135"toolbar:toolTip:network" = "Network"; 
    136136 
    137 "viewGeneral:title" = "Główne"; 
     137"editPCviewGeneral:title" = "Główne"; 
    138138 
    139139"viewHardware:title" = "Q %@ - Sprzęt"; 
  • branches/0_9_0/qcontrol/cocoaControlEditPC.m

    r78 r92  
    7575    } 
    7676     
    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"]]]; 
    7878    [editPCPanel setFrame:NSMakeRect( 
    7979        [editPCPanel frame].origin.x, 
     
    11121112 
    11131113    /* qemu arguments */ 
    1114     [[thisPC objectForKey:@"Arguments"] appendFormat:@" %@",[textFieldArguments stringValue]]; 
     1114    if ([[textFieldArguments stringValue] length] > 0)  
     1115        [[thisPC objectForKey:@"Arguments"] appendFormat:@" %@",[textFieldArguments stringValue]]; 
    11151116 
    11161117    /* save PC */