diff --git a/package.json b/package.json index a74de7aa21..d83c062ad1 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/css/tabs/auxiliary.less b/src/css/tabs/auxiliary.less index c00095e646..50fb52d170 100644 --- a/src/css/tabs/auxiliary.less +++ b/src/css/tabs/auxiliary.less @@ -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; diff --git a/src/js/data_storage.js b/src/js/data_storage.js index 05da42a999..8670d40e89 100644 --- a/src/js/data_storage.js +++ b/src/js/data_storage.js @@ -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,