Skip to content

Commit b542569

Browse files
authored
10.10-maintenance update - including background colour activation cherry pick (#3966)
Revert version change, and add 10.10.1 - Fix background color activation in modes tab in dark mode (#3961) (cherry picked from commit 66e822d)
1 parent 8ae2b05 commit b542569

File tree

3 files changed

+35
-34
lines changed

3 files changed

+35
-34
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "betaflight-configurator",
33
"productName": "Betaflight Configurator",
44
"description": "Crossplatform configuration tool for Betaflight flight control system.",
5-
"version": "11.0.0",
5+
"version": "10.10.1",
66
"main": "main.html",
77
"chromium-args": "--disable-features=nw2",
88
"scripts": {

src/css/tabs/auxiliary.less

Lines changed: 33 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -63,46 +63,47 @@
6363
border-radius: 3px;
6464
}
6565
}
66-
.mode.on {
67-
.info {
68-
background: var(--accent);
69-
color: black;
70-
}
71-
&:nth-child(odd) {
66+
.modes {
67+
width: 100%;
68+
}
69+
.mode {
70+
background-color: #f9f9f9;
71+
vertical-align: top;
72+
display: flex;
73+
74+
&.on {
7275
.info {
73-
background: var(--accent);
76+
background: var(--accent) !important;
77+
color: black;
78+
}
79+
&:nth-child(odd) {
80+
.info {
81+
background: var(--accent) !important;
82+
}
7483
}
7584
}
76-
}
77-
.mode.off {
78-
.info {
79-
background: #828885;
80-
color: white;
81-
}
82-
&:nth-child(odd) {
85+
&.off {
8386
.info {
84-
background: #828885;
87+
background: #828885 !important;
88+
color: white;
89+
}
90+
&:nth-child(odd) {
91+
.info {
92+
background: #828885 !important;
93+
}
8594
}
8695
}
87-
}
88-
.mode.disabled {
89-
.info {
90-
background: var(--error);
91-
color: var(--quietText);
92-
}
93-
&:nth-child(odd) {
96+
&.disabled {
9497
.info {
95-
background: var(--error);
98+
background: var(--error) !important;
99+
color: var(--quietText);
96100
}
97-
}
98-
}
99-
.modes {
100-
width: 100%;
101-
}
102-
.mode {
103-
background-color: #f9f9f9;
104-
vertical-align: top;
105-
display: flex;
101+
&:nth-child(odd) {
102+
.info {
103+
background: var(--error) !important;
104+
}
105+
}
106+
}
106107
.name {
107108
min-height: 80px;
108109
padding: 5px 0;

src/js/data_storage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const CONFIGURATOR = {
1313
// all versions are specified and compared using semantic versioning http://semver.org/
1414
API_VERSION_ACCEPTED: API_VERSION_1_41,
1515
API_VERSION_MIN_SUPPORTED_BACKUP_RESTORE: API_VERSION_1_41,
16-
API_VERSION_MAX_SUPPORTED: API_VERSION_1_47,
16+
API_VERSION_MAX_SUPPORTED: API_VERSION_1_46,
1717

1818
connectionValid: false,
1919
connectionValidCliOnly: false,

0 commit comments

Comments
 (0)