diff --git a/main.js b/main.js index d0bb09d..22c728d 100644 --- a/main.js +++ b/main.js @@ -1101,7 +1101,7 @@ function downloadnotes() zip.generateAsync({type:"blob"}) .then(function(content) { - saveAs(content, "notes.zip"); + saveAs(content, "notes " + timestamp() + " " + currentvault + ".zip"); }); } @@ -2516,7 +2516,7 @@ function mainkeydownhandler() function setwindowtitle() { - document.title = currentnote.title; + document.title = (currenttag ? currenttag + "\\": "") + currentnote.title; } function ontitlechange()