Merge branch 'release/3.6.1' into develop

This commit is contained in:
Baptiste Grob
2021-03-03 14:53:49 +01:00
3 changed files with 3 additions and 3 deletions

View File

@@ -18,5 +18,5 @@ export interface Bridge {
onMajorDataChange(): void;
onInitialDataLoad(): void;
onSearch(text?: string): void;
downloadBackup(): Promise<void>;
downloadBackup(): void | Promise<void>;
}

View File

@@ -156,7 +156,7 @@ export class WebApplication extends SNApplication {
this.applicationElement.append(el);
}
downloadBackup(): Promise<void> {
downloadBackup(): void | Promise<void> {
return this.bridge.downloadBackup();
}

View File

@@ -1,6 +1,6 @@
{
"name": "standard-notes-web",
"version": "3.6.0",
"version": "3.6.1",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",