mirror of
https://github.com/xgui4/LCE-Qt-Launcher.git
synced 2026-07-18 03:40:50 +00:00
fix: Change version type to nightly and add version number in build_info.py refactor: Update form.ui layout and improve widget organization feat: Enhance instance management with save/load functionality and default save path feat: Implement browser dialog for external links in launcher.py feat: Add issue templates for bug reports and feature requests in GitHub chore: Create browser_dialog.py for handling web views in dialogs
20 lines
974 B
JSON
20 lines
974 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "PySide: build (GNU/Linux)",
|
|
"type": "shell",
|
|
"command": "/usr/lib/qt6/uic -g python ${workspaceFolder}/src/form.ui -o ${workspaceFolder}/src/ui_form.py && /usr/lib/qt6/rcc -g python ${workspaceFolder}/res.qrc -o ${workspaceFolder}/src/res_rc.py && /usr/lib/qt6/uic -g python ${workspaceFolder}/src/system_info.ui -o ${workspaceFolder}/src/ui_system_info.py",
|
|
"group": "build",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "PySide: build (Windows)",
|
|
"type": "shell",
|
|
"command":"pyside6-uic ${workspaceFolder}/src/form.ui -o ${workspaceFolder}/src/ui_form.py; pyside6-rcc ${workspaceFolder}/res.qrc -o ${workspaceFolder}/src/res_rc.py; pyside6-uic ${workspaceFolder}/src/system_info.ui -o ${workspaceFolder}/src/ui_system_info.py",
|
|
"group": "build",
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|