mirror of
https://github.com/mayurankv/Obsidian-Code-Styler.git
synced 2026-07-22 08:10:29 +00:00
Ready release 1.1.3
This commit is contained in:
parent
0db6e69a2c
commit
e087e6750a
6 changed files with 12 additions and 7 deletions
|
|
@ -20,6 +20,8 @@ See this project's [releases](/../../../releases).
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.1.3] - 2023-11-27
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix reference parsing and added markdown links
|
||||
|
|
@ -286,7 +288,8 @@ See this project's [releases](/../../../releases).
|
|||
- Updated [README](README.md).
|
||||
- Removed `none` language from supported languages since it is used by obsidian for codeblocks without a language
|
||||
|
||||
[Unreleased]: /../../compare/1.1.2...HEAD
|
||||
[Unreleased]: /../../compare/1.1.3...HEAD
|
||||
[1.1.3]: /../../compare/1.1.2...1.1.3
|
||||
[1.1.2]: /../../compare/1.1.1...1.1.2
|
||||
[1.1.1]: /../../compare/1.1.0...1.1.1
|
||||
[1.1.0]: /../../compare/1.1.0...1.1.0
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "code-styler",
|
||||
"name": "Code Styler",
|
||||
"version": "1.1.2",
|
||||
"version": "1.1.3",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Style and customize codeblocks and inline code in both editing mode and reading mode.",
|
||||
"author": "Mayuran Visakan",
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "code-styler",
|
||||
"version": "1.1.2",
|
||||
"version": "1.1.3",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "code-styler",
|
||||
"version": "1.1.2",
|
||||
"version": "1.1.3",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@codemirror/language": "github:lishid/cm-language",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "code-styler",
|
||||
"version": "1.1.2",
|
||||
"version": "1.1.3",
|
||||
"description": "This is a plugin for Obsidian (https://obsidian.md) which lets you style codeblocks and inline code in both editing mode and reading mode.",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -590,7 +590,7 @@ export const DEFAULT_SETTINGS: CodeStylerSettings = {
|
|||
excludedLanguages: EXCLUDED_LANGUAGES,
|
||||
processedCodeblocksWhitelist: WHITELIST_CODEBLOCKS,
|
||||
redirectLanguages: {},
|
||||
version: "1.1.2",
|
||||
version: "1.1.3",
|
||||
};
|
||||
|
||||
export function convertSettings(settings: CodeStylerSettings): CodeStylerSettings {
|
||||
|
|
@ -647,6 +647,7 @@ const settingsUpdaters: Record<string,(settings: CodeStylerSettings)=>CodeStyler
|
|||
"1.1.0": settingsPreserve,
|
||||
"1.1.1": settingsPreserve,
|
||||
"1.1.2": settingsPreserve,
|
||||
"1.1.3": settingsPreserve,
|
||||
};
|
||||
|
||||
// Constants
|
||||
|
|
|
|||
|
|
@ -13,5 +13,6 @@
|
|||
"1.0.11": "0.15.0",
|
||||
"1.1.0": "0.15.0",
|
||||
"1.1.1": "0.15.0",
|
||||
"1.1.2": "0.15.0"
|
||||
"1.1.2": "0.15.0",
|
||||
"1.1.3": "0.15.0"
|
||||
}
|
||||
Loading…
Reference in a new issue