File tree Expand file tree Collapse file tree 7 files changed +26
-4
lines changed
Expand file tree Collapse file tree 7 files changed +26
-4
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,17 @@ List of CodeMirror contributors. Updated before every release.
334r2r
44Aaron Brooks
55Abe Fettig
6+ Adam Ahmed
67Adam King
78adanlobato
89Adán Lobato
10+ Adrian Aichner
911aeroson
1012Ahmad Amireh
1113Ahmad M. Zawawi
1214ahoward
1315Akeksandr Motsjonov
16+ Alberto González Palomo
1417Alberto Pose
1518Albert Xing
1619Alexander Pavlov
@@ -46,6 +49,7 @@ Benjamin DeCoste
4649Ben Keen
4750Bernhard Sirlinger
4851Billy Moon
52+ binny
4953Blaine G
5054boomyjee
5155borawjm
@@ -79,6 +83,7 @@ David Mignot
7983David Pathakjee
8084deebugger
8185Deep Thought
86+ dignifiedquire
8287domagoj412
8388Dominator008
8489Domizio Demichelis
@@ -106,6 +111,7 @@ ForbesLindesay
106111Forbes Lindesay
107112Ford_Lawnmower
108113Frank Wiegand
114+ Gabriel Horner
109115Gabriel Nahmias
110116galambalazs
111117Gautam Mehta
@@ -164,6 +170,7 @@ Jon Malmaud
164170Joost-Wim Boekesteijn
165171Joseph Pecoraro
166172Joshua Newman
173+ Josh Watzman
167174jots
168175jsoojeon
169176Juan Benavides Romero
@@ -192,6 +199,7 @@ Luciano Longo
192199lynschinzer
193200Maksim Lin
194201Maksym Taran
202+ Malay Majithia
195203Manuel Rego Casasnovas
196204Marat Dreizin
197205Marco Aurélio
238246nerbert
239247nextrevision
240248nguillaumin
249+ Ng Zhi An
241250Nicholas Bollweg
242251Niels van Groningen
243252Nikita Beloglazov
@@ -246,6 +255,7 @@ Nikolay Kostov
246255nlwillia
247256pablo
248257Page
258+ Patil Arpith
249259Patrick Strawderman
250260Paul Garvin
251261Paul Ivanov
@@ -307,6 +317,7 @@ Tom MacWright
307317Tony Jian
308318Travis Heppe
309319Triangle717
320+ twifkak
310321Vestimir Markov
311322vf
312323Volker Mische
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ <h2>Script compression helper</h2>
3333 < input type ="hidden " id ="download " name ="download " value ="codemirror-compressed.js "/>
3434 < p > Version: < select id ="version " onchange ="setVersion(this); " style ="padding: 1px; ">
3535 < option value ="http://codemirror.net/ "> HEAD</ option >
36+ < option value ="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=3.23.0;f= "> 3.23</ option >
3637 < option value ="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=3.22.0;f= "> 3.22</ option >
3738 < option value ="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=3.21.0;f= "> 3.21</ option >
3839 < option value ="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=3.20.0;f= "> 3.20</ option >
Original file line number Diff line number Diff line change 5959< section class =first id =overview >
6060 < h2 style ="position: relative ">
6161 User manual and reference guide
62- < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 3.22.1 </ span >
62+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 3.23.0 </ span >
6363 </ h2 >
6464
6565 < p > CodeMirror is a code-editor component that can be embedded in
Original file line number Diff line number Diff line change @@ -28,6 +28,16 @@ <h2>Release notes and version history</h2>
2828
2929 < h2 > Version 3.x</ h2 >
3030
31+ < p class ="rel "> 20-03-2014: < a href ="http://codemirror.net/codemirror-3.23.zip "> Version 3.23</ a > :</ p >
32+
33+ < ul class ="rel-note ">
34+ < li > In the < a href ="../mode/xml/index.html "> XML mode</ a > ,
35+ add < code > brackets</ code > style to angle brackets, fix
36+ case-sensitivity of tags for HTML.</ li >
37+ < li > New mode: < a href ="../mode/dylan/index.html "> Dylan</ a > .</ li >
38+ < li > Many improvements to the < a href ="../demo/vim.html "> Vim bindings</ a > .</ li >
39+ </ ul >
40+
3141 < p class ="rel "> 21-02-2014: < a href ="http://codemirror.net/codemirror-3.22.zip "> Version 3.22</ a > :</ p >
3242
3343 < ul class ="rel-note ">
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ <h2>This is CodeMirror</h2>
8484 </ script >
8585 < div style ="position: relative; margin: 1em 0; ">
8686 < a class ="bigbutton left " href ="http://codemirror.net/codemirror.zip "> DOWNLOAD LATEST RELEASE</ a >
87- < div > < strong > version 3.22 </ strong > (< a href ="doc/releases.html "> Release notes</ a > )</ div >
87+ < div > < strong > version 3.23 </ strong > (< a href ="doc/releases.html "> Release notes</ a > )</ div >
8888 < div > or use the < a href ="doc/compress.html "> minification helper</ a > </ div >
8989 < div style ="position: absolute; top: 0; right: 0; text-align: right ">
9090 < span class ="bigbutton right " onclick ="document.getElementById('paypal').submit(); "> DONATE WITH PAYPAL</ span >
Original file line number Diff line number Diff line change @@ -6089,7 +6089,7 @@ window.CodeMirror = (function() {
60896089
60906090 // THE END
60916091
6092- CodeMirror . version = "3.22.1 " ;
6092+ CodeMirror . version = "3.23.0 " ;
60936093
60946094 return CodeMirror ;
60956095} ) ( ) ;
Original file line number Diff line number Diff line change 11{
22 "name" : " codemirror" ,
3- "version" :" 3.22.1 " ,
3+ "version" :" 3.23.0 " ,
44 "main" : " lib/codemirror.js" ,
55 "description" : " In-browser code editing made bearable" ,
66 "licenses" : [{"type" : " MIT" ,
You can’t perform that action at this time.
0 commit comments