Mark version 5.57.0

This commit is contained in:
Marijn Haverbeke 2020-08-20 10:29:36 +02:00
parent 4cfb3a0389
commit 7f525bb74e
7 changed files with 36 additions and 4 deletions

View File

@ -113,6 +113,7 @@ Bert Chang
Bharad
BigBlueHat
Billy Moon
Bin Ni
binny
Bjorn Hansen
B Krishna Chaitanya
@ -313,6 +314,7 @@ Hakan Tunc
Hanno Fellmann
Hans Engel
Hanzhao Deng
Haoran Yu
Harald Schilly
Hardest
Harshvardhan Gupta
@ -329,6 +331,7 @@ hidaiy
Hiroyuki Makino
hitsthings
Hocdoc
Howard
Hugues Malphettes
Ian Beck
Ian Davies
@ -492,6 +495,7 @@ Lorenzo Simionato
Lorenzo Stoakes
Louis Mauchet
Luca Fabbri
Lucas Buchala
Luciano Longo
Luciano Santana
Lu Fangjian
@ -637,6 +641,7 @@ Olivia Ytterbrink
Opender Singh
opl-
Oreoluwa Onatemowo
orionlee
oscar.lofwenhamn
Oskar Segersvärd
ossdev
@ -821,6 +826,7 @@ Tobias Bertelsen
TobiasBg
Todd Berman
Todd Kennedy
tokafew420
Tomas-A
Tomas Varaneckas
Tom Erik Støwer

View File

@ -1,3 +1,19 @@
## 5.57.0 (2020-08-20)
### Bug fixes
Fix issue that broke binding the macOS Command key.
[comment addon](https://codemirror.net/doc/manual.html#addon_comment): Keep selection in front of inserted markers when adding a block comment.
[css mode](https://codemirror.net/mode/css/): Recognize more properties and value names.
[annotatescrollbar addon](https://codemirror.net/doc/manual.html#addon_annotatescrollbar): Don't hide matches in collapsed content.
### New features
[vim bindings](https://codemirror.net/demo/vim.html): Support tag text objects in xml and html modes.
## 5.56.0 (2020-07-20)
### Bug fixes

View File

@ -70,7 +70,7 @@
<section class=first id=overview>
<h2 style="position: relative">
User manual and reference guide
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.56.0</span>
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.57.0</span>
</h2>
<p>CodeMirror is a code-editor component that can be embedded in

View File

@ -30,6 +30,16 @@
<h2>Version 5.x</h2>
<p class="rel">20-08-2020: <a href="https://codemirror.net/codemirror-5.57.0.zip">Version 5.57.0</a>:</p>
<ul class="rel-note">
<li>Fix issue that broke binding the macOS Command key.</li>
<li><a href="https://codemirror.net/doc/manual.html#addon_comment">comment addon</a>: Keep selection in front of inserted markers when adding a block comment.</li>
<li><a href="https://codemirror.net/mode/css/">css mode</a>: Recognize more properties and value names.</li>
<li><a href="https://codemirror.net/doc/manual.html#addon_annotatescrollbar">annotatescrollbar addon</a>: Dont hide matches in collapsed content.</li>
<li><a href="https://codemirror.net/demo/vim.html">vim bindings</a>: Support tag text objects in xml and html modes.</li>
</ul>
<p class="rel">20-07-2020: <a href="https://codemirror.net/codemirror-5.56.0.zip">Version 5.56.0</a>:</p>
<ul class="rel-note">

View File

@ -99,7 +99,7 @@
</div>
</div>
<div class=actionsleft>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.56.0</a>.<br>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.57.0</a>.<br>
You can see the <a href="https://github.com/codemirror/codemirror" title="Github repository">code</a>,<br>
read the <a href="doc/releases.html">release notes</a>,<br>
or study the <a href="doc/manual.html">user manual</a>.

View File

@ -1,6 +1,6 @@
{
"name": "codemirror",
"version": "5.56.0",
"version": "5.57.0",
"main": "lib/codemirror.js",
"style": "lib/codemirror.css",
"author": {

View File

@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
addLegacyProps(CodeMirror)
CodeMirror.version = "5.56.0"
CodeMirror.version = "5.57.0"