File tree Expand file tree Collapse file tree 7 files changed +38
-4
lines changed
Expand file tree Collapse file tree 7 files changed +38
-4
lines changed Original file line number Diff line number Diff line change @@ -222,6 +222,7 @@ Duncan Lilley
222222duralog
223223dwelle
224224eborden
225+ edoroshenko
225226edsharp
226227ekhaled
227228Elisée
@@ -284,6 +285,7 @@ Grant Skinner
284285greengiant
285286Gregory Koberger
286287Grzegorz Mazur
288+ Guang Li
287289Guan Gui
288290Guillaume Massé
289291Guillaume Massé
@@ -374,6 +376,7 @@ John Connor
374376John-David Dalton
375377John Engler
376378John Lees-Miller
379+ John Ryan
377380John Snelson
378381John Van Der Loo
379382Jon Ander Peñalba
@@ -451,6 +454,7 @@ Lior Shub
451454LloydMilligan
452455LM
453456lochel
457+ Lonnie Abelbeck
454458Lorenzo Simionato
455459Lorenzo Stoakes
456460Louis Mauchet
@@ -585,6 +589,7 @@ Nikita Vasilyev
585589Nikolaj Kappler
586590Nikolay Kostov
587591nilp0inter
592+ Nils Knappmeier
588593Nisarg Jhaveri
589594nlwillia
590595noragrossman
@@ -644,6 +649,7 @@ Randy Luecke
644649Raphael Amorim
645650Rasmus Erik Voel Jensen
646651Rasmus Schultz
652+ raymondf
647653Raymond Hill
648654ray ratchup
649655Ray Ratchup
@@ -778,6 +784,7 @@ TSUYUSATO Kitsune
778784Tugrul Elmas
779785twifkak
780786Tyler Long
787+ Tyler Makaro
781788Vadim Dyachenko
782789Vadzim Ramanenka
783790Vaibhav Sagar
Original file line number Diff line number Diff line change 1+ ## 5.48.4 (2019-08-20)
2+
3+ ### Bug fixes
4+
5+ Make default styles for line elements more specific so that they don't apply to all ` <pre> ` elements inside the editor.
6+
7+ Improve efficiency of fold gutter when there's big folded chunks of code in view.
8+
9+ Fix a bug that would leave the editor uneditable when a content-covering collapsed range was removed by replacing the entire document.
10+
11+ [ julia mode] ( https://codemirror.net/mode/julia/ ) : Support number separators.
12+
13+ [ asterisk mode] ( https://codemirror.net/mode/asterisk/ ) : Improve comment support.
14+
15+ [ handlebars mode] ( https://codemirror.net/mode/handlebars/ ) : Support triple-brace tags.
16+
117## 5.48.2 (2019-07-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.48.3 </ span >
72+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.48.4 </ 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,17 @@ <h2>Release notes and version history</h2>
3030
3131 < h2 > Version 5.x</ h2 >
3232
33+ < p class ="rel "> 20-08-2019: < a href ="https://codemirror.net/codemirror-5.48.4.zip "> Version 5.48.4</ a > :</ p >
34+
35+ < ul class ="rel-note ">
36+ < li > Make default styles for line elements more specific so that they don’t apply to all < code > <pre></ code > elements inside the editor.</ li >
37+ < li > Improve efficiency of fold gutter when there’s big folded chunks of code in view.</ li >
38+ < li > Fix a bug that would leave the editor uneditable when a content-covering collapsed range was removed by replacing the entire document.</ li >
39+ < li > < a href ="https://codemirror.net/mode/julia/ "> julia mode</ a > : Support number separators.</ li >
40+ < li > < a href ="https://codemirror.net/mode/asterisk/ "> asterisk mode</ a > : Improve comment support.</ li >
41+ < li > < a href ="https://codemirror.net/mode/handlebars/ "> handlebars mode</ a > : Support triple-brace tags.</ li >
42+ </ ul >
43+
3344 < p class ="rel "> 20-07-2019: < a href ="https://codemirror.net/codemirror-5.48.2.zip "> Version 5.48.2</ a > :</ p >
3445
3546 < 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.48.2 </ a > .< br >
102+ Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.48.4 </ 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.48.3 " ,
3+ "version" : " 5.48.4 " ,
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.48.3 "
69+ CodeMirror . version = "5.48.4 "
You can’t perform that action at this time.
0 commit comments