From ee764f69b6e6ad4b720eb86701ea32f477af387f Mon Sep 17 00:00:00 2001 From: Ivan Dmitrievich Yartsev Date: Tue, 2 Dec 2025 18:21:33 +0600 Subject: [PATCH] Fixes; initialization fixes; build fixes --- source/ubinstall-gtk-components.c | 2 +- source/ubinstall-gtk-installation.c | 37 +- source/ubinstall-gtk.c | 8 +- source/ubinstall-gtk.h | 2 + ubinstall-gtk.glade | 3420 ++++++++++++++++++++------- 5 files changed, 2662 insertions(+), 807 deletions(-) diff --git a/source/ubinstall-gtk-components.c b/source/ubinstall-gtk-components.c index fbef016..f4a4f71 100644 --- a/source/ubinstall-gtk-components.c +++ b/source/ubinstall-gtk-components.c @@ -283,7 +283,7 @@ void yon_software_init(main_window *widgets){ } g_idle_add((GSourceFunc)yon_spinner_switch_off,widgets->OSSpinner); yon_char_parsed_free(base,base_size); - return NULL; + return ; } int yon_pacman_software_save(main_window *widgets){ diff --git a/source/ubinstall-gtk-installation.c b/source/ubinstall-gtk-installation.c index a4b4390..802b662 100644 --- a/source/ubinstall-gtk-installation.c +++ b/source/ubinstall-gtk-installation.c @@ -502,18 +502,7 @@ void yon_install_init(main_window *widgets, enum YON_PAGES page){ } } if (format_switch){ - char *format = config(part_format_parameter); - if ((!yon_char_is_empty(format)&&!strcmp(format,"yes"))||format_switch==widgets->CommonFormatSwitch){ - gtk_switch_set_active(GTK_SWITCH(format_switch),1); - if (device_label){ - char *parameter = config(part_label_parameter); - if (!yon_char_is_empty(parameter)){ - gtk_entry_set_text(GTK_ENTRY(device_label),parameter); - } else { - gtk_entry_set_text(GTK_ENTRY(device_label),""); - } - } - if (fs_type_combo){ + if (fs_type_combo){ gtk_combo_box_text_remove_all(GTK_COMBO_BOX_TEXT(fs_type_combo)); int size; config_str fs_types = yon_resource_open_file(fs_types_path,&size); @@ -533,6 +522,30 @@ void yon_install_init(main_window *widgets, enum YON_PAGES page){ gtk_combo_box_set_active(GTK_COMBO_BOX(fs_type_combo),0); } } + + if (partition_encryption_combo && partition_encryption_entry){ + int size; + gtk_combo_box_text_remove_all(GTK_COMBO_BOX_TEXT(partition_encryption_combo)); + gtk_combo_box_text_append(GTK_COMBO_BOX_TEXT(partition_encryption_combo),NULL,yon_char_get_localised_from_lib(DEFAULT_LABEL)); + config_str encryptions = yon_char_parsed_new(&size,encryptions_list,NULL); + for (int i=0;iCommonFormatSwitch){ + gtk_switch_set_active(GTK_SWITCH(format_switch),1); + if (device_label){ + char *parameter = config(part_label_parameter); + if (!yon_char_is_empty(parameter)){ + gtk_entry_set_text(GTK_ENTRY(device_label),parameter); + } else { + gtk_entry_set_text(GTK_ENTRY(device_label),""); + } + } + if (partition_size_spin&&partition_size_combo){ char *parameter = config(part_size_parameter); if (!yon_char_is_empty(parameter)){ diff --git a/source/ubinstall-gtk.c b/source/ubinstall-gtk.c index fce9334..1b6d0e9 100644 --- a/source/ubinstall-gtk.c +++ b/source/ubinstall-gtk.c @@ -913,6 +913,7 @@ void yon_main_window_create(main_window *widgets){ widgets->OSSysSectionTree = yon_gtk_builder_get_widget(builder,"OSSysSectionTree"); widgets->GpartedOSButton = yon_gtk_builder_get_widget(builder,"GpartedOSButton"); widgets->OSFormatSwitch = yon_gtk_builder_get_widget(builder,"OSFormatSwitch"); + widgets->OSRevealer = yon_gtk_builder_get_widget(builder,"OSRevealer"); widgets->OSFormatSizeSpin = yon_gtk_builder_get_widget(builder,"OSFormatSizeSpin"); widgets->OSFormatSizeCombo = yon_gtk_builder_get_widget(builder,"OSFormatSizeCombo"); widgets->OSFormatPartitionEntry = yon_gtk_builder_get_widget(builder,"OSFormatPartitionEntry"); @@ -925,6 +926,7 @@ void yon_main_window_create(main_window *widgets){ widgets->UserdataSysSectionTree = yon_gtk_builder_get_widget(builder,"UserdataSysSectionTree"); widgets->GpartedUserdataButton = yon_gtk_builder_get_widget(builder,"UserdataGpartedButton"); widgets->UserdataFormatSwitch = yon_gtk_builder_get_widget(builder,"UserdataFormatSwitch"); + widgets->UserdataRevealer = yon_gtk_builder_get_widget(builder,"UserdataRevealer"); widgets->UserdataFormatSizeSpin = yon_gtk_builder_get_widget(builder,"UserdataFormatSizeSpin"); widgets->UserdataFormatSizeCombo = yon_gtk_builder_get_widget(builder,"UserdataFormatSizeCombo"); widgets->UserdataFormatPartitionEntry = yon_gtk_builder_get_widget(builder,"UserdataFormatPartitionEntry"); @@ -1124,6 +1126,8 @@ void yon_main_window_create(main_window *widgets){ yon_gtk_revealer_set_from_switch(GTK_REVEALER(widgets->NextInstallationFormatRevealer),GTK_SWITCH(widgets->NextInstallationFormatSwitch)); yon_gtk_revealer_set_from_switch(GTK_REVEALER(widgets->SameInstallationFormatRevealer),GTK_SWITCH(widgets->SameInstallationFormatSwitch)); + yon_gtk_revealer_set_from_switch(GTK_REVEALER(widgets->OSRevealer),GTK_SWITCH(widgets->OSFormatSwitch)); + yon_gtk_revealer_set_from_switch(GTK_REVEALER(widgets->UserdataRevealer),GTK_SWITCH(widgets->UserdataFormatSwitch)); g_signal_connect(G_OBJECT(widgets->PacmanSoftwareAllCell),"toggled",G_CALLBACK(on_pacman_software_all_toggled),widgets); g_signal_connect(G_OBJECT(widgets->PacmanSoftwareChosenCell),"toggled",G_CALLBACK(on_pacman_software_chosen_toggled),widgets); @@ -1196,10 +1200,12 @@ void yon_main_window_create(main_window *widgets){ config_str parsed = NULL; parsed = yon_file_open(licence_path,&size); if (size){ + textdomain("ublinux-init-eula"); char *licence = yon_char_parsed_to_string(parsed,size,""); - gtk_label_set_text(GTK_LABEL(widgets->LicenceLabel),licence); + gtk_label_set_text(GTK_LABEL(widgets->LicenceLabel),_(licence)); free(licence); yon_char_parsed_free(parsed,size); + textdomain(LocaleName); } } { diff --git a/source/ubinstall-gtk.h b/source/ubinstall-gtk.h index 56c49d3..383a382 100755 --- a/source/ubinstall-gtk.h +++ b/source/ubinstall-gtk.h @@ -562,6 +562,7 @@ typedef struct { GtkWidget *OSDevicesTree; GtkWidget *OSSysSectionTree; GtkWidget *OSFormatSwitch; + GtkWidget *OSRevealer; GtkWidget *OSFormatSizeSpin; GtkWidget *OSFormatSizeCombo; GtkWidget *OSFormatPartitionEntry; @@ -576,6 +577,7 @@ typedef struct { GtkWidget *UserdataDevicesTree; GtkWidget *UserdataSysSectionTree; GtkWidget *UserdataFormatSwitch; + GtkWidget *UserdataRevealer; GtkWidget *UserdataFormatSizeSpin; GtkWidget *UserdataFormatSizeCombo; GtkWidget *UserdataFormatPartitionEntry; diff --git a/ubinstall-gtk.glade b/ubinstall-gtk.glade index a55258b..1c51eba 100644 --- a/ubinstall-gtk.glade +++ b/ubinstall-gtk.glade @@ -754,7 +754,6 @@ agreement 5 5 left - False True @@ -766,43 +765,6 @@ agreement False vertical 20 - - - True - False - center - Welcome to system installation - True - - - - - - - False - True - 0 - - - - - True - False - center - This program will ask you few questions -and help you install system on your computer - center - True - - - - - - False - True - 1 - - True @@ -810,13 +772,75 @@ and help you install system on your computer vertical 5 - + True False - center - center - 128 - /com/ublinux/images/language.png + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Welcome + True + 0 + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + False @@ -825,96 +849,101 @@ and help you install system on your computer - + True False - 5 - True + + + False + True + 2 + + + + + False + True + 0 + + + + + True + False + 5 + True + + + True + True + never + in + 132 - + True True - never - in - 132 + InstallerLanguageList + False + 1 - - True - True - InstallerLanguageList - False - 1 - - - + + True - - True - - - - 2 - - - + + + 2 + + + + + + column - - column - - - - 1 - - - + + + 1 + - - True - True - 0 - + + + True + True + 0 + + + + + True + True + never + in + 132 - + True True - never - in - 132 + InstallerCountryFilter + False + 1 + 3 + True - - True - True - InstallerCountryFilter - False - 1 - 3 - True - - - + - - - - - 1 - - - + + + 1 + - - True - True - 1 - @@ -927,7 +956,7 @@ and help you install system on your computer True True - 3 + 1 @@ -956,6 +985,109 @@ and help you install system on your computer False vertical 5 + + + True + False + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Licence agreement + True + 0 + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + 0 + + + + + True + False + + + False + True + 2 + + + + + False + True + 0 + + True @@ -987,17 +1119,31 @@ and help you install system on your computer True True - 0 + 1 - - - 1 - - - - - True + + + Agree + True + True + False + True + + + False + True + 2 + + + + + 1 + + + + + True False Licences @@ -1017,29 +1163,102 @@ and help you install system on your computer True False vertical + 5 - + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Installation options + True + 0 + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + 0 + + + + True False - Installation options - - - - - - False True - 1 + 2 False True - 0 + 1 @@ -1489,15 +1708,102 @@ and help you install system on your computer vertical 5 - + True False - Installation completion - - - - - + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Installation completion + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + 0 + + + + + True + False + + + False + True + 2 + + False @@ -1591,7 +1897,7 @@ and help you install system on your computer True True - 1 + 2 @@ -1672,15 +1978,102 @@ and help you install system on your computer vertical 5 - + True False - Choose system kernel - - - - - + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Choose system kernel + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + 0 + + + + + True + False + + + False + True + 2 + + False @@ -1935,20 +2328,107 @@ and help you install system on your computer vertical 5 - + True False - Choose system kernel - - - - - + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Choose kernel addons + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + 0 + + + + + True + False + + + False + True + 2 + + False True - 0 + 1 @@ -2169,6 +2649,110 @@ and help you install system on your computer 0 + + + True + False + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Choose system kernel + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + 0 + + + + + True + False + + + False + True + 2 + + + + + False + True + 1 + + True @@ -2255,7 +2839,7 @@ and help you install system on your computer True True - 1 + 2 @@ -2297,6 +2881,110 @@ and help you install system on your computer 0 + + + True + False + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Choose system kernel + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + 0 + + + + + True + False + + + False + True + 2 + + + + + False + True + 1 + + True @@ -2501,7 +3189,7 @@ and help you install system on your computer True True - 1 + 2 @@ -2592,7 +3280,7 @@ and help you install system on your computer True True - 2 + 3 @@ -2635,6 +3323,110 @@ and help you install system on your computer 0 + + + True + False + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Choose system kernel + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + + + + False + True + 1 + + True @@ -2656,7 +3448,7 @@ and help you install system on your computer True True - 1 + 2 @@ -2886,7 +3678,7 @@ and help you install system on your computer False True - 2 + 3 @@ -2911,6 +3703,110 @@ and help you install system on your computer False vertical 5 + + + True + False + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Choose system kernel + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + + + + False + True + 0 + + True @@ -2926,7 +3822,7 @@ and help you install system on your computer False True - 0 + 1 @@ -2950,7 +3846,7 @@ and help you install system on your computer True True - 1 + 2 @@ -3065,7 +3961,7 @@ and help you install system on your computer False True - 2 + 3 @@ -3180,7 +4076,7 @@ and help you install system on your computer False True - 3 + 4 @@ -3205,82 +4101,186 @@ and help you install system on your computer False vertical 5 - - - True - False - Settings - - - - - - - - - False - True - 0 - - - - - True - False - 0 - none - - - 1 - 1 - True - False - - - - - - - - True - True - 1 - - True False + vertical 5 - - True - True - - - False - True - 0 - - - - + True False - Automatic login without password prompt - - - False - True - 1 - - - - - False - True - 2 - + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Choose system kernel + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + + + + False + True + 0 + + + + + True + False + Settings + + + + + + + + + False + True + 1 + + + + + True + False + 0 + none + + + 1 + 1 + True + False + + + + + + + + True + True + 2 + + + + + True + False + 5 + + + True + True + + + False + True + 0 + + + + + True + False + Automatic login without password prompt + + + False + True + 1 + + + + + False + True + 3 + @@ -3733,6 +4733,9 @@ and help you install system on your computer 3 + + + 12 @@ -4095,6 +5098,9 @@ and help you install system on your computer 2 + + + 13 @@ -4487,6 +5493,9 @@ and help you install system on your computer 2 + + + 14 @@ -4509,6 +5518,110 @@ and help you install system on your computer False vertical 5 + + + True + False + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Choose system kernel + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + + + + False + True + 0 + + True @@ -4523,7 +5636,7 @@ and help you install system on your computer False True - 0 + 1 @@ -4534,7 +5647,7 @@ and help you install system on your computer False True - 1 + 2 @@ -4559,11 +5672,306 @@ and help you install system on your computer False vertical 5 + + + True + False + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Choose system kernel + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + + + + False + True + 0 + + + + + True + False + Installation completion + + + + + + + + + False + True + 1 + + + + + False + + + True + True + 2 + + + + + True + False + end + Success + + + + + + + True + True + 3 + + + + + True + False + start + You have system installed on your computer. +You can reboot and use your new system +or continue working in the environment, booted from the Live image. + center + True + + + + + + True + True + 4 + + + + + 16 + + + + + True + False + Completion + + + 16 + False + + + + + True + False + vertical + 5 + + + True + False + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Choose system kernel + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + + + + False + True + 0 + + True False - Installation completion + Completion @@ -4574,7 +5982,7 @@ and help you install system on your computer False True - 0 + 1 @@ -4584,7 +5992,7 @@ and help you install system on your computer True True - 1 + 2 @@ -4592,7 +6000,7 @@ and help you install system on your computer True False end - Success + Configuration has been saved @@ -4601,7 +6009,7 @@ and help you install system on your computer True True - 2 + 3 @@ -4609,9 +6017,7 @@ and help you install system on your computer True False start - You have system installed on your computer. -You can reboot and use your new system -or continue working in the environment, booted from the Live image. + You can safely exit configurator or return and create new configuration file. center True @@ -4621,22 +6027,22 @@ or continue working in the environment, booted from the Live image. True True - 3 + 4 - 16 + 17 True False - Completion + Completed - 16 + 17 False @@ -4646,11 +6052,115 @@ or continue working in the environment, booted from the Live image. False vertical 5 + + + True + False + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Choose system kernel + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + + + + False + True + 0 + + True False - Completion + Installation error @@ -4661,7 +6171,7 @@ or continue working in the environment, booted from the Live image. False True - 0 + 1 @@ -4669,9 +6179,9 @@ or continue working in the environment, booted from the Live image. False - True + False True - 1 + 2 @@ -4679,7 +6189,7 @@ or continue working in the environment, booted from the Live image. True False end - Configuration has been saved + Error @@ -4688,7 +6198,7 @@ or continue working in the environment, booted from the Live image. True True - 2 + 3 @@ -4696,7 +6206,7 @@ or continue working in the environment, booted from the Live image. True False start - You can safely exit configurator or return and create new configuration file. + Error has occured while installation process center True @@ -4706,22 +6216,22 @@ or continue working in the environment, booted from the Live image. True True - 3 + 4 - 17 + 18 True False - Completed + Configuration error - 17 + 18 False @@ -4732,90 +6242,109 @@ or continue working in the environment, booted from the Live image. vertical 5 - - True - False - Installation error - - - - - - - - - False - True - 0 - - - - - False - - - False - True - 1 - - - - - True - False - end - Error - - - - - - - True - True - 2 - - - - + True False - start - Error has occured while installation process - center - True - - - + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Choose system kernel + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + - True + False True - 3 + 0 - - - 18 - - - - - True - False - Configuration error - - - 18 - False - - - - - True - False - vertical - 5 True @@ -4831,7 +6360,7 @@ or continue working in the environment, booted from the Live image. False True - 0 + 1 @@ -4841,7 +6370,7 @@ or continue working in the environment, booted from the Live image. False True - 1 + 2 @@ -4858,7 +6387,7 @@ or continue working in the environment, booted from the Live image. True True - 2 + 3 @@ -4876,7 +6405,7 @@ or continue working in the environment, booted from the Live image. True True - 3 + 4 @@ -4901,6 +6430,110 @@ or continue working in the environment, booted from the Live image. False vertical 5 + + + True + False + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + com.ublinux.ubinstall-gtk + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Choose system kernel + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + This program will ask you few questions and help you install system on your computer + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + + + + False + True + 0 + + True @@ -4916,7 +6549,7 @@ or continue working in the environment, booted from the Live image. False True - 0 + 1 @@ -4926,7 +6559,7 @@ or continue working in the environment, booted from the Live image. False True - 1 + 2 @@ -4943,7 +6576,7 @@ or continue working in the environment, booted from the Live image. True True - 2 + 3 @@ -4961,7 +6594,7 @@ or continue working in the environment, booted from the Live image. True True - 3 + 4 @@ -4986,23 +6619,6 @@ or continue working in the environment, booted from the Live image. False vertical 5 - - - True - False - Installation parameters - - - - - - - - False - True - 0 - - True @@ -5029,12 +6645,18 @@ or continue working in the environment, booted from the Live image. True False + 10 + 10 + 10 + 10 5 True False + 48 /com/ublinux/images/install_type_fast_normal.png + 0 False @@ -5047,15 +6669,18 @@ or continue working in the environment, booted from the Live image. True False vertical - 5 - + True False Installation + True 0 - + + + + @@ -5065,11 +6690,16 @@ or continue working in the environment, booted from the Live image. - + True False Deleting all data on the selected disk and then installing the system + center + True 0 + + + False @@ -5088,9 +6718,33 @@ or continue working in the environment, booted from the Live image. False True - 0 + -1 + + + + + True + False + + + False + True + 1 + + + False + True + 0 + + + + + True + False + vertical + 5 True @@ -5218,7 +6872,7 @@ or continue working in the environment, booted from the Live image. False True - 0 + 1 @@ -5429,23 +7083,6 @@ or continue working in the environment, booted from the Live image. False vertical 5 - - - True - False - Installation parameters - - - - - - - - False - True - 0 - - True @@ -5472,12 +7109,18 @@ or continue working in the environment, booted from the Live image. True False + 10 + 10 + 10 + 10 5 True False + 48 /com/ublinux/images/install_type_next_normal.png + 0 False @@ -5490,15 +7133,18 @@ or continue working in the environment, booted from the Live image. True False vertical - 5 - + True False Installation next to another system + True 0 - + + + + @@ -5508,11 +7154,16 @@ or continue working in the environment, booted from the Live image. - + True False Shrinking a partition and creating a new one for installing OS + center + True 0 + + + False @@ -5531,23 +7182,18 @@ or continue working in the environment, booted from the Live image. False True - 1 + -1 - + True False - <b>Attention!</b> The system will be installed in the selected partition. If you do not change the FS type or format, all data on the partition will be saved. - True - True - 0 - 0 False True - 2 + 1 @@ -5557,6 +7203,22 @@ or continue working in the environment, booted from the Live image. 0 + + + True + False + <b>Attention!</b> The system will be installed in the selected partition. If you do not change the FS type or format, all data on the partition will be saved. + True + True + 0 + 0 + + + False + True + 1 + + True @@ -5808,7 +7470,7 @@ or continue working in the environment, booted from the Live image. False True - 1 + 2 @@ -6095,23 +7757,6 @@ or continue working in the environment, booted from the Live image. False vertical 5 - - - True - False - Installation parameters - - - - - - - - False - True - 0 - - True @@ -6132,22 +7777,24 @@ or continue working in the environment, booted from the Live image. True False - center - center - 20 - 20 vertical 5 True False + 10 + 10 + 10 + 10 5 True False + 48 /com/ublinux/images/install_type_part_normal.png + 0 False @@ -6160,15 +7807,18 @@ or continue working in the environment, booted from the Live image. True False vertical - 5 - + True False Installation on the same partition as another system + True 0 - + + + + @@ -6178,11 +7828,16 @@ or continue working in the environment, booted from the Live image. - + True False Unpacking into an existing system + center + True 0 + + + False @@ -6201,23 +7856,18 @@ or continue working in the environment, booted from the Live image. False True - 1 + -1 - + True False - <b>Attention!</b> The system will be installed on the selected partition with OS already installed. All user data will be saved. - True - True - 0 - 0 False True - 2 + 1 @@ -6227,6 +7877,22 @@ or continue working in the environment, booted from the Live image. 0 + + + True + False + <b>Attention!</b> The system will be installed on the selected partition with OS already installed. All user data will be saved. + True + True + 0 + 0 + + + False + True + 1 + + True @@ -6476,7 +8142,7 @@ or continue working in the environment, booted from the Live image. False True - 1 + 2 @@ -6720,23 +8386,6 @@ or continue working in the environment, booted from the Live image. False vertical 5 - - - True - False - Installation parameters - - - - - - - - False - True - 0 - - True @@ -6747,12 +8396,18 @@ or continue working in the environment, booted from the Live image. True False + 10 + 10 + 10 + 10 5 True False + 48 /com/ublinux/images/install_type_custom_normal.png + 0 False @@ -6766,13 +8421,17 @@ or continue working in the environment, booted from the Live image. False vertical - + True False Advanced installation mode + True 0 - + + + + @@ -6782,11 +8441,16 @@ or continue working in the environment, booted from the Live image. - + True False Installing OS files, user data on different partitions, creating RAID, etc. + center + True 0 + + + False @@ -6805,17 +8469,13 @@ or continue working in the environment, booted from the Live image. False True - 0 + -1 - + True False - <b>Attention!</b> The selected system components will be installed -separately into the selected partition. - True - 0 False @@ -6824,6 +8484,21 @@ separately into the selected partition. + + False + True + 0 + + + + + True + False + <b>Attention!</b> The selected system components will be installed +separately into the selected partition. + True + 0 + False True @@ -7768,15 +9443,102 @@ separately into the selected partition. vertical 5 - + True False - Installation options - - - - - + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + /com/ublinux/images/install_type_recovery_normal.png + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + Advanced installation mode + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + Installing OS files, user data on different partitions, creating RAID, etc. + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + False @@ -7798,96 +9560,18 @@ separately into the selected partition. False vertical - + True False - vertical - 5 - - - True - False - 5 - - - True - False - /com/ublinux/images/install_type_recovery_normal.png - - - False - True - 0 - - - - - True - False - vertical - - - True - False - Advanced installation mode - 0 - - - - - - False - True - 0 - - - - - True - False - Installing OS files, user data on different partitions, creating RAID, etc. - 0 - - - False - True - 1 - - - - - True - True - 1 - - - - - False - True - 0 - - - - - True - False - <b>Attention!</b> The selected system components will be installed + <b>Attention!</b> The selected system components will be installed separately into the selected partition. - True - 0 - - - False - True - 1 - - + True + 0 False True - 1 + 0 @@ -8250,15 +9934,102 @@ separately into the selected partition. vertical 5 - + True False - Installation parameters - - - - - + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + /com/ublinux/images/install_type_grub_install_normal.png + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + GRUB install + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + Install the GRUB bootloader + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + False @@ -8286,72 +10057,6 @@ separately into the selected partition. False vertical 5 - - - True - False - 5 - - - True - False - /com/ublinux/images/install_type_grub_install_normal.png - - - False - True - 0 - - - - - True - False - vertical - 5 - - - True - False - GRUB install - 0 - - - - - - False - True - 0 - - - - - True - False - Install the GRUB bootloader - 0 - - - False - True - 1 - - - - - True - True - 1 - - - - - False - True - 0 - - True @@ -8625,108 +10330,129 @@ separately into the selected partition. vertical 5 - + True False - Installation parameters - - - - - - - - False - True - 0 - - - - - True - True + vertical + 5 - + True False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + /com/ublinux/images/install_type_grub_update_normal.png + 0 + + + False + True + 0 + + True False vertical - 5 - + True False - vertical - 5 - - - True - False - 5 - - - True - False - /com/ublinux/images/install_type_grub_update_normal.png - - - False - True - 0 - - - - - True - False - vertical - 5 - - - True - False - GRUB update - 0 - - - - - - False - True - 0 - - - - - True - False - Update (reinstall) the GRUB bootloader - 0 - - - False - True - 1 - - - - - True - True - 1 - - - - - False - True - 0 - - + GRUB update + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + Update (reinstall) the GRUB bootloader + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + + + + False + True + 0 + + + + + True + True + + + True + False + + + True + False + vertical + 5 + + + True + False + vertical + 5 True @@ -8993,15 +10719,102 @@ separately into the selected partition. vertical 5 - + True False - Installation parameters - - - - - + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + /com/ublinux/images/install_type_system_only_normal.png + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + OS only + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + Installing only OS components without user data + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + False @@ -9029,72 +10842,6 @@ separately into the selected partition. False vertical 5 - - - True - False - 5 - - - True - False - /com/ublinux/images/install_type_system_only_normal.png - - - False - True - 0 - - - - - True - False - vertical - 5 - - - True - False - OS only - 0 - - - - - - False - True - 0 - - - - - True - False - Installing only OS components without user data - 0 - - - False - True - 1 - - - - - True - True - 1 - - - - - False - True - 0 - - True @@ -9432,11 +11179,9 @@ separately into the selected partition. - + True False - none - True True @@ -9527,7 +11272,6 @@ separately into the selected partition. True - False False 1 @@ -9588,6 +11332,9 @@ separately into the selected partition. True False + + Default + False @@ -9708,15 +11455,102 @@ separately into the selected partition. vertical 5 - + True False - Installation parameters - - - - - + vertical + 5 + + + True + False + 10 + 10 + 10 + 10 + 5 + + + True + False + 48 + /com/ublinux/images/install_type_data_only_normal.png + 0 + + + False + True + 0 + + + + + True + False + vertical + + + True + False + User data only + True + 0 + + + + + + + + + False + True + 0 + + + + + True + False + Installing only user data without OS components + center + True + 0 + + + + + + False + True + 1 + + + + + True + True + 1 + + + + + False + True + -1 + + + + + True + False + + + False + True + 1 + + False @@ -10149,11 +11983,9 @@ separately into the selected partition. - + True False - none - True True @@ -10246,7 +12078,6 @@ separately into the selected partition. True - False False 1 @@ -10307,6 +12138,9 @@ separately into the selected partition. True False + + Default + False