Skip to content

Commit

Permalink
default settings and credits
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelscholle committed Jul 14, 2024
1 parent 1574894 commit c47cb62
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 15 deletions.
1 change: 1 addition & 0 deletions checks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"enabled":true,"categories":{}}
42 changes: 30 additions & 12 deletions qml/ui/configpopup/credits/Credits.qml
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,24 @@ Rectangle {
spacing: 5

Text {
text: "Consti"
text: "Raphael"
font.bold: true
font.pixelSize: settings.qopenhd_general_font_pixel_size*1.1
color: "black"
anchors.horizontalCenter: parent.horizontalCenter
}
Text {
text: "raphaelscholle"
font.bold: true
font.pixelSize: settings.qopenhd_general_font_pixel_size*0.7
color: "grey"
anchors.horizontalCenter: parent.horizontalCenter
}

Image {
id: ee1
visible: true
source: "../../../resources/master1.png"
source: "../../../resources/master2.png"
width: creditsRectangle.width/5
height: creditsRectangle.width/5
}
Expand All @@ -65,7 +72,7 @@ Rectangle {
spacing: 5

Text {
text: "Raphael"
text: "Max"
font.bold: true
font.pixelSize: settings.qopenhd_general_font_pixel_size*1.1
color: "black"
Expand All @@ -75,7 +82,7 @@ Rectangle {
Image {
id: ee2
visible: true
source: "../../../resources/master2.png"
source: "../../../resources/master3.png"
width: creditsRectangle.width/5
height: creditsRectangle.width/5
}
Expand All @@ -92,19 +99,30 @@ Rectangle {
spacing: 5

Text {
text: "Max"
text: "Former Developers"
font.bold: true
font.pixelSize: settings.qopenhd_general_font_pixel_size*1.1
color: "black"
anchors.horizontalCenter: parent.horizontalCenter
}
Text {
text: " "
color: "black"
font.pixelSize: settings.qopenhd_general_font_pixel_size*1.2
anchors.horizontalCenter: parent.horizontalCenter

Image {
id: ee3
visible: true
source: "../../../resources/master3.png"
width: creditsRectangle.width/5
height: creditsRectangle.width/5
}

Repeater {
model: ["","","consti10","steveatinfincia","rodizio1","befinitv"]

Text {
text: modelData
color: "black"
font.pixelSize: settings.qopenhd_general_font_pixel_size
anchors.horizontalCenter: parent.horizontalCenter

}
}
}

Expand Down Expand Up @@ -140,7 +158,7 @@ Rectangle {
Repeater {
model: ["pilotnbr1", "limitlessgreen", "michell", "roman", "jweijs", "user1321",
"flavio", "hdfpv", "htcohio", "raymond", "yes21", "mjc506", "cq112358",
"steveatinfincia", "norbert", "macdaddyfpv", "ivan"]
"norbert", "macdaddyfpv", "ivan"]

Text {
text: modelData
Expand Down
6 changes: 3 additions & 3 deletions qml/ui/elements/AppSettings.qml
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,9 @@ Settings {
property int vertical_speed_gauge_widget_max: 20


property bool show_wind: false
property bool wind_plane_copter: false //should default to plane
property bool wind_arrow_circle: true
property bool show_wind: true
property bool wind_plane_copter: true //should default to plane
property bool wind_arrow_circle: false
//tumbler value had to be split into two values..
property double wind_tumbler_decimal: 5
property double wind_tumbler_tens: 13
Expand Down

0 comments on commit c47cb62

Please sign in to comment.