From eb3f990fd943207e47e302d037a410a28353ff52 Mon Sep 17 00:00:00 2001 From: Guilherme Cattani Date: Sun, 6 Apr 2025 19:40:53 +0200 Subject: [PATCH] Fix casing on modal, remove header from settings --- manifest.json | 4 ++-- src/modal.ts | 2 +- src/settings.ts | 1 - 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/manifest.json b/manifest.json index e204d6d..7a497d4 100644 --- a/manifest.json +++ b/manifest.json @@ -1,10 +1,10 @@ { "id": "countdown-to", "name": "Countdown To", - "version": "1.3.0", + "version": "1.3.1", "minAppVersion": "0.15.0", "description": "Create countdown progress bars in your notes", "author": "Gui Cattani", - "authorUrl": "https://github.com/guicattani/countdown-to", + "authorUrl": "https://github.com/guicattani/", "isDesktopOnly": false } diff --git a/src/modal.ts b/src/modal.ts index 9107374..3c4603f 100644 --- a/src/modal.ts +++ b/src/modal.ts @@ -4,7 +4,7 @@ export class LuxonFormatHelpModal extends Modal { onOpen() { const { contentEl } = this; - contentEl.createEl('h2', { text: 'Info Format Help' }); + contentEl.createEl('h2', { text: 'Info format help' }); contentEl.createEl('h3', { text: 'Placeholders' }); const placeholdersList = contentEl.createEl('ul'); diff --git a/src/settings.ts b/src/settings.ts index 3e99f0f..78918f6 100644 --- a/src/settings.ts +++ b/src/settings.ts @@ -39,7 +39,6 @@ export class CountdownToSettingTab extends PluginSettingTab { display(): void { const { containerEl } = this; containerEl.empty(); - containerEl.createEl('h2', { text: 'Countdown To Settings' }); new Setting(containerEl).setName('Bar types').setHeading(); new Setting(containerEl)