File tree Expand file tree Collapse file tree 7 files changed +36
-4
lines changed
Expand file tree Collapse file tree 7 files changed +36
-4
lines changed Original file line number Diff line number Diff line change @@ -151,6 +151,7 @@ Christopher Brown
151151Christopher Kramer
152152Christopher Mitchell
153153Christopher Pfohl
154+ Christopher Wallis
154155Chunliang Lyu
155156ciaranj
156157CodeAnimal
@@ -244,6 +245,7 @@ Ford_Lawnmower
244245Forrest Oliphant
245246Franco Catena
246247Frank Wiegand
248+ fraxx001
247249Fredrik Borg
248250Gabriel Gheorghian
249251Gabriel Horner
@@ -258,6 +260,7 @@ George Stephanis
258260geowarin
259261Gerard Braad
260262Gergely Hegykozi
263+ Germain Chazot
261264Giovanni Calò
262265Glebov Boris
263266Glenn Jorde
@@ -330,6 +333,7 @@ Jared Jacobs
330333Jason
331334Jason Barnabe
332335Jason Grout
336+ Jason Heeris
333337Jason Johnston
334338Jason San Jose
335339Jason Siefken
@@ -411,6 +415,7 @@ kubelsmieci
411415KwanEsq
412416Kyle Kelley
413417KyleMcNutt
418+ LaKing
414419Lanfei
415420Lanny
416421laobubu
@@ -767,6 +772,7 @@ Wu Cheng-Han
767772Xavier Mendez
768773Yassin N. Hassan
769774YNH Webdev
775+ yoongu
770776Yunchi Luo
771777Yuvi Panda
772778Yvonnick Esnault
Original file line number Diff line number Diff line change 1+ ## 5.42.2 (2018-12-21)
2+
3+ ### Bug fixes
4+
5+ Fix problem where canceling a change via the ` "beforeChange" ` event could corrupt the textarea input.
6+
7+ Fix issues that sometimes caused the context menu hack to fail, or even leave visual artifacts on IE.
8+
9+ [ vim bindings] ( https://codemirror.net/demo/vim.html ) : Make it possible to select text between angle brackets.
10+
11+ [ css mode] ( https://codemirror.net/mode/css/ ) : Fix tokenizing of CSS variables.
12+
13+ [ python mode] ( https://codemirror.net/mode/python/ ) : Fix another bug in tokenizing of format strings.
14+
15+ [ soy mode] ( https://codemirror.net/mode/soy/ ) : More accurate highlighting.
16+
117## 5.42.0 (2018-11-20)
218
319### 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.42.1 </ span >
72+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.42.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 "> 21-12-2018: < a href ="https://codemirror.net/codemirror-5.42.2.zip "> Version 5.42.2</ a > :</ p >
34+
35+ < ul class ="rel-note ">
36+ < li > Fix problem where canceling a change via the < code > "beforeChange"</ code > event could corrupt the textarea input.</ li >
37+ < li > Fix issues that sometimes caused the context menu hack to fail, or even leave visual artifacts on IE.</ li >
38+ < li > < a href ="https://codemirror.net/demo/vim.html "> vim bindings</ a > : Make it possible to select text between angle brackets.</ li >
39+ < li > < a href ="https://codemirror.net/mode/css/ "> css mode</ a > : Fix tokenizing of CSS variables.</ li >
40+ < li > < a href ="https://codemirror.net/mode/python/ "> python mode</ a > : Fix another bug in tokenizing of format strings.</ li >
41+ < li > < a href ="https://codemirror.net/mode/soy/ "> soy mode</ a > : More accurate highlighting.</ li >
42+ </ ul >
3343
3444 < p class ="rel "> 20-11-2018: < a href ="https://codemirror.net/codemirror-5.42.0.zip "> Version 5.42.0</ a > :</ p >
3545
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.42.0 </ a > .< br >
102+ Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.42.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.42.1 " ,
3+ "version" : " 5.42.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.42.1 "
69+ CodeMirror . version = "5.42.2 "
You can’t perform that action at this time.
0 commit comments