Skip to content

Commit

Permalink
Bump version string to 5.0.1 (#415)
Browse files Browse the repository at this point in the history
* Bump version string to 5.0.1

* ACTUALLY bump version string

* really really fixed version strings

* changed some defaults, and adjusted speed slider slightly, made text a little more intuitive

* see previous

* fixed issue with disabled seated recenter button

Co-authored-by: ykeara <ykeara1@gmail.com>
  • Loading branch information
feilen and ykeara authored Apr 17, 2020
1 parent de460f1 commit 2671bf7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build_scripts/compile_version_string.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0.0-dev
5.0.1-release
2 changes: 1 addition & 1 deletion src/res/qml/PlayspacePage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ MyStackViewPage {
seatedDisableWarningText.visible = !boolEnableSeatedMotion
} else if (MoveCenterTabController.trackingUniverse === 1) {
spaceModeText.text = "Standing"
spaceSeatedRecenter.visible = false
spaceSeatedRecenter.visible = true
offsetsGroupBox.visible = true
rotationGroupBox.visible = true
resetButtonRow.visible = true
Expand Down
6 changes: 3 additions & 3 deletions src/res/qml/rotation_page/redirected/AutoTurnGroupBox.qml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ GroupBox {

label: MyText {
leftPadding: 10
text: "Auto-Turn Settings"
text: "Auto-turn (aka infinite walk)"
bottomPadding: -10
}
background: Rectangle {
Expand Down Expand Up @@ -168,8 +168,8 @@ GroupBox {
MySlider {
id: speedSlider
from: 0
to: 360
stepSize: 1
to: 900
stepSize: 10
value: 90
Layout.fillWidth: true
onPositionChanged: {
Expand Down
2 changes: 1 addition & 1 deletion src/settings/internal/settings_controller.h
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ class SettingsController
DoubleSettingValue{ DoubleSetting::ROTATION_cordDetanglingAngle,
SettingCategory::Rotation,
QtInfo{ "cordDetanglingAngle" },
1000 * advsettings::k_centidegreesToRadians },
1500 * advsettings::k_centidegreesToRadians },
DoubleSettingValue{ DoubleSetting::ROTATION_autoturnMinCordTangle,
SettingCategory::Rotation,
QtInfo{ "autoturnMinCordTangle" },
Expand Down
2 changes: 1 addition & 1 deletion ver/versioncheck.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "major": 5, "minor": 0, "patch": 0, "updateMessage": "", "optionalMessage": "" }
{ "major": 5, "minor": 0, "patch": 1, "updateMessage": "", "optionalMessage": "" }

0 comments on commit 2671bf7

Please sign in to comment.