Skip to content

Commit

Permalink
Release v1.0.0-rc.6
Browse files Browse the repository at this point in the history
  • Loading branch information
davisriedel committed Nov 1, 2024
1 parent 71f587e commit bcf5f81
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion manifest-beta.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
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-typewriter-mode",
"version": "1.0.0-rc.5",
"version": "1.0.0-rc.6",
"obsidianMinAppVersion": "0.15.0",
"author": "Davis Riedel",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions src/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [];
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit bcf5f81

Please sign in to comment.