File tree Expand file tree Collapse file tree 7 files changed +35
-4
lines changed
Expand file tree Collapse file tree 7 files changed +35
-4
lines changed Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ Christopher Pfohl
160160Christopher Wallis
161161Chunliang Lyu
162162ciaranj
163+ clone-it
163164clso
164165CodeAnimal
165166CodeBitt
@@ -307,6 +308,7 @@ Hasan Delibaş
307308Hasan Karahan
308309Heanes
309310Hector Oswaldo Caballero
311+ Hein Htat
310312Hélio
311313Hendrik Wallbaum
312314Henrik Haugbølle
@@ -328,6 +330,7 @@ idleberg
328330Igor Petruk
329331ilvalle
330332Ilya Kharlamov
333+ Ilya Zverev
331334Ingo Richter
332335Irakli Gozalishvili
333336Ivan Kurnosov
@@ -362,6 +365,7 @@ Jason Johnston
362365Jason San Jose
363366Jason Siefken
364367Jayaprabhakar
368+ Jay Contonio
365369Jaydeep Solanki
366370Jean Boussier
367371Jeff Blaisdell
@@ -630,6 +634,7 @@ paris
630634Paris
631635Paris Kasidiaris
632636Patil Arpith
637+ Patrick Kettner
633638Patrick Stoica
634639Patrick Strawderman
635640Paul Garvin
@@ -690,6 +695,7 @@ Roman Janusz
690695Rrandom
691696Rrrandom
692697Ruslan Osmanov
698+ rvalavicius
693699Ryan Pangrle
694700Ryan Petrello
695701Ryan Prior
@@ -812,6 +818,7 @@ Tyler Makaro
812818Vadim Dyachenko
813819Vadzim Ramanenka
814820Vaibhav Sagar
821+ vamshi.revu
815822VapidWorx
816823Vestimir Markov
817824vf
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 ">
Original file line number Diff line number Diff 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 > .
Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff line change @@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
6666
6767addLegacyProps ( CodeMirror )
6868
69- CodeMirror . version = "5.52.0 "
69+ CodeMirror . version = "5.52.2 "
You can’t perform that action at this time.
0 commit comments