54 lines
1.4 KiB
QML
54 lines
1.4 KiB
QML
pragma Singleton
|
|
import QtQuick 2.0
|
|
|
|
ConfigurationBase {
|
|
systemName: "nymea"
|
|
appName: "nymea:app"
|
|
appId: "io.guh.nymeaapp"
|
|
|
|
connectionWizard: "/ui/connection/NewConnectionWizard.qml"
|
|
|
|
magicEnabled: true
|
|
networkSettingsEnabled: true
|
|
apiSettingsEnabled: true
|
|
mqttSettingsEnabled: true
|
|
webServerSettingsEnabled: true
|
|
zigbeeSettingsEnabled: true
|
|
modbusSettingsEnabled: true
|
|
pluginSettingsEnabled: true
|
|
|
|
|
|
mainMenuLinks: [
|
|
{
|
|
text: qsTr("Help"),
|
|
iconName: "../images/help.svg",
|
|
url: "https://nymea.io/documentation/users/usage/first-steps"
|
|
},
|
|
{
|
|
text: qsTr("Forum"),
|
|
iconName: "../images/discourse.svg",
|
|
url: "https://forum.nymea.io"
|
|
},
|
|
{
|
|
text: qsTr("Telegram"),
|
|
iconName: "../images/telegram.svg",
|
|
url: "https://t.me/nymeacommunity"
|
|
},
|
|
{
|
|
text: qsTr("Discord"),
|
|
iconName: "../images/discord.svg",
|
|
url: "https://discord.gg/tX9YCpD"
|
|
},
|
|
{
|
|
text: qsTr("Twitter"),
|
|
iconName: "../images/twitter.svg",
|
|
url: "https://twitter.com/nymea_io"
|
|
},
|
|
{
|
|
text: qsTr("Facebook"),
|
|
iconName: "../images/facebook.svg",
|
|
url: "https://m.facebook.com/groups/nymea"
|
|
}
|
|
]
|
|
}
|