Skip to content
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 package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "betaflight-configurator",
"productName": "Betaflight Configurator",
"description": "Crossplatform configuration tool for Betaflight flight control system.",
"version": "11.0.0",
"version": "10.10.1",
"main": "main.html",
"chromium-args": "--disable-features=nw2",
"scripts": {
Expand Down
65 changes: 33 additions & 32 deletions src/css/tabs/auxiliary.less
Original file line number Diff line number Diff line change
Expand Up @@ -63,46 +63,47 @@
border-radius: 3px;
}
}
.mode.on {
.info {
background: var(--accent);
color: black;
}
&:nth-child(odd) {
.modes {
width: 100%;
}
.mode {
background-color: #f9f9f9;
vertical-align: top;
display: flex;

&.on {
.info {
background: var(--accent);
background: var(--accent) !important;
color: black;
}
&:nth-child(odd) {
.info {
background: var(--accent) !important;
}
}
}
}
.mode.off {
.info {
background: #828885;
color: white;
}
&:nth-child(odd) {
&.off {
.info {
background: #828885;
background: #828885 !important;
color: white;
}
&:nth-child(odd) {
.info {
background: #828885 !important;
}
}
}
}
.mode.disabled {
.info {
background: var(--error);
color: var(--quietText);
}
&:nth-child(odd) {
&.disabled {
.info {
background: var(--error);
background: var(--error) !important;
color: var(--quietText);
}
}
}
.modes {
width: 100%;
}
.mode {
background-color: #f9f9f9;
vertical-align: top;
display: flex;
&:nth-child(odd) {
.info {
background: var(--error) !important;
}
}
}
.name {
min-height: 80px;
padding: 5px 0;
Expand Down
2 changes: 1 addition & 1 deletion src/js/data_storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const CONFIGURATOR = {
// all versions are specified and compared using semantic versioning http://semver.org/
API_VERSION_ACCEPTED: API_VERSION_1_41,
API_VERSION_MIN_SUPPORTED_BACKUP_RESTORE: API_VERSION_1_41,
API_VERSION_MAX_SUPPORTED: API_VERSION_1_47,
API_VERSION_MAX_SUPPORTED: API_VERSION_1_46,

connectionValid: false,
connectionValidCliOnly: false,
Expand Down