Skip to content

Commit

Permalink
Mark version 5.65.5
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed May 30, 2022
1 parent 1c58686 commit b6798cc
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 4 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ Kim-Anh Tran
Klaus Silveira
Koh Zi Han, Cliff
komakino
Konrad Zapotoczny
Konstantin Chernenko
Konstantin Lopuhin
koops
Expand Down Expand Up @@ -539,6 +540,7 @@ Lu Fangjian
Łukasz Wielgus
Luke Browning
Luke Granger-Brown
Luke Haas
Luke Stagner
lynschinzer
M1cha
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 5.65.5 (2022-05-30)

### Bug fixes

Work around a bug in Chrome 102 that caused wheel scrolling of the editor to constantly stop.

[search addon](https://codemirror.net/demo/search.html): Make sure the search field has an accessible label.

[comment addon](https://codemirror.net/doc/manual.html#addon_comment): Preserve indentation on otherwise empty lines when indenting.

## 5.65.4 (2022-05-20)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion doc/manual.html
Original file line number Diff line number Diff line change
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.65.4</span>
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.65.5</span>
</h2>

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

<h2>Version 5.x</h2>

<p class="rel">30-05-2022: <a href="https://codemirror.net/codemirror-5.65.5.zip">Version 5.65.5</a>:</p>

<ul class="rel-note">
<li>Work around a bug in Chrome 102 that caused wheel scrolling of the editor to constantly stop.</li>
<li><a href="https://codemirror.net/demo/search.html">search addon</a>: Make sure the search field has an accessible label.</li>
<li><a href="https://codemirror.net/doc/manual.html#addon_comment">comment addon</a>: Preserve indentation on otherwise empty lines when indenting.</li>
</ul>

<p class="rel">20-05-2022: <a href="https://codemirror.net/codemirror-5.65.4.zip">Version 5.65.4</a>:</p>

<ul class="rel-note">
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ <h2>This is CodeMirror</h2>
</div>
</div>
<div class=actionsleft>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.65.4</a>.<br>
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.65.5</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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codemirror",
"version": "5.65.4",
"version": "5.65.5",
"main": "lib/codemirror.js",
"style": "lib/codemirror.css",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/edit/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"

addLegacyProps(CodeMirror)

CodeMirror.version = "5.65.4"
CodeMirror.version = "5.65.5"

0 comments on commit b6798cc

Please sign in to comment.