Skip to content

Commit

Permalink
Merge branch 'release/0.18.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticicestudio committed Jul 14, 2021
2 parents e5836ab + 78b2273 commit a070016
Show file tree
Hide file tree
Showing 4 changed files with 71 additions and 2 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,38 @@

<!--lint disable no-duplicate-headings no-duplicate-headings-in-section-->

# 0.18.0

![Release Date: 2021-07-14](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2021-04-14&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.18.0&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-visual-studio-code/projects/29) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.18.0&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-visual-studio-code/milestone/25)

[Show all commits][gh-compare-tag-v0.17.1_v0.18.0]

This release version includes features introduced in [VS Code version 1.58][vsc-rln-1.58].

### Features

<details>
<summary><strong><em>TextMate</em> rules for Markdown math formula syntax highlighting</strong> — #221 ⇄ #222 (⊶ 60733483)</summary>

[VS Code 1.58][vsc-rln-1.58] (June 2021) introduced [syntax highlighting for Markdown math formulas][vsc-rln-1.58#md_math_hl]. To adapt the coloring to Nord's style new _TextMate_ rules with the following scopes have been added:

- `text.html.markdown constant.character.math.tex` — targets constants like `\displaystyle` and `\left`.
- `text.html.markdown constant.character.math.tex` — targets `$$` definition markers.
- `text.html.markdown punctuation.definition.function.math.tex` — targets the `\` (backslash) function definition marker.
- `text.html.markdown punctuation.math.operator.latex` — targets operators like `=`.

<h3 align="center">Before</h3>
<div align="center">
<img src="https://user-images.githubusercontent.com/7836623/125685322-3fd170ae-8927-44e3-ab3e-bd5e062cc1de.png" width="75%" />
</div>

<h3 align="center">After</h3>
<div align="center">
<img src="https://user-images.githubusercontent.com/7836623/125685315-d03b4719-4957-44c5-bb1e-674889a063cc.png" width="75%" />
</div>

</details>

# 0.17.1

![Release Date: 2021-06-23](https://img.shields.io/static/v1.svg?style=flat-square&label=Release%20Date&message=2021-06-23&colorA=4c566a&colorB=88c0d0) [![Project Board](https://img.shields.io/static/v1.svg?style=flat-square&label=Project%20Board&message=0.17.1&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-visual-studio-code/projects/28) [![Milestone](https://img.shields.io/static/v1.svg?style=flat-square&label=Milestone&message=0.17.1&colorA=4c566a&colorB=88c0d0)](https://github.com/arcticicestudio/nord-visual-studio-code/milestone/24)
Expand Down Expand Up @@ -1417,3 +1449,9 @@ Detailed information about features, supported languages and install instruction
<!-- v0.17.1 -->

[gh-compare-tag-v0.17.0_v0.17.1]: https://github.com/arcticicestudio/nord-visual-studio-code/compare/v0.17.0...v0.17.1

<!-- v0.18.0 -->

[gh-compare-tag-v0.17.1_v0.18.0]: https://github.com/arcticicestudio/nord-visual-studio-code/compare/v0.17.1...v0.18.0
[vsc-rln-1.58]: https://code.visualstudio.com/updates/v1_58
[vsc-rln-1.58#md_math_hl]: https://code.visualstudio.com/updates/v1_58#_markdown-math-formula-syntax-highlighting
2 changes: 1 addition & 1 deletion 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 @@ -2,7 +2,7 @@
"name": "nord-visual-studio-code",
"displayName": "Nord",
"description": "An arctic, north-bluish clean and elegant Visual Studio Code theme.",
"version": "0.17.1",
"version": "0.18.0",
"publisher": "arcticicestudio",
"author": {
"name": "Arctic Ice Studio",
Expand Down
31 changes: 31 additions & 0 deletions themes/nord-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -1095,6 +1095,37 @@
"foreground": "#616E88"
}
},
{
"name": "[Markdown] Markup Math Constant",
"scope": "text.html.markdown constant.character.math.tex",
"settings": {
"foreground": "#81A1C1"
}
},
{
"name": "[Markdown] Markup Math Definition Marker",
"scope": [
"text.html.markdown punctuation.definition.math.begin",
"text.html.markdown punctuation.definition.math.end"
],
"settings": {
"foreground": "#5E81AC"
}
},
{
"name": "[Markdown] Markup Math Function Definition Marker",
"scope": "text.html.markdown punctuation.definition.function.math.tex",
"settings": {
"foreground": "#88C0D0"
}
},
{
"name": "[Markdown] Markup Math Operator",
"scope": "text.html.markdown punctuation.math.operator.latex",
"settings": {
"foreground": "#81A1C1"
}
},
{
"name": "[Markdown] Punctuation Definition Heading",
"scope": "text.html.markdown punctuation.definition.heading",
Expand Down

0 comments on commit a070016

Please sign in to comment.