Skip to content

Commit

Permalink
fix v10.7.2 to run on Big Sur, using for F3 boards running 3.5.7
Browse files Browse the repository at this point in the history
     - see: betaflight#2274
     - bump NW.js to v50.2 to fix MacOS Big Sur instability
     - change status string to "Configurator (NW.js v50.2) "
     - also supress check for newer version of configurator
  • Loading branch information
chipkaye committed Sep 19, 2022
1 parent ee1bf3b commit 21d3fa8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ const LINUX_INSTALL_DIR = '/opt/betaflight';
var gitChangeSetId;

var nwBuilderOptions = {
version: '0.44.2',
// version: '0.44.2',
version: '0.50.2',
files: './dist/**/*',
macIcns: './src/images/bf_icon.icns',
macPlist: { 'CFBundleDisplayName': 'Betaflight Configurator'},
Expand Down
2 changes: 1 addition & 1 deletion locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@
"message": "Firmware"
},
"versionLabelConfigurator": {
"message": "Configurator"
"message": "Configurator (NW.js v50.2) "
},

"notifications_app_just_updated_to_version": {
Expand Down
1 change: 1 addition & 0 deletions src/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,7 @@ function checkForConfiguratorUpdates() {
}

function notifyOutdatedVersion(releaseData) {
return
ConfigStorage.get('checkForConfiguratorUnstableVersions', function (result) {
let showUnstableReleases = false;
if (result.checkForConfiguratorUnstableVersions) {
Expand Down

0 comments on commit 21d3fa8

Please sign in to comment.