Skip to content

Commit

Permalink
Add customization checks and links page
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-manuel committed Jan 9, 2025
1 parent ab884e9 commit b868c91
Show file tree
Hide file tree
Showing 6 changed files with 553 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,11 @@ jobs:
sed -i "s%^var \(createQtAppInstance\)%window.\1%" artifacts/wasm/venus-gui-v2.js
cp .github/patches/Makefile artifacts/wasm/
cp LICENSE.txt artifacts/wasm/
cd artifacts
cd artifacts/wasm
gzip -k venus-gui-v2.wasm
sha256sum venus-gui-v2.wasm > venus-gui-v2.wasm.sha256
rm venus-gui-v2.wasm
cd ..
zip -r ../venus-webassembly.zip wasm
- name: Upload wasm files
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,7 @@ set (VENUS_QML_MODULE_SOURCES
pages/settings/PageSettingsVecanDevice.qml
pages/settings/PageSettingsVecanDevices.qml
pages/settings/PageSettingsWifi.qml
pages/settings/PageSettingsCustomizationChecksAndLinks.qml
pages/settings/PageTzInfo.qml
pages/settings/PageVrmDeviceInstances.qml
pages/settings/debug/HubData.qml
Expand Down Expand Up @@ -1242,4 +1243,3 @@ add_custom_target(
DEPENDS "${PROJECT_SOURCE_DIR}/src/themeobjects.h"
)
add_dependencies(${PROJECT_NAME} theme_parser)

5 changes: 5 additions & 0 deletions pages/SettingsPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,11 @@ SwipeViewPage {
text: qsTrId("settings_vrm_device_instances"),
page: "/pages/settings/PageVrmDeviceInstances.qml",
},
{
//% "Customization checks & Links"
text: qsTrId("settings_customization_checks_and_links"),
page: "/pages/settings/PageSettingsCustomizationChecksAndLinks.qml"
},
{
text: "Debug",
page: "/pages/settings/debug/PageDebug.qml",
Expand Down
Loading

0 comments on commit b868c91

Please sign in to comment.