From bcf5f81ea9a3eced5dabdd4ae118464503d21a73 Mon Sep 17 00:00:00 2001 From: Davis Riedel Date: Thu, 31 Oct 2024 02:43:37 +0100 Subject: [PATCH] Release v1.0.0-rc.6 --- CHANGELOG.md | 4 ++++ manifest-beta.json | 2 +- package.json | 2 +- src/lib.ts | 4 ++-- versions.json | 3 ++- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18229e4..d63729a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.0.0-rc.6 + +- Fix a bug with reading frontmatter + ## 1.0.0-rc.5 - Add enable / disable commands for all toggle commands diff --git a/manifest-beta.json b/manifest-beta.json index 07e671e..563580e 100644 --- a/manifest-beta.json +++ b/manifest-beta.json @@ -6,7 +6,7 @@ "description": "Typewriter scrolling, highlighting of the current line, dimming of unfocused paragraphs, writing focus and more.", "isDesktopOnly": false, "minAppVersion": "0.15.0", - "version": "1.0.0-rc.5", + "version": "1.0.0-rc.6", "fundingUrl": { "Buy Me a Coffee": "https://www.buymeacoffee.com/davis.riedel", "GitHub Sponsors": "https://github.com/sponsors/davisriedel" diff --git a/package.json b/package.json index 5164b16..3957c3b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-typewriter-mode", - "version": "1.0.0-rc.5", + "version": "1.0.0-rc.6", "obsidianMinAppVersion": "0.15.0", "author": "Davis Riedel", "repository": { diff --git a/src/lib.ts b/src/lib.ts index 186e21b..8f6753f 100644 --- a/src/lib.ts +++ b/src/lib.ts @@ -59,13 +59,13 @@ export default class TypewriterModeLib { ]; } - public async load() { + public async load() { await this.loadSettings(); await this.saveSettings(); // if default settings were loaded this.loadPerWindowProps(); this.loadEditorExtension(); - } + } public loadPerWindowProps() { this.perWindowProps.allBodyClasses = []; diff --git a/versions.json b/versions.json index 73fa055..fe887b8 100644 --- a/versions.json +++ b/versions.json @@ -15,5 +15,6 @@ "1.0.0-rc.2": "0.15.0", "1.0.0-rc.3": "0.15.0", "1.0.0-rc.4": "0.15.0", - "1.0.0-rc.5": "0.15.0" + "1.0.0-rc.5": "0.15.0", + "1.0.0-rc.6": "0.15.0" } \ No newline at end of file