Skip to content

Commit

Permalink
🔖 v2.4.0
Browse files Browse the repository at this point in the history
fix #434, fix #415, fix #430, fix #426, fix #446
fix #237, fix #307
  • Loading branch information
yzhang-gh committed Jun 16, 2019
1 parent 62deb65 commit 319f390
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 35 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,30 @@
### 2.4.0 (2019.06.16)

- **New**: Command `toggleList` (*Note: no default keybinding assigned*) ([#237](https://github.com/yzhang-gh/vscode-markdown/issues/237), [#307](https://github.com/yzhang-gh/vscode-markdown/issues/307))
![toggle list](images/gifs/toggle-list.gif)
- **New**: Support KaTeX macros ([#426](https://github.com/yzhang-gh/vscode-markdown/issues/426)). Thanks, [Pierre (@PierreMarchand20)](https://github.com/PierreMarchand20).

<!-- -->

- **Fix**: Image paths ([#415](https://github.com/yzhang-gh/vscode-markdown/issues/415)).
- **Fix**: Fenced code block checking ([#434](https://github.com/yzhang-gh/vscode-markdown/issues/434)).

<!-- -->

- **Other**: Don't downcase the TOC links ([#312](https://github.com/yzhang-gh/vscode-markdown/issues/312)). Thanks, [Scott Meesseman (@spmeesseman)](https://github.com/spmeesseman).
- **Other**: Command `toggleMath` now cycles through `|` -> `$|$` -> `$$\n|\n$$` -> `$$ | $$` ([#421](https://github.com/yzhang-gh/vscode-markdown/issues/421#issuecomment-493747064)). Thanks, [Li Yiming (@upupming)](https://github.com/upupming).
- **Other**: Don't include KaTeX stylesheets in the exported HTML if no math ([#430](https://github.com/yzhang-gh/vscode-markdown/issues/430)).
- **Other**: Upgrade KaTeX ([#446](https://github.com/yzhang-gh/vscode-markdown/issues/446)).
- **Other**: Better math completions ([PR#470](https://github.com/yzhang-gh/vscode-markdown/pull/470), [PR#471](https://github.com/yzhang-gh/vscode-markdown/pull/471))

---

### 2.3.1 (2019.04.29)

- **Fix**: Option `markdown.extension.print.onFileSave` not respected ([#432](https://github.com/yzhang-gh/vscode-markdown/issues/432)).

---

### 2.3.0 (2019.04.28)

- **New** Prefer unused links for reference link label completions ([#414](https://github.com/yzhang-gh/vscode-markdown/issues/414)). Thanks, [Chris (@alshain)](https://github.com/alshain).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ All you need for Markdown (keyboard shortcuts, table of contents, auto preview a
- Markdown: Toggle code span
- Markdown: Print current document to HTML
- Markdown: Toggle math environment
- Markdown: Toggle unordered list
- Markdown: Toggle list

## Keyboard Shortcuts

Expand Down
Binary file added images/gifs/toggle-list.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 12 additions & 31 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
Expand Up @@ -3,7 +3,7 @@
"displayName": "%ext.displayName%",
"description": "%ext.description%",
"icon": "images/Markdown-mark.png",
"version": "2.3.1",
"version": "2.4.0",
"publisher": "yzhang",
"engines": {
"vscode": "^1.30.2"
Expand Down
3 changes: 2 additions & 1 deletion package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,6 @@
"1.3.0 msg": "Introduce an exciting feature! Auto renumbering ordered list.",
"1.4.0 msg": "Many new features of Markdown-All-in-One v1.4.0",
"1.5.0 msg": "Long time no see. Welcome to Markdown-All-in-One v1.5.0.",
"2.1.0 msg": "Markdown All in One v2.1.0! Paste URL as link, multi-cursor support, and more."
"2.1.0 msg": "Markdown All in One v2.1.0! Paste URL as link, multi-cursor support, and more.",
"2.4.0 msg": "Markdown All in One v2.4.0! New command 'toggleList' and KaTeX macros support."
}
3 changes: 2 additions & 1 deletion package.nls.zh-cn.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,6 @@
"1.3.0 msg": "介绍一个令人兴奋的功能!自动为有序列表重新编号",
"1.4.0 msg": "Markdown-All-in-One v1.4.0 带来很多新功能",
"1.5.0 msg": "好久不见!欢迎使用 Markdown-All-in-One v1.5.0",
"2.1.0 msg": "Markdown All in One v2.1.0! 直接粘贴链接,多光标支持,以及更多新功能"
"2.1.0 msg": "Markdown All in One v2.1.0! 直接粘贴链接,多光标支持,以及更多新功能",
"2.4.0 msg": "Markdown All in One v2.4.0! 新功能「触发列表」,KaTeX 宏支持"
}
2 changes: 2 additions & 0 deletions src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ export function getNewFeatureMsg(version: string) {
return localize("1.5.0 msg");
case '2.1.0':
return localize("2.1.0 msg");
case '2.4.0':
return localize("2.4.0 msg");
}
return undefined;
}
Expand Down

0 comments on commit 319f390

Please sign in to comment.