diff --git a/Base.lproj/Helios.xib b/Base.lproj/Helios.xib index bcd824e..0b620d9 100644 --- a/Base.lproj/Helios.xib +++ b/Base.lproj/Helios.xib @@ -11,9 +11,6 @@ - - - @@ -40,15 +37,15 @@ - + - + - + @@ -57,7 +54,7 @@ - + @@ -66,12 +63,12 @@ - + - + @@ -82,11 +79,11 @@ macOS port by Nick Zitzmann, based on earlier work by UselessSoftware Ltd. - + - - - - - - - - - - - - - - + @@ -144,7 +128,7 @@ DQ - + @@ -154,7 +138,7 @@ DQ - + @@ -163,7 +147,7 @@ DQ - + @@ -173,7 +157,7 @@ DQ - + @@ -182,7 +166,7 @@ DQ - + @@ -192,7 +176,7 @@ DQ - + @@ -212,7 +196,7 @@ DQ - + @@ -222,7 +206,7 @@ DQ - + @@ -231,7 +215,7 @@ DQ - + @@ -241,7 +225,7 @@ DQ - + @@ -250,7 +234,7 @@ DQ - + @@ -260,7 +244,7 @@ DQ - + @@ -269,7 +253,7 @@ DQ - + @@ -279,7 +263,7 @@ DQ - + @@ -292,27 +276,8 @@ DQ - - - - - - - - - - - - - - - - - - - - + diff --git a/HeliosView.h b/HeliosView.h index 82ae561..e9ce08f 100644 --- a/HeliosView.h +++ b/HeliosView.h @@ -26,12 +26,8 @@ HeliosSaverSettings settings; rsTimer timer; - int complexity; int sphereType; - IBOutlet id IBcomplexity; - IBOutlet id IBcomplexityTxt; - IBOutlet id IBdIons; IBOutlet id IBdIonsTxt; @@ -61,7 +57,6 @@ IBOutlet id configureSheet; IBOutlet id IBversionNumberField; - IBOutlet id IBUpdatesInfo; IBOutlet id IBmainMonitorOnly; IBOutlet id IBDefaultValues; diff --git a/HeliosView.mm b/HeliosView.mm index 33c4c5c..27ee545 100644 --- a/HeliosView.mm +++ b/HeliosView.mm @@ -95,7 +95,6 @@ - (id)initWithFrame:(NSRect)frameRect isPreview:(BOOL) preview // par.dWireframe = [defaults boolForKey:@"dWireframe"]; settings.dBlur = int([defaults integerForKey:@"dBlur"]); sphereType = int([defaults integerForKey:@"sphereType"]); - complexity = int([defaults integerForKey:@"complexity"]); } NSRect newBounds = [_view convertRectToBacking:_view.bounds]; @@ -258,8 +257,6 @@ - (NSWindow*)configureSheet [IBversionNumberField setStringValue:kVersion]; - [IBUpdatesInfo setStringValue:@""]; - [IBmainMonitorOnly setState:(mainMonitorOnly ? NSOnState : NSOffState)]; @@ -300,10 +297,6 @@ - (NSWindow*)configureSheet [IBsphereType selectItemAtIndex:sphereType]; [IBsphereType setEnabled:settings.dSurface]; - [IBcomplexity setIntValue:complexity]; - [IBcomplexityTxt setStringValue:[NSString stringWithFormat: - [thisBundle localizedStringForKey:@"Complexity (%d)" value:@"" table:@""], complexity]]; - [IBmainMonitorOnly setTitle:[thisBundle localizedStringForKey:@"Main monitor only" value:@"" table:@""]]; [IBDefaultValues setTitle:[thisBundle localizedStringForKey:@"Default values" value:@"" table:@""]]; [IBCancel setTitle:[thisBundle localizedStringForKey:@"Cancel" value:@"" table:@""]]; @@ -360,11 +353,6 @@ - (IBAction) sheet_update:(id) sender fooBool = ( [IBdSurface state] == NSOnState ) ? true : false; [IBsphereType setEnabled:fooBool]; } - else if( sender == IBcomplexity ) { - fooInt = [IBcomplexity intValue]; - [IBcomplexityTxt setStringValue:[NSString stringWithFormat: - [thisBundle localizedStringForKey:@"Complexity (%d)" value:@"" table:@""], fooInt]]; - } } - (IBAction) closeSheet_save:(id) sender { @@ -393,7 +381,6 @@ - (IBAction) closeSheet_save:(id) sender { // par.dWireframe = ( [IBdWireframe state] == NSOnState ) ? true : false; settings.dBlur = [IBdBlur intValue]; sphereType = int([IBsphereType indexOfSelectedItem]); - complexity = [IBcomplexity intValue]; [defaults setBool: mainMonitorOnly forKey: @"mainMonitorOnly"]; @@ -407,7 +394,6 @@ - (IBAction) closeSheet_save:(id) sender { [defaults setBool: settings.dSurface forKey: @"dSurface"]; [defaults setInteger: settings.dBlur forKey: @"dBlur"]; [defaults setInteger: sphereType forKey: @"sphereType"]; - [defaults setInteger: complexity forKey: @"complexity"]; [defaults synchronize]; @@ -477,10 +463,6 @@ - (IBAction) restoreDefaults:(id) sender { [IBsphereType selectItem:nil]; [IBsphereType selectItemAtIndex:0]; [IBsphereType setEnabled:[IBdSurface state] == NSOnState]; - - [IBcomplexity setIntValue:0]; - [IBcomplexityTxt setStringValue:[NSString stringWithFormat: - [thisBundle localizedStringForKey:@"Complexity (%d)" value:@"" table:@""], 0]]; } diff --git a/de.lproj/Localizable.strings b/de.lproj/Localizable.strings index 9072002..e1eb248 100644 Binary files a/de.lproj/Localizable.strings and b/de.lproj/Localizable.strings differ diff --git a/en.lproj/Localizable.strings b/en.lproj/Localizable.strings index 9cb7f9f..a4824dc 100644 Binary files a/en.lproj/Localizable.strings and b/en.lproj/Localizable.strings differ diff --git a/fr.lproj/Localizable.strings b/fr.lproj/Localizable.strings index b5d45bf..ce9e9fc 100644 Binary files a/fr.lproj/Localizable.strings and b/fr.lproj/Localizable.strings differ diff --git a/it.lproj/Localizable.strings b/it.lproj/Localizable.strings index da825da..f77f111 100644 --- a/it.lproj/Localizable.strings +++ b/it.lproj/Localizable.strings @@ -16,11 +16,3 @@ "Default values" = "Valori di default"; "Cancel" = "Cancella"; "Save" = "Salva"; - -/* version checking strings. */ -"Couldn't connect to version database, sorry" = "Non posso connettermi al database, peccato"; -"New version available !!" = "C'è una nuova versione !!"; -"You're up-to-date" = "Hai già l'ultima versione"; - - - diff --git a/ja.lproj/Localizable.strings b/ja.lproj/Localizable.strings index 6091e7d..eae6a01 100644 Binary files a/ja.lproj/Localizable.strings and b/ja.lproj/Localizable.strings differ