Merge branch 'espruino:master' into master

master
smekras 2022-03-15 16:29:45 +01:00 committed by GitHub
commit e765dfc27c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View File

@ -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

@ -1 +1 @@
Subproject commit 05f97e6ade4605ac7a6105def52a34280f4f0c4d
Subproject commit c307754532cf0aa675945f98be46fdc9aa5d96af