Skip to content

Commit

Permalink
Update to version 0.1.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
ifgris committed Oct 9, 2024
1 parent 065eaa9 commit ad60c9a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "local-backup",
"name": "Local Backup",
"version": "0.1.7",
"version": "0.1.8",
"minAppVersion": "0.15.0",
"description": "Automatically creates a local backup of the vault.",
"author": "GC Chen",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-local-backup",
"version": "0.1.7",
"version": "0.1.8",
"description": "Automatically creates a local backup of the vault.",
"main": "main.js",
"scripts": {
Expand Down
6 changes: 4 additions & 2 deletions src/modals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,16 @@ export class NewVersionNotifyModal extends Modal {

onOpen() {
const { contentEl } = this;
const release = "0.1.7";
const release = "0.1.8";

const header = `### New in Local Backup ${release}\n`
const text = `Thank you for using Local Backup!\n`;

const contentDiv = contentEl.createDiv("local-backup-update-modal");
const releaseNotes = [
"1. Now you can create a specific backup file, which won't delete by the plugin, just type: ctrl + p, local backup."
"1. Update default backup function to asynchronous.",
"2. Add `Show console logs` and `Show notifications` button in settings page.",
"3. Contributed by @Lyqed. Add `One Way Backup Settings` in settings page. Now you can output backups to one more path."
]
.join("\n");

Expand Down

0 comments on commit ad60c9a

Please sign in to comment.