From 0318446f25f37383fef68a8b54627c11643e52b9 Mon Sep 17 00:00:00 2001 From: Jun Young Bang Date: Thu, 18 Dec 2025 17:51:34 +0900 Subject: [PATCH] update readme and version number --- README.md | 5 +++-- manifest.json | 2 +- package-lock.json | 4 ++-- package.json | 2 +- versions.json | 3 ++- 5 files changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index fa8c9fb..5017459 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,17 @@ # Remember Code Block Language -Ever find yourself typing the same language name over and over when creating code blocks? This plugin remembers the last language you used and automatically suggests it the next time you create a code block. +This plugin remembers the last language you used and automatically add it to the code block the next time you create a code block. Just start typing a code block (```) and it'll automatically insert your last used language. You can also set a default language in settings if you tend to use one language more than others. ## Features - Automatically remembers your last used code block language -- Auto-injects the language when you type a code block (can be disabled in settings) - Command to insert a code block with the remembered language - Customizable default language ## Installation Install from the Community Plugins browser in Obsidian, or manually install by copying `main.js`, `manifest.json` to your vault's `.obsidian/plugins/remember-code-block-lang/` folder. + + diff --git a/manifest.json b/manifest.json index e4a4cde..1b86742 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "remember-code-block-lang", "name": "Remember Code Block Language", - "version": "1.0.4", + "version": "1.0.5", "minAppVersion": "0.15.0", "description": "Remember the language of the last code block you used and automatically insert it next time.", "author": "Junyoung Bang", diff --git a/package-lock.json b/package-lock.json index bbaaae0..bab5a02 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "remember-code-block-lang", - "version": "1.0.2", + "version": "1.0.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "remember-code-block-lang", - "version": "1.0.2", + "version": "1.0.5", "license": "MIT", "devDependencies": { "@types/node": "^16.11.6", diff --git a/package.json b/package.json index 25c1f83..0dde357 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "remember-code-block-lang", - "version": "1.0.2", + "version": "1.0.5", "description": "Remember the language of the last code block you used and automatically insert it next time", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 26382a1..cee3416 100644 --- a/versions.json +++ b/versions.json @@ -1,3 +1,4 @@ { - "1.0.0": "0.15.0" + "1.0.0": "0.15.0", + "1.0.5": "0.15.0" }