diff --git a/CHANGELOG-zh.md b/CHANGELOG-zh.md index b1789a9..e94d89d 100644 --- a/CHANGELOG-zh.md +++ b/CHANGELOG-zh.md @@ -1,3 +1,12 @@ +## [1.1.3](https://github.com/RavenHogWarts/obsidian-ace-code-editor/compare/1.1.2...1.1.3) (2025-06-17) + + +### 🐛 修复 + +* 将 isDesktopOnly 设置为 false 以支持移动端 ([1b8eade](https://github.com/RavenHogWarts/obsidian-ace-code-editor/commit/1b8eade6477790bd0b186285a46510175ba2d99e)) + + + ## [1.1.2](https://github.com/RavenHogWarts/obsidian-ace-code-editor/compare/1.1.1...1.1.2) (2025-06-16) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67d25a0..a81e450 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [1.1.3](https://github.com/RavenHogWarts/obsidian-ace-code-editor/compare/1.1.2...1.1.3) (2025-06-17) + + +### 🐛 Bug Fixes + +* Set isDesktopOnly to false to support mobile devices ([1b8eade](https://github.com/RavenHogWarts/obsidian-ace-code-editor/commit/1b8eade6477790bd0b186285a46510175ba2d99e)) + + + ## [1.1.2](https://github.com/RavenHogWarts/obsidian-ace-code-editor/compare/1.1.1...1.1.2) (2025-06-16) diff --git a/manifest.json b/manifest.json index 29e8b9f..2a67379 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "ace-code-editor", "name": "Ace Code Editor", - "version": "1.1.2", + "version": "1.1.3", "minAppVersion": "1.8.0", "description": "An enhanced code editor using Ace editor, providing syntax highlighting, code folding, and other advanced editing features.", "author": "RavenHogWarts", diff --git a/package.json b/package.json index 44faa3a..ce4de2a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ace-code-editor", - "version": "1.1.2", + "version": "1.1.3", "description": "An enhanced code editor using Ace editor, providing syntax highlighting, code folding, and other advanced editing features.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 64e665e..dd463c1 100644 --- a/versions.json +++ b/versions.json @@ -5,5 +5,6 @@ "1.0.3": "1.8.0", "1.1.0": "1.8.0", "1.1.1": "1.8.0", - "1.1.2": "1.8.0" + "1.1.2": "1.8.0", + "1.1.3": "1.8.0" }