Merge branch 'hotfix/0.4.1' into develop

This commit is contained in:
Luke Leppan 2021-01-19 23:21:00 +02:00
commit bc5b2f82e6
3 changed files with 3 additions and 3 deletions

View file

@ -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",

View file

@ -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": {

View file

@ -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";
}