From 137019ec8dfbc28d04d90cbb2fc7a82c75438525 Mon Sep 17 00:00:00 2001 From: Luke Leppan Date: Tue, 19 Jan 2021 23:19:48 +0200 Subject: [PATCH 1/2] Remove sentence count as default #4 --- src/settings/settings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/settings/settings.ts b/src/settings/settings.ts index 2402f0a..4d3ef8d 100644 --- a/src/settings/settings.ts +++ b/src/settings/settings.ts @@ -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"; } From a8ca3731a7ad800dbb5bbb885404105bac2d0ff7 Mon Sep 17 00:00:00 2001 From: Luke Leppan Date: Tue, 19 Jan 2021 23:20:45 +0200 Subject: [PATCH 2/2] bump --- manifest.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 654117a..0a61cd6 100644 --- a/manifest.json +++ b/manifest.json @@ -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", diff --git a/package.json b/package.json index 778733d..a17bf48 100644 --- a/package.json +++ b/package.json @@ -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": {