diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 8fae660e..8f1944be 100755 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -62,6 +62,9 @@ "tabLanding": { "message": "Welcome" }, + "tabHelp": { + "message": "Documentation & Support" + }, "tabSetup": { "message": "Setup" @@ -210,6 +213,12 @@ "defaultWelcomeText": { "message": "Welcome to Cleanflight - Configurator, a utility designed to simplify updating, configuring and tuning of your flight controller.

The application supports all hardware that can run cleanflight (sparky, cc3d, acro naze, naze, afromini, flip32, flip32+, cjmcu, chebuzz f3, stm32f3discovery, naze32pro, etc)

The firmware source code can be downloaded from here
The newest binary firmware image is available here

Latest CP210x Drivers can be downloaded from here
" }, + "defaultContributingHead": { + "message": "Contributing" + }, + "defaultContributingText": { + "message": "If you would like to help make Cleanflight even better you can help in many ways, including:
" + }, "defaultChangelogHead": { "message": "Configurator - Changelog" }, diff --git a/changelog.html b/changelog.html index d6169581..6a845e5a 100644 --- a/changelog.html +++ b/changelog.html @@ -1,3 +1,7 @@ +2015.02.27 - 0.62.1 - cleanflight +

+ - Minor bug fixes.
+

2015.02.26 - 0.62.0 - cleanflight

- Add flight indicators to setup screen tab.
diff --git a/js/gui.js b/js/gui.js index 89fab7d7..8e52424c 100644 --- a/js/gui.js +++ b/js/gui.js @@ -15,7 +15,8 @@ var GUI_control = function () { this.timeout_array = []; this.defaultAllowedTabsWhenDisconnected = [ 'landing', - 'firmware_flasher' + 'firmware_flasher', + 'help' ]; this.defaultAllowedTabsWhenConnected = [ 'adjustments', diff --git a/js/msp.js b/js/msp.js index 152611c8..459222e3 100644 --- a/js/msp.js +++ b/js/msp.js @@ -655,7 +655,7 @@ var MSP = { for (var i = 0; i < 8; i ++) { var channelIndex = data.getUint8(i); if (channelIndex < 255) { - SERVO_CONFIG[i].indexOfChannelToForward; + SERVO_CONFIG[i].indexOfChannelToForward = channelIndex; } else { SERVO_CONFIG[i].indexOfChannelToForward = undefined; } diff --git a/main.css b/main.css index e070d7bc..ba274571 100755 --- a/main.css +++ b/main.css @@ -44,7 +44,7 @@ input[type="number"]::-webkit-inner-spin-button { bottom: 40px; left: 0; right: 0; - z-index: 1; + z-index: -1; overflow: hidden; background-image: url("images/light-wide-1.svg"); background-repeat: no-repeat; diff --git a/main.html b/main.html index e7afaf49..fb41a0eb 100755 --- a/main.html +++ b/main.html @@ -11,6 +11,7 @@ + @@ -57,6 +58,7 @@ + @@ -133,6 +135,7 @@