Skip to content

Commit

Permalink
Ready release 1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurankv committed Sep 2, 2023
1 parent 2bf1e9a commit 7d6314d
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ See this project's [releases](/../../../releases).

## [Unreleased]

## [1.0.11] - 2023-09-02

### Added

- Setting to disable inline code styling
Expand Down Expand Up @@ -242,7 +244,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.0.10...HEAD
[Unreleased]: /../../compare/1.0.11...HEAD
[1.0.11]: /../../compare/1.0.10...1.0.11
[1.0.10]: /../../compare/1.0.9...1.0.10
[1.0.9]: /../../compare/1.0.8...1.0.9
[1.0.8]: /../../compare/1.0.7...1.0.8
Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"id": "code-styler",
"name": "Code Styler",
"version": "1.0.10",
"version": "1.0.11",
"minAppVersion": "0.15.0",
"description": "Style and customize codeblocks and inline code in both editing mode and reading mode.",
"author": "Mayuran Visakan",
"authorUrl": "https://github.com/mayurankv",
"fundingUrl": "https://www.buymeacoffee.com/mayurankv2",
"isDesktopOnly": false
}
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "code-styler",
"version": "1.0.10",
"version": "1.0.11",
"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": {
Expand Down
3 changes: 2 additions & 1 deletion src/Settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ export const DEFAULT_SETTINGS: CodeStylerSettings = {
excludedLanguages: EXCLUDED_LANGUAGES,
processedCodeblocksWhitelist: WHITELIST_CODEBLOCKS,
redirectLanguages: {},
version: "1.0.10",
version: "1.0.11",
};

export function convertSettings(settings: CodeStylerSettings): CodeStylerSettings {
Expand Down Expand Up @@ -643,6 +643,7 @@ const settingsUpdaters: Record<string,(settings: CodeStylerSettings)=>CodeStyler
delete settings.specialLanguages;
return settings;
}),
"1.0.11": settingsPreserve,
};

// Constants
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@
"1.0.7": "0.15.0",
"1.0.8": "0.15.0",
"1.0.9": "0.15.0",
"1.0.10": "0.15.0"
"1.0.10": "0.15.0",
"1.0.11": "0.15.0"
}

0 comments on commit 7d6314d

Please sign in to comment.