From b9a5d8bcf98836e277a02b797792e235bd796d38 Mon Sep 17 00:00:00 2001 From: Patrik Lindefors Date: Thu, 19 May 2022 18:54:53 +0200 Subject: [PATCH] version 1.0.0 --- main.ts | 2 +- manifest.json | 4 ++-- package.json | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/main.ts b/main.ts index b38717f..54321d0 100644 --- a/main.ts +++ b/main.ts @@ -70,7 +70,7 @@ class CodeBlockTab extends PluginSettingTab { display(): void { const { containerEl } = this; containerEl.empty(); - containerEl.createEl('h2', { text: 'Settings for code-block plugin' }); + containerEl.createEl('h2', { text: 'Select active programming languages' }); hljs.listLanguages().sort().forEach((language: string) => { const index = this.plugin.settings.languages.indexOf(language); diff --git a/manifest.json b/manifest.json index db1bf95..152152b 100644 --- a/manifest.json +++ b/manifest.json @@ -1,9 +1,9 @@ { "id": "code-block-plugin", - "name": "Code Block Plugin", + "name": "Code Block", "version": "1.0.0", "minAppVersion": "0.12.0", - "description": "This plugin converts selected text to code blocks with automatic language detection.", + "description": "This plugin converts selected text into code blocks with automatic language detection.", "author": "Patrik Lindefors", "authorUrl": "https://github.com/paddan/code-block-plugin", "isDesktopOnly": false diff --git a/package.json b/package.json index c0dd5ac..6f2dfca 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "obsidian-sample-plugin", - "version": "1.0.1", - "description": "This is a sample plugin for Obsidian (https://obsidian.md)", + "name": "code-block-plugin", + "version": "1.0.0", + "description": "This plugin converts selected text into code blocks with automatic language detection.", "main": "main.js", "scripts": { "dev": "node esbuild.config.mjs",