Remove baseflight references from filenames.

10.3.x-maintenance
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>
<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 />
</p>
<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();
// 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) {
console.log('No file selected, backup aborted.');

View File

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

View File

@ -261,7 +261,7 @@ TABS.logging.initialize = function (callback) {
function prepare_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) {
console.log('No file selected');
return;