better organiasations + news hatch scripts + some minors bugs fixes

This commit is contained in:
xgui4
2026-04-13 18:49:05 -04:00
parent cdde37ff85
commit b173ee490b
21 changed files with 59 additions and 26 deletions

14
scripts/clean.ps1 Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env pwsh
$ErrorActionPreference = 'Stop'
Remove-Item -Path -Recurse dist
Remove-Item -Path "src\res_rc.py"
Remove-Item -Path "src\ui_system_info.py"
Remove-Item -Path "src\ui_form.py"
Remove-Item -Path "src\ui_instance.py"
Remove-Item -Path "src\ui_settingDialog.py"
Remove-Item -Path "src\ui_about.py"
Get-ChildItem -Path . -Recurse -Include '__pycache__', '*.pyc' | Remove-Item -Recurse -Force