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

Fxies & ready for 2.5.4-beta #688

Merged
merged 2 commits into from
Apr 19, 2024
Merged
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 app/util/qopenhd.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class QOpenHD : public QObject
// Tries to mimic android toast as much as possible
//
Q_INVOKABLE void show_toast(QString message,bool long_toast=false);
L_RO_PROP(QString,version_string,set_version_string,"2.5.4-evo-alpha");
L_RO_PROP(QString,version_string,set_version_string,"2.5.4-evo-beta");
//
// Shows a message popup to the user that needs to be clicked away - use sparingly
//
Expand Down
8 changes: 8 additions & 0 deletions qml/ui/configpopup/openhd_settings/LinkQuickPanel.qml
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,14 @@ Rectangle{
}
TabButton{
text: "2.4G"
enabled: {
if(_ohdSystemAir.is_alive && _ohdSystemAir.ohd_platform_type==30){
// X20 does not support 2.4G
return false;
}
return true;

}
}
TabButton{
text: "5.8G"
Expand Down
Loading