Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add customization checks and links page #1826

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading