feat: Introduce initial application structure, SQL database tools, and license management.

This commit is contained in:
2026-01-29 23:07:55 +08:00
commit 8319916a06
97 changed files with 3207 additions and 0 deletions

24
fix_qt_paths.bat Normal file
View File

@@ -0,0 +1,24 @@
@echo off
echo ========================================================
echo MEMPERBAIKI PATH PYQT5 (QT.CONF)
echo ========================================================
echo.
echo Masalah: PyQt5 manual Anda mengira dia ada di C:/Qt/5.5.0
echo Solusi: Kita buat file C:\Python34\qt.conf untuk mengarahkannya ke yang benar.
echo.
set TARGET_CONF=C:\Python34\qt.conf
echo [Paths] > "%TARGET_CONF%"
echo Prefix = C:/Python34/Lib/site-packages/PyQt5 >> "%TARGET_CONF%"
echo Plugins = plugins >> "%TARGET_CONF%"
echo File terbuat: %TARGET_CONF%
echo Isi file:
type "%TARGET_CONF%"
echo.
echo ========================================================
echo SELESAI!
echo ========================================================
echo Silakan jalankan 'build_xp.bat' lagi.
pause