Skip to content

Commit

Permalink
0.8.6 (#1835)
Browse files Browse the repository at this point in the history
* feat: Ready to release version 0.8.6

* feat: Updated crossnote to 0.9.1
  • Loading branch information
shd101wyy authored Oct 14, 2023
1 parent 790352e commit 9020541
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 353 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ out
mume
crossnote
.vscode-test-web
yarn-error.log
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.6] - 2023-10-14

This MPE version reduced the VS Code version requirement to 1.70.0 or above.

Updated [crossnote](https://github.com/shd101wyy/crossnote) to version [0.9.0](https://github.com/shd101wyy/crossnote/releases/tag/0.9.0) and [0.9.1](https://github.com/shd101wyy/crossnote/releases/tag/0.9.1).

### New features

- Added two more syntaxes to import files in addition to the `@import` syntax. Please note that these syntaxes only work on new lines. For example, they won't work within list items.
- Use the image syntax but with other file extensions:
```markdown
![](path/to/file.md)
![](path/to/test.py){.line-numbers}
![](path/to/test.js){code_block=true}
```
- Use the wikilink syntax but with other file extensions:
```markdown
![[file]]
![[path/to/test.py]]{.line-numbers}
![[path/to/test.js]]{code_block=true}
```

### Bug fixes

- Fixed a header id generation bug https://github.com/shd101wyy/vscode-markdown-preview-enhanced/issues/1833
- Fixed parsing block attributes from curly bracket when `enableTypographer` is enabled https://github.com/shd101wyy/vscode-markdown-preview-enhanced/issues/1823
- Fixed the bug of not rendering the `@import` file:
- https://github.com/shd101wyy/vscode-markdown-preview-enhanced/issues/1832
- https://github.com/shd101wyy/vscode-markdown-preview-enhanced/issues/1834
- Fixed rendering `vega` and `vega-lite`. Also fixed `interactive=true` attribute for `vega`.

## [0.8.5] - 2023-10-10

Please note this version requires VS Code 1.82.0 or above.
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "markdown-preview-enhanced",
"displayName": "%displayName%",
"version": "0.8.5",
"version": "0.8.6",
"description": "%description%",
"categories": [
"Other"
Expand Down Expand Up @@ -674,14 +674,14 @@
"@types/crypto-js": "^4.1.2",
"@types/vfile": "^3.0.2",
"async-mutex": "^0.4.0",
"crossnote": "^0.8.24",
"crossnote": "^0.9.1",
"crypto-js": "^4.1.1"
},
"devDependencies": {
"@types/cheerio": "0.22.11",
"@types/mocha": "^5.2.5",
"@types/node": "18",
"@types/vscode": "1.82.0",
"@types/node": "16",
"@types/vscode": "1.70.0",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vscode/test-web": "^0.0.45",
Expand All @@ -702,7 +702,7 @@
"webpack-cli": "^5.1.4"
},
"engines": {
"vscode": "^1.82.0"
"vscode": "^1.70.0"
},
"icon": "media/mpe.png"
}
Loading

0 comments on commit 9020541

Please sign in to comment.