Merge branch 'espruino:master' into master
commit
e765dfc27c
|
|
@ -7,7 +7,10 @@ function bangleDownload() {
|
|||
Progress.show({title:"Scanning...",sticky:true});
|
||||
var normalFiles, storageFiles;
|
||||
console.log("Listing normal files...");
|
||||
Comms.listFiles({sf:false}).then(f => {
|
||||
Comms.reset()
|
||||
.then(() => Comms.showMessage("Backing up..."))
|
||||
.then(() => Comms.listFiles({sf:false}))
|
||||
.then(f => {
|
||||
normalFiles = f;
|
||||
console.log(" - "+f.join(","));
|
||||
console.log("Listing StorageFiles...");
|
||||
|
|
@ -38,8 +41,9 @@ function bangleDownload() {
|
|||
});
|
||||
});
|
||||
}
|
||||
console.log("Listing StorageFiles...");
|
||||
return promise;
|
||||
}).then(() => {
|
||||
return Comms.showMessage(Const.MESSAGE_RELOAD);
|
||||
}).then(() => {
|
||||
return zip.generateAsync({type:"blob"});
|
||||
}).then(content => {
|
||||
|
|
|
|||
2
core
2
core
|
|
@ -1 +1 @@
|
|||
Subproject commit 05f97e6ade4605ac7a6105def52a34280f4f0c4d
|
||||
Subproject commit c307754532cf0aa675945f98be46fdc9aa5d96af
|
||||
Loading…
Reference in New Issue