File tree Expand file tree Collapse file tree 7 files changed +46
-5
lines changed
Expand file tree Collapse file tree 7 files changed +46
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Abdelouahab
66Abe Fettig
77Adam Ahmed
88Adam King
9+ Adam Particka
910adanlobato
1011Adán Lobato
1112Adrian Aichner
@@ -200,6 +201,7 @@ ficristo
200201Filip Noetzel
201202Filip Stollár
202203flack
204+ Florian Felten
203205ForbesLindesay
204206Forbes Lindesay
205207Ford_Lawnmower
@@ -265,6 +267,7 @@ James Campos
265267James Howard
266268James Thorne
267269Jamie Hill
270+ Jamie Morris
268271Jan Jongboom
269272jankeromnes
270273Jan Keromnes
@@ -417,6 +420,7 @@ Max Schaefer
417420Max Xiantu
418421mbarkhau
419422McBrainy
423+ mce2
420424melpon
421425Metatheos
422426Micah Dubinko
@@ -473,6 +477,7 @@ Oreoluwa Onatemowo
473477Oskar Segersvärd
474478pablo
475479pabloferz
480+ Pablo Zubieta
476481Page
477482Panupong Pasupat
478483paris
@@ -513,6 +518,7 @@ Rasmus Erik Voel Jensen
513518ray ratchup
514519Ray Ratchup
515520Remi Nyborg
521+ Renaud Durlin
516522Richard Denton
517523Richard van der Meer
518524Richard Z.H. Wang
@@ -538,6 +544,7 @@ Sascha Peilicke
538544satamas
539545satchmorun
540546sathyamoorthi
547+ Saul Costa
541548S. Chris Colbert
542549SCLINIC\jdecker
543550Scott Aikin
@@ -635,5 +642,6 @@ Zac Anger
635642Zachary Dremann
636643Zeno Rocha
637644Zhang Hao
645+ Ziv
638646zziuni
639647魏鹏刚
Original file line number Diff line number Diff line change 1- ## 5.25.0 (2017-02-22)
1+ ## 5.25.2 (2017-04-20)
2+
3+ ### Bug fixes
4+
5+ Better handling of selections that cover the whole viewport in contentEditable-mode.
6+
7+ No longer accidentally scroll the editor into view when calling ` setValue ` .
8+
9+ Work around Chrome Android bug when converting screen coordinates to editor positions.
10+
11+ Make sure long-clicking a selection sets a cursor and doesn't show the editor losing focus.
12+
13+ Fix issue where pointer events were incorrectly disabled on Chrome's overlay scrollbars.
14+
15+ [ javascript mode] ( http://codemirror.net/mode/javascript/ ) : Recognize annotations and TypeScript-style type parameters.
16+
17+ [ shell mode] ( http://codemirror.net/mode/shell/ ) : Handle nested braces.
18+
19+ [ markdown mode] ( http://codemirror.net/mode/markdown/ ) : Make parsing of strong/em delimiters CommonMark-compliant.
20+
21+ ## 5.25.0 (2017-03-20)
222
323### Bug fixes
424
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.25.1 </ span >
72+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.25.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,19 @@ <h2>Release notes and version history</h2>
3030
3131 < h2 > Version 5.x</ h2 >
3232
33+ < p class ="rel "> 20-04-2017: < a href ="http://codemirror.net/codemirror-5.25.2.zip "> Version 5.25.2</ a > :</ p >
34+
35+ < ul class ="rel-note ">
36+ < li > Better handling of selections that cover the whole viewport in contentEditable-mode.</ li >
37+ < li > No longer accidentally scroll the editor into view when calling < code > setValue</ code > .</ li >
38+ < li > Work around Chrome Android bug when converting screen coordinates to editor positions.</ li >
39+ < li > Make sure long-clicking a selection sets a cursor and doesn't show the editor losing focus.</ li >
40+ < li > Fix issue where pointer events were incorrectly disabled on Chrome's overlay scrollbars.</ li >
41+ < li > < a href ="http://codemirror.net/mode/javascript/ "> javascript mode</ a > : Recognize annotations and TypeScript-style type parameters.</ li >
42+ < li > < a href ="http://codemirror.net/mode/shell/ "> shell mode</ a > : Handle nested braces.</ li >
43+ < li > < a href ="http://codemirror.net/mode/markdown/ "> markdown mode</ a > : Make parsing of strong/em delimiters CommonMark-compliant.</ li >
44+ </ ul >
45+
3346 < p class ="rel "> 20-03-2017: < a href ="http://codemirror.net/codemirror-5.25.0.zip "> Version 5.25.0</ a > :</ p >
3447
3548 < ul class =rel-note >
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ <h2>This is CodeMirror</h2>
9696 </ div >
9797 </ div >
9898 < div class =actionsleft >
99- Get the current version: < a href ="http://codemirror.net/codemirror.zip "> 5.25.0 </ a > .< br >
99+ Get the current version: < a href ="http://codemirror.net/codemirror.zip "> 5.25.2 </ a > .< br >
100100 You can see the < a href ="https://github.com/codemirror/codemirror " title ="Github repository "> code</ a > ,< br >
101101 read the < a href ="doc/releases.html "> release notes</ a > ,< br >
102102 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.25.1 " ,
3+ "version" : " 5.25.2 " ,
44 "main" : " lib/codemirror.js" ,
55 "description" : " Full-featured in-browser code editor" ,
66 "license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy"
6666
6767addLegacyProps ( CodeMirror )
6868
69- CodeMirror . version = "5.25.1 "
69+ CodeMirror . version = "5.25.2 "
You can’t perform that action at this time.
0 commit comments