Skip to content

Commit 76590dc

Browse files
committed
Mark version 5.58.0
1 parent 7b63084 commit 76590dc

File tree

7 files changed

+39
-4
lines changed

7 files changed

+39
-4
lines changed

AUTHORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Adán Lobato
1515
Aditya Toshniwal
1616
Adrian Aichner
1717
Adrian Heine
18+
Adrian Kunz
1819
Adrien Bertrand
1920
aeroson
2021
Ahmad Amireh
@@ -332,6 +333,7 @@ Hiroyuki Makino
332333
hitsthings
333334
Hocdoc
334335
Howard
336+
Howard Jing
335337
Hugues Malphettes
336338
Ian Beck
337339
Ian Davies
@@ -348,6 +350,7 @@ ilvalle
348350
Ilya Kharlamov
349351
Ilya Zverev
350352
Ingo Richter
353+
Intervue
351354
Irakli Gozalishvili
352355
Ivan Kurnosov
353356
Ivoah

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 5.58.0 (2020-09-21)
2+
3+
### Bug fixes
4+
5+
Make backspace delete by code point, not glyph.
6+
7+
Suppress flickering focus outline when clicking on scrollbars in Chrome.
8+
9+
Fix a bug that prevented attributes added via `markText` from showing up unless the span also had some other styling.
10+
11+
Suppress cut and paste context menu entries in readonly editors in Chrome.
12+
13+
[placeholder addon](https://codemirror.net/doc/manual.html#addon_placeholder): Update placeholder visibility during composition.
14+
15+
### New features
16+
17+
Make it less cumbersome to style new lint message types.
18+
19+
[vim bindings](https://codemirror.net/demo/vim.html): Support black hole register, `gn` and `gN`
20+
121
## 5.57.0 (2020-08-20)
222

323
### Bug fixes

doc/manual.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<section class=first id=overview>
7171
<h2 style="position: relative">
7272
User manual and reference guide
73-
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.57.0</span>
73+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.58.0</span>
7474
</h2>
7575

7676
<p>CodeMirror is a code-editor component that can be embedded in

doc/releases.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,18 @@ <h2>Release notes and version history</h2>
3030

3131
<h2>Version 5.x</h2>
3232

33+
<p class="rel">21-09-2020: <a href="https://codemirror.net/codemirror-5.58.0.zip">Version 5.58.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Make backspace delete by code point, not glyph.</li>
37+
<li>Suppress flickering focus outline when clicking on scrollbars in Chrome.</li>
38+
<li>Fix a bug that prevented attributes added via <code>markText</code> from showing up unless the span also had some other styling.</li>
39+
<li>Suppress cut and paste context menu entries in readonly editors in Chrome.</li>
40+
<li><a href="https://codemirror.net/doc/manual.html#addon_placeholder">placeholder addon</a>: Update placeholder visibility during composition.</li>
41+
<li>Make it less cumbersome to style new lint message types.</li>
42+
<li><a href="https://codemirror.net/demo/vim.html">vim bindings</a>: Support black hole register, <code>gn</code> and <code>gN</code></li>
43+
</ul>
44+
3345
<p class="rel">20-08-2020: <a href="https://codemirror.net/codemirror-5.57.0.zip">Version 5.57.0</a>:</p>
3446

3547
<ul class="rel-note">

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ <h2>This is CodeMirror</h2>
9999
</div>
100100
</div>
101101
<div class=actionsleft>
102-
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.57.0</a>.<br>
102+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.58.0</a>.<br>
103103
You can see the <a href="https://github.com/codemirror/codemirror" title="Github repository">code</a>,<br>
104104
read the <a href="doc/releases.html">release notes</a>,<br>
105105
or study the <a href="doc/manual.html">user manual</a>.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codemirror",
3-
"version": "5.57.0",
3+
"version": "5.58.0",
44
"main": "lib/codemirror.js",
55
"style": "lib/codemirror.css",
66
"author": {

src/edit/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
6666

6767
addLegacyProps(CodeMirror)
6868

69-
CodeMirror.version = "5.57.0"
69+
CodeMirror.version = "5.58.0"

0 commit comments

Comments
 (0)