mirror of
https://github.com/xgui4/LCE-Qt-Launcher.git
synced 2026-07-18 06:01:02 +00:00
- Introduced a new module `holyday.py` to manage and display holidays based on the current date. - Implemented an enumeration for months and a dictionary for holiday messages. - Created a new UI file `settingDialog.ui` for user settings, including language and theme selection. - Added checkboxes for showing holidays and enabling developer mode in the settings dialog.
16 lines
694 B
Bash
Executable File
16 lines
694 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
if [[ $("uname -s") != "FreeBSD" ]]; then
|
|
pyside6-rcc "res.qrc" -o "src/res_rc.py" &&
|
|
pyside6-uic "src/form.ui" -o "src/ui_form.py" &&
|
|
pyside6-uic "src/instance.ui" -o "src/ui_instance.py" &&
|
|
pyside6-uic "src/system_info.ui" -o "src/ui_system_info.py"
|
|
pyside6-uic "src/settingDialog.ui" -o "src/ui_settingDialog.py"
|
|
else
|
|
/usr/local/pyside6/rcc -g python "res.qrc" -o "src/res_rc.py" &&
|
|
/usr/local/pyside6/uic -g python "src/form.ui" -o "src/ui_form.py" &&
|
|
/usr/local/pyside6/uic -g python "src/system_info.ui" -o "src/ui_system_info.py"
|
|
/usr/local/pyside6/uic -g python "src/settingDialog.ui" -o "src/ui_settingDialog.py"
|
|
fi |