From d3d9437897f602e22bbe3cdfe737e1630ab57758 Mon Sep 17 00:00:00 2001 From: Axelle Abbadie Date: Tue, 12 May 2026 16:31:00 +0200 Subject: [PATCH] =?UTF-8?q?chore:=20bump=20version=20to=200.0.4=20?= =?UTF-8?q?=E2=80=94=20community=20plugin=20review=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove plugin name from settings heading (obsidianmd/settings-tab/no-manual-html-headings compliance). Sentence case /skip applied for proper nouns (institution names, person names) in academic context. --- main.js | 1 - manifest.json | 2 +- package.json | 4 ++-- versions.json | 3 ++- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/main.js b/main.js index e095178..92041a0 100644 --- a/main.js +++ b/main.js @@ -51,7 +51,6 @@ var PseudObsSettingTab = class extends import_obsidian.PluginSettingTab { display() { const { containerEl } = this; containerEl.empty(); - new import_obsidian.Setting(containerEl).setName("Pseudonymizer tool").setHeading(); new import_obsidian.Setting(containerEl).setName("Dossiers").setHeading(); new import_obsidian.Setting(containerEl).setName("Transcriptions import\xE9es").setDesc("Dossier de destination des transcriptions import\xE9es").addText( (text) => text.setValue(this.plugin.settings.transcriptionsFolder).onChange(async (value) => { diff --git a/manifest.json b/manifest.json index 353a57d..df869a8 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "pseudonymizer-tool", "name": "Pseudonymizer Tool", - "version": "0.0.3", + "version": "0.0.4", "minAppVersion": "1.4.0", "description": "Pseudonymize and correct interactional transcripts (Jefferson, ICOR, SRT, CHAT/CHA). Designed for qualitative researchers in linguistics and conversation analysis.", "author": "Axelle Abbadie", diff --git a/package.json b/package.json index 8acf2cd..dbc4080 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "pseudobsidianization", - "version": "0.0.1", + "name": "pseudonymizer-tool", + "version": "0.0.4", "description": "Plugin Obsidian de pseudonymisation de transcriptions", "author": "Axelle Abbadie", "homepage": "https://cv.hal.science/axelle-abbadie/", diff --git a/versions.json b/versions.json index 90a1ea2..6d12804 100644 --- a/versions.json +++ b/versions.json @@ -1,5 +1,6 @@ { "0.0.1": "1.4.0", "0.0.2": "1.4.0", - "0.0.3": "1.4.0" + "0.0.3": "1.4.0", + "0.0.4": "1.4.0" }