1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-07 03:22:33 +01:00

Add missing icon and crash report setting

This commit is contained in:
kelteseth 2018-01-04 13:04:46 +01:00
parent 87157a6b70
commit 62bac1b255
3 changed files with 14 additions and 2 deletions

Binary file not shown.

View File

@ -55,7 +55,7 @@ Item {
Item {
id: settingsGeneralWrapper
height: 320
height: 390
width: parent.width
RectangularGlow {
@ -113,6 +113,7 @@ Item {
SettingBool {
headline: qsTr("High priority Autostart")
available: false
description: qsTr("This options grants ScreenPlay a higher autostart priority than other apps.")
isChecked: screenPlaySettings.highPriorityStart
onCheckboxChanged: {
@ -138,6 +139,17 @@ Item {
}
}
}
SettingsHorizontalSeperator {
}
SettingBool {
headline: qsTr("Send anonymous crash reports and statistics")
description: qsTr("Help us make ScreenPlay faster and more stable. All collected data is purely used for development purposes!")
isChecked: screenPlaySettings.sendStatistics
onCheckboxChanged: {
screenPlaySettings.setSendStatistics(checked)
screenPlaySettings.writeSingleSettingConfig("sendStatistics",checked)
}
}
}
}
}

View File

@ -2,7 +2,7 @@
"version" : "0.0.1",
"autostart" : true,
"highPriorityStart" : false,
"sendStatistics" : false,
"sendStatistics" : true,
"absoluteStoragePath": "",
"renderer": {
"renderer-value": 0,