diff --git a/main.ts b/main.ts index e050800..cc6fd2a 100644 --- a/main.ts +++ b/main.ts @@ -614,7 +614,6 @@ export default class DateCalcPlugin extends Plugin { this.settings = Object.assign({}, DEFAULT_SETTINGS, await this.loadData()); if (this.settings.debug) console.log("[date-calc] loaded"); - new Notice("Date Calc loaded (Live Preview + Reading)"); // Register Live Preview editor extension this.registerEditorExtension(dateCalcLivePreview(this.app, () => this.settings)); diff --git a/manifest.json b/manifest.json index 3f96b9f..e5be500 100644 --- a/manifest.json +++ b/manifest.json @@ -3,9 +3,8 @@ "name": "Date calculator", "version": "1.0.0", "minAppVersion": "0.15.0", - "description": "Demonstrates some of the capabilities of the Obsidian API.", - "author": "Obsidian", - "authorUrl": "https://obsidian.md", - "fundingUrl": "https://obsidian.md/pricing", + "description": "Calculate ages, countdowns, and date differences dynamically in your notes using inline code or fenced blocks.", + "author": "Olivier Legendre", + "authorUrl": "https://github.com/thelegend09", "isDesktopOnly": false } \ No newline at end of file diff --git a/package.json b/package.json index 1725537..1056d60 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "obsidian-sample-plugin", + "name": "date-calculator", "version": "1.0.0", - "description": "This is a sample plugin for Obsidian (https://obsidian.md)", + "description": "Calculate ages, countdowns, and date differences dynamically in your notes using inline code or fenced blocks.", "main": "main.js", "scripts": { "dev": "node esbuild.config.mjs", diff --git a/styles.css b/styles.css index ec5cc3d..c2b5d7d 100644 --- a/styles.css +++ b/styles.css @@ -3,5 +3,5 @@ Date Calc Plugin Styles */ .date-calc-inline { - color: var(--text-accent); + /* color: var(--text-accent); */ } \ No newline at end of file