File tree Expand file tree Collapse file tree 7 files changed +43
-4
lines changed
Expand file tree Collapse file tree 7 files changed +43
-4
lines changed Original file line number Diff line number Diff line change @@ -244,6 +244,7 @@ edoroshenko
244244edsharp
245245ekhaled
246246Elisée
247+ Elmar Peise
247248elpnt
248249Emmanuel Schanzer
249250Enam Mijbah Noor
@@ -363,6 +364,7 @@ Jacob Lee
363364Jaimin
364365Jake Peyser
365366Jakob Miland
367+ Jakub T. Jankiewicz
366368Jakub Vrana
367369Jakub Vrána
368370James Campos
@@ -466,6 +468,7 @@ Kevin Muret
466468Kevin Sawicki
467469Kevin Ushey
468470Kier Darby
471+ Kim-Anh Tran
469472Klaus Silveira
470473Koh Zi Han, Cliff
471474komakino
@@ -547,6 +550,7 @@ Mason Malone
547550Mateusz Paprocki
548551Mathias Bynens
549552mats cronqvist
553+ Matt Diehl
550554Matt Gaide
551555Matthew Bauer
552556Matthew Beale
@@ -604,6 +608,7 @@ Miraculix87
604608misfo
605609mkaminsky11
606610mloginov
611+ mlsad3
607612Moritz Schubotz (physikerwelt)
608613Moritz Schwörer
609614Moshe Wajnberg
@@ -614,6 +619,7 @@ Mu-An ✌️ Chiou
614619Mu-An Chiou
615620mzabuawala
616621Narciso Jaramillo
622+ nathanlesage
617623Nathan Williams
618624ndr
619625Neil Anderson
@@ -692,13 +698,15 @@ Philip Stadermann
692698Pi Delport
693699Pierre Gerold
694700Pieter Ouwerkerk
701+ Piyush
695702Pontus Melke
696703prasanthj
697704Prasanth J
698705Prayag Verma
699706prendota
700707Prendota
701708Qiang Li
709+ quiddity-wp
702710Radek Piórkowski
703711Rahul
704712Rahul Anand
@@ -759,6 +767,7 @@ Scott Aikin
759767Scott Feeney
760768Scott Goodhew
761769Seb35
770+ Sebastian Ślepowroński
762771Sebastian Wilzbach
763772Sebastian Zaha
764773Seren D
@@ -779,6 +788,7 @@ Siamak Mokhtari
779788Siddhartha Gunti
780789silverwind
781790Simon Edwards
791+ Simon Huber
782792sinkuu
783793snasa
784794soliton4
Original file line number Diff line number Diff line change 1+ ## 5.59.0 (2020-12-20)
2+
3+ ### Bug fixes
4+
5+ Fix platform detection on recent iPadOS.
6+
7+ [ lint addon] ( https://codemirror.net/doc/manual.html#addon_lint ) : Don't show duplicate messages for a given line.
8+
9+ [ clojure mode] ( https://codemirror.net/mode/clojure/index.html ) : Fix regexp that matched in exponential time for some inputs.
10+
11+ [ hardwrap addon] ( https://codemirror.net/doc/manual.html#addon_hardwrap ) : Improve handling of words that are longer than the line length.
12+
13+ [ matchbrackets addon] ( https://codemirror.net/doc/manual.html#addon_matchbrackets ) : Fix leaked event handler on disabling the addon.
14+
15+ ### New features
16+
17+ [ search addon] ( https://codemirror.net/demo/search/ ) : Make it possible to configure the search addon to show the dialog at the bottom of the editor.
18+
119## 5.58.3 (2020-11-19)
220
321### Bug fixes
Original file line number Diff line number Diff line change 7070< section class =first id =overview >
7171 < h2 style ="position: relative ">
7272 User manual and reference guide
73- < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.58.3 </ span >
73+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.59.0 </ span >
7474 </ h2 >
7575
7676 < 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-12-2020: < a href ="https://codemirror.net/codemirror-5.59.0.zip "> Version 5.59.0</ a > :</ p >
34+
35+ < ul class ="rel-note ">
36+ < li > Fix platform detection on recent iPadOS.</ li >
37+ < li > < a href ="https://codemirror.net/doc/manual.html#addon_lint "> lint addon</ a > : Don't show duplicate messages for a given line.</ li >
38+ < li > < a href ="https://codemirror.net/mode/clojure/index.html "> clojure mode</ a > : Fix regexp that matched in exponential time for some inputs.</ li >
39+ < li > < a href ="https://codemirror.net/doc/manual.html#addon_hardwrap "> hardwrap addon</ a > : Improve handling of words that are longer than the line length.</ li >
40+ < li > < a href ="https://codemirror.net/doc/manual.html#addon_matchbrackets "> matchbrackets addon</ a > : Fix leaked event handler on disabling the addon.</ li >
41+ < li > < a href ="https://codemirror.net/demo/search/ "> search addon</ a > : Make it possible to configure the search addon to show the dialog at the bottom of the editor.</ li >
42+ </ ul >
43+
3344 < p class ="rel "> 19-11-2020: < a href ="https://codemirror.net/codemirror-5.58.3.zip "> Version 5.58.3</ 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.58.3 </ a > .< br >
102+ Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.59.0 </ 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.58.3 " ,
3+ "version" : " 5.59.0 " ,
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.58.3 "
69+ CodeMirror . version = "5.59.0 "
You can’t perform that action at this time.
0 commit comments