added setup wizard ui and start of functionnality

This commit is contained in:
xgui4
2026-07-05 00:30:56 -04:00
parent 5a1d96e599
commit ed51cf6041
7 changed files with 118 additions and 14 deletions

View File

@@ -6,7 +6,7 @@ Write-Output "done"
Write-Output "Compilation of Qt ui files"
$QT_UI_ARRAY="system_info","form","instance","settingDialog","about", "contentInstaller"
$QT_UI_ARRAY="system_info","form","instance","settingDialog","about", "contentInstaller", "setup"
foreach ($QT_UI in $QT_UI_ARRAY)
{

View File

@@ -3,7 +3,7 @@
set -e
QT_RESSOURCE="res.qrc"
UI_FILES=("form" "system_info" "instance" "settingDialog" "about" "contentInstaller")
UI_FILES=("form" "system_info" "instance" "settingDialog" "about" "contentInstaller" "setup")
RCC="pyside6-rcc"
UIC="pyside6-ui"

View File

@@ -9,7 +9,7 @@ Write-Output "done"
Write-Output "Removing the compilated Qt UI and Qt Ressource files"
$QT_RESSOURCE="res_rc"
$QT_UI_ARRAY="system_info","form","instance","settingDialog","about", "contentInstaller"
$QT_UI_ARRAY="system_info","form","instance","settingDialog","about", "contentInstaller", "setup"
Write-Output "Removing the compilated Qt Ressource file"
Remove-Item -Path "src\lce_qt_launcher\$QT_RESSOURCE.py"

View File

@@ -9,7 +9,7 @@ echo "Removing the Nuitka compilation folder finished"
echo "Removing the compilated Qt UI and Qt Ressource files"
QT_RESSOURCE="res_rc"
QT_UI_ARRAY=("system_info" "form" "instance" "settingDialog" "about" "contentInstaller")
QT_UI_ARRAY=("system_info" "form" "instance" "settingDialog" "about" "contentInstaller" "setup")
echo "Removing the compilated Qt Ressource file"
rm "src/lce_qt_launcher/$QT_RESSOURCE.py"