Skip to content

Commit ac9e655

Browse files
committed
Mark version 5.52.2
1 parent 9a970e7 commit ac9e655

File tree

7 files changed

+35
-4
lines changed

7 files changed

+35
-4
lines changed

AUTHORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ Christopher Pfohl
160160
Christopher Wallis
161161
Chunliang Lyu
162162
ciaranj
163+
clone-it
163164
clso
164165
CodeAnimal
165166
CodeBitt
@@ -307,6 +308,7 @@ Hasan Delibaş
307308
Hasan Karahan
308309
Heanes
309310
Hector Oswaldo Caballero
311+
Hein Htat
310312
Hélio
311313
Hendrik Wallbaum
312314
Henrik Haugbølle
@@ -328,6 +330,7 @@ idleberg
328330
Igor Petruk
329331
ilvalle
330332
Ilya Kharlamov
333+
Ilya Zverev
331334
Ingo Richter
332335
Irakli Gozalishvili
333336
Ivan Kurnosov
@@ -362,6 +365,7 @@ Jason Johnston
362365
Jason San Jose
363366
Jason Siefken
364367
Jayaprabhakar
368+
Jay Contonio
365369
Jaydeep Solanki
366370
Jean Boussier
367371
Jeff Blaisdell
@@ -630,6 +634,7 @@ paris
630634
Paris
631635
Paris Kasidiaris
632636
Patil Arpith
637+
Patrick Kettner
633638
Patrick Stoica
634639
Patrick Strawderman
635640
Paul Garvin
@@ -690,6 +695,7 @@ Roman Janusz
690695
Rrandom
691696
Rrrandom
692697
Ruslan Osmanov
698+
rvalavicius
693699
Ryan Pangrle
694700
Ryan Petrello
695701
Ryan Prior
@@ -812,6 +818,7 @@ Tyler Makaro
812818
Vadim Dyachenko
813819
Vadzim Ramanenka
814820
Vaibhav Sagar
821+
vamshi.revu
815822
VapidWorx
816823
Vestimir Markov
817824
vf

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 5.52.2 (2020-03-20)
2+
3+
### Bug fixes
4+
5+
Fix selection management in contenteditable mode when the editor doesn't have focus.
6+
7+
Fix a bug that would cause the editor to get confused about the visible viewport in some situations in line-wrapping mode.
8+
9+
[markdown mode](https://codemirror.net/mode/markdown/): Don't treat single dashes as setext header markers.
10+
11+
[zenburn theme](https://codemirror.net/demo/theme.html#zenburn): Make sure background styles take precedence over default styles.
12+
13+
[css mode](https://codemirror.net/mode/css/): Recognize a number of new properties.
14+
115
## 5.52.0 (2020-02-20)
216

317
### Bug fixes

doc/manual.html

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

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

doc/releases.html

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

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

33+
<p class="rel">20-03-2020: <a href="https://codemirror.net/codemirror-5.52.2.zip">Version 5.52.2</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Fix selection management in contenteditable mode when the editor doesn’t have focus.</li>
37+
<li>Fix a bug that would cause the editor to get confused about the visible viewport in some situations in line-wrapping mode.</li>
38+
<li><a href="https://codemirror.net/mode/markdown/">markdown mode</a>: Don’t treat single dashes as setext header markers.</li>
39+
<li><a href="https://codemirror.net/demo/theme.html#zenburn">zenburn theme</a>: Make sure background styles take precedence over default styles.</li>
40+
<li><a href="https://codemirror.net/mode/css/">css mode</a>: Recognize a number of new properties.</li>
41+
</ul>
42+
3343
<p class="rel">20-02-2020: <a href="https://codemirror.net/codemirror-5.52.0.zip">Version 5.52.0</a>:</p>
3444

3545
<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.52.0</a>.<br>
102+
Get the current version: <a href="https://codemirror.net/codemirror.zip">5.52.2</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.52.0",
3+
"version": "5.52.2",
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.52.0"
69+
CodeMirror.version = "5.52.2"

0 commit comments

Comments
 (0)