1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-21 15:25:36 +03:00

Remove baseflight references from filenames.

This commit is contained in:
Dominic Clifton 2014-09-14 13:44:23 +01:00
parent 7de9d1099b
commit 066c355170
4 changed files with 8 additions and 4 deletions

View file

@ -1,6 +1,10 @@
<span>09.04.2014 - 0.50.2 cleanflight</span>
<p>
- Update default data filenames.<br />
</p>
<span>09.04.2014 - 0.50.1 cleanflight</span> <span>09.04.2014 - 0.50.1 cleanflight</span>
<p> <p>
- Esure initialised data is not used when configuring aux channels.<br /> - Ensure initialised data is not used when configuring aux channels.<br />
- Update sponsors for cleanflight specific sponsors.<br /> - Update sponsors for cleanflight specific sponsors.<br />
</p> </p>
<span>08.31.2014 - 0.50</span> <span>08.31.2014 - 0.50</span>

View file

@ -47,7 +47,7 @@ function configuration_backup() {
var now = d.getUTCFullYear() + '.' + d.getDate() + '.' + (d.getMonth() + 1) + '.' + d.getHours() + '.' + d.getMinutes(); var now = d.getUTCFullYear() + '.' + d.getDate() + '.' + (d.getMonth() + 1) + '.' + d.getHours() + '.' + d.getMinutes();
// create or load the file // create or load the file
chrome.fileSystem.chooseEntry({type: 'saveFile', suggestedName: 'bf_mw_backup_' + now, accepts: accepts}, function (fileEntry) { chrome.fileSystem.chooseEntry({type: 'saveFile', suggestedName: 'cleanflight_config_' + now, accepts: accepts}, function (fileEntry) {
if (!fileEntry) { if (!fileEntry) {
console.log('No file selected, backup aborted.'); console.log('No file selected, backup aborted.');

View file

@ -1,7 +1,7 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"minimum_chrome_version": "36", "minimum_chrome_version": "36",
"version": "0.50.1", "version": "0.50.2",
"author": "Hydra", "author": "Hydra",
"name": "Cleanflight - Configurator", "name": "Cleanflight - Configurator",
"short_name": "cleanflight", "short_name": "cleanflight",

View file

@ -261,7 +261,7 @@ TABS.logging.initialize = function (callback) {
function prepare_file() { function prepare_file() {
// create or load the file // create or load the file
chrome.fileSystem.chooseEntry({type: 'saveFile', suggestedName: 'bf_data_log', accepts: [{extensions: ['csv']}]}, function(entry) { chrome.fileSystem.chooseEntry({type: 'saveFile', suggestedName: 'cleanflight_data_log', accepts: [{extensions: ['csv']}]}, function(entry) {
if (!entry) { if (!entry) {
console.log('No file selected'); console.log('No file selected');
return; return;