Merge branch 'hotfix/0.8.1'
This commit is contained in:
commit
ce45997d64
4 changed files with 4 additions and 6 deletions
|
@ -8,8 +8,6 @@ This plugin is the same as the built-in **Word Count** plugin, except when you s
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
**Better Word Count may not work with the new Live-Preview Editor. Switch to the legacy editor in Obsidian Settings > Editor > Use Legacy Editor.**
|
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- Allows you to store statistics about your vault.
|
- Allows you to store statistics about your vault.
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "better-word-count",
|
"id": "better-word-count",
|
||||||
"name": "Better Word Count",
|
"name": "Better Word Count",
|
||||||
"version": "0.8.0",
|
"version": "0.8.1",
|
||||||
"description": "Counts the words of selected text in the editor.",
|
"description": "Counts the words of selected text in the editor.",
|
||||||
"author": "Luke Leppan",
|
"author": "Luke Leppan",
|
||||||
"authorUrl": "https://lukeleppan.com",
|
"authorUrl": "https://lukeleppan.com",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "better-word-count",
|
"name": "better-word-count",
|
||||||
"version": "0.8.0",
|
"version": "0.8.1",
|
||||||
"description": "Counts the words of selected text in the editor.",
|
"description": "Counts the words of selected text in the editor.",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -29,11 +29,11 @@ export default class BetterWordCount extends Plugin {
|
||||||
// }
|
// }
|
||||||
|
|
||||||
onload() {
|
onload() {
|
||||||
this.createCMExtension();
|
|
||||||
|
|
||||||
let statusBarEl = this.addStatusBarItem();
|
let statusBarEl = this.addStatusBarItem();
|
||||||
BetterWordCount.statusBar = new StatusBar(statusBarEl);
|
BetterWordCount.statusBar = new StatusBar(statusBarEl);
|
||||||
|
|
||||||
|
this.createCMExtension();
|
||||||
|
|
||||||
// this.settings = Object.assign(DEFAULT_SETTINGS, await this.loadData());
|
// this.settings = Object.assign(DEFAULT_SETTINGS, await this.loadData());
|
||||||
// this.addSettingTab(new BetterWordCountSettingsTab(this.app, this));
|
// this.addSettingTab(new BetterWordCountSettingsTab(this.app, this));
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue