Skip to content

Commit

Permalink
Mark version 5.58.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Sep 21, 2020
1 parent 7b63084 commit 76590dc
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 4 deletions.
3 changes: 3 additions & 0 deletions AUTHORS
Expand Up @@ -15,6 +15,7 @@ Adán Lobato
Aditya Toshniwal
Adrian Aichner
Adrian Heine
Adrian Kunz
Adrien Bertrand
aeroson
Ahmad Amireh
Expand Down Expand Up @@ -332,6 +333,7 @@ Hiroyuki Makino
hitsthings
Hocdoc
Howard
Howard Jing
Hugues Malphettes
Ian Beck
Ian Davies
Expand All @@ -348,6 +350,7 @@ ilvalle
Ilya Kharlamov
Ilya Zverev
Ingo Richter
Intervue
Irakli Gozalishvili
Ivan Kurnosov
Ivoah
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,23 @@
## 5.58.0 (2020-09-21)

### Bug fixes

Make backspace delete by code point, not glyph.

Suppress flickering focus outline when clicking on scrollbars in Chrome.

Fix a bug that prevented attributes added via `markText` from showing up unless the span also had some other styling.

Suppress cut and paste context menu entries in readonly editors in Chrome.

[placeholder addon](https://codemirror.net/doc/manual.html#addon_placeholder): Update placeholder visibility during composition.

### New features

Make it less cumbersome to style new lint message types.

[vim bindings](https://codemirror.net/demo/vim.html): Support black hole register, `gn` and `gN`

## 5.57.0 (2020-08-20)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion doc/manual.html
Expand Up @@ -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.57.0</span>
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.58.0</span>
</h2>

<p>CodeMirror is a code-editor component that can be embedded in
Expand Down
12 changes: 12 additions & 0 deletions doc/releases.html
Expand Up @@ -30,6 +30,18 @@ <h2>Release notes and version history</h2>

<h2>Version 5.x</h2>

<p class="rel">21-09-2020: <a href="https://codemirror.net/codemirror-5.58.0.zip">Version 5.58.0</a>:</p>

<ul class="rel-note">
<li>Make backspace delete by code point, not glyph.</li>
<li>Suppress flickering focus outline when clicking on scrollbars in Chrome.</li>
<li>Fix a bug that prevented attributes added via <code>markText</code> from showing up unless the span also had some other styling.</li>
<li>Suppress cut and paste context menu entries in readonly editors in Chrome.</li>
<li><a href="https://codemirror.net/doc/manual.html#addon_placeholder">placeholder addon</a>: Update placeholder visibility during composition.</li>
<li>Make it less cumbersome to style new lint message types.</li>
<li><a href="https://codemirror.net/demo/vim.html">vim bindings</a>: Support black hole register, <code>gn</code> and <code>gN</code></li>
</ul>

<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">
Expand Down
2 changes: 1 addition & 1 deletion index.html
Expand Up @@ -99,7 +99,7 @@ <h2>This is CodeMirror</h2>
</div>
</div>
<div class=actionsleft>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.57.0</a>.<br>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.58.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>.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "codemirror",
"version": "5.57.0",
"version": "5.58.0",
"main": "lib/codemirror.js",
"style": "lib/codemirror.css",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/edit/main.js
Expand Up @@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"

addLegacyProps(CodeMirror)

CodeMirror.version = "5.57.0"
CodeMirror.version = "5.58.0"

0 comments on commit 76590dc

Please sign in to comment.