Merge branch 'hotfix/0.4.1'
This commit is contained in:
commit
93157f6c46
3 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "better-word-count",
|
||||
"name": "Better Word Count",
|
||||
"version": "0.4.0",
|
||||
"version": "0.4.1",
|
||||
"description": "Counts the words of selected text in the editor.",
|
||||
"author": "Luke Leppan",
|
||||
"authorUrl": "https://lukeleppan.com",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "better-word-count",
|
||||
"version": "0.4.0",
|
||||
"version": "0.4.1",
|
||||
"description": "Counts the words of selected text in the editor.",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -5,7 +5,7 @@ export class BetterWordCountSettings {
|
|||
showCharacters: boolean = true;
|
||||
charactersPrefix: string = "";
|
||||
charactersSuffix: string = " characters ";
|
||||
showSentences: boolean = true;
|
||||
showSentences: boolean = false;
|
||||
sentencesPrefix: string = "";
|
||||
sentencesSuffix: string = " sentences";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue