1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

updating changelog

This commit is contained in:
cTn 2014-08-30 10:36:55 +02:00
parent 37de8dfefa
commit b1390b0b01
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
<span>xx.xx.2014 - 0.50</span>
<p>
- Small UI revamp for Firmware Flasher<br />
- Added "Flash slowly" mode (bluetooth friendly)<br />
- Bugfixes<br />
</p>
<span>08.18.2014 - 0.49</span>
<p>
- Motor indicators now display signal length in tooltips<br />

View file

@ -52,7 +52,7 @@ TABS.firmware_flasher.initialize = function (callback) {
googleAnalytics.sendEvent('Flashing', 'Firmware', 'local');
$('a.flash_firmware').removeClass('locked');
$('span.progressLabel').text('Loaded Local firmware: (' + parsed_hex.bytes_total + ' bytes)');
$('span.progressLabel').text('Loaded Local Firmware: (' + parsed_hex.bytes_total + ' bytes)');
} else {
$('span.progressLabel').text(chrome.i18n.getMessage('firmwareFlasherHexCorrupted'));
}
@ -77,7 +77,7 @@ TABS.firmware_flasher.initialize = function (callback) {
googleAnalytics.sendEvent('Flashing', 'Firmware', 'online');
$('a.flash_firmware').removeClass('locked');
$('span.progressLabel').text('Loaded Online firmware: (' + parsed_hex.bytes_total + ' bytes)');
$('span.progressLabel').text('Loaded Online Firmware: (' + parsed_hex.bytes_total + ' bytes)');
} else {
$('span.progressLabel').text(chrome.i18n.getMessage('firmwareFlasherHexCorrupted'));
}