File tree Expand file tree Collapse file tree 7 files changed +41
-4
lines changed
Expand file tree Collapse file tree 7 files changed +41
-4
lines changed Original file line number Diff line number Diff line change @@ -235,6 +235,7 @@ Dror BG
235235Duncan Lilley
236236duralog
237237dwelle
238+ Ealton
238239eborden
239240edoroshenko
240241edsharp
@@ -347,6 +348,7 @@ Ingo Richter
347348Irakli Gozalishvili
348349Ivan Kurnosov
349350Ivoah
351+ Jack Douglas
350352Jacob Lee
351353Jaimin
352354Jake Peyser
@@ -756,6 +758,7 @@ Shiv Deepak
756758Shmuel Englard
757759Shubham Jain
758760Siamak Mokhtari
761+ Siddhartha Gunti
759762silverwind
760763Simon Edwards
761764sinkuu
@@ -870,6 +873,7 @@ Yuvi Panda
870873Yvonnick Esnault
871874Zac Anger
872875Zachary Dremann
876+ ZeeshanNoor
873877Zeno Rocha
874878Zhang Hao
875879Ziv
Original file line number Diff line number Diff line change 1+ ## 5.55.0 (2020-05-20)
2+
3+ ### Bug fixes
4+
5+ The editor no longer overrides the rendering of zero-width joiners (allowing combined emoji to be shown).
6+
7+ [ vim bindings] ( https://codemirror.net/demo/vim.html ) : Fix an issue where the ` vim-mode-change ` event was fired twice.
8+
9+ [ javascript mode] ( https://codemirror.net/mode/javascript/ ) : Only allow ` --> ` -style comments at the start of a line.
10+
11+ [ julia mode] ( https://codemirror.net/mode/julia/ ) : Improve indentation.
12+
13+ [ pascal mode] ( https://codemirror.net/mode/pascal/index.html ) : Recognize curly bracket comments.
14+
15+ [ runmode addon] ( https://codemirror.net/doc/manual.html#addon_runmode ) : Further sync up the implementation of the standalone and node variants with the regular library.
16+
17+ ### New features
18+
19+ [ loadmode addon] ( https://codemirror.net/doc/manual.html#addon_loadmode ) : Allow overriding the way the addon constructs filenames and loads modules.
20+
121## 5.54.0 (2020-05-20)
222
323### 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.54 .0</ span >
72+ < span style ="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0 "> version 5.55 .0</ 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 "> 21-06-2020: < a href ="https://codemirror.net/codemirror-5.55.0.zip "> Version 5.55.0</ a > :</ p >
34+
35+ < ul class ="rel-note ">
36+ < li > The editor no longer overrides the rendering of zero-width joiners (allowing combined emoji to be shown).</ li >
37+ < li > < a href ="https://codemirror.net/demo/vim.html "> vim bindings</ a > : Fix an issue where the < code > vim-mode-change</ code > event was fired twice.</ li >
38+ < li > < a href ="https://codemirror.net/mode/javascript/ "> javascript mode</ a > : Only allow < code > --></ code > -style comments at the start of a line.</ li >
39+ < li > < a href ="https://codemirror.net/mode/julia/ "> julia mode</ a > : Improve indentation.</ li >
40+ < li > < a href ="https://codemirror.net/mode/pascal/index.html "> pascal mode</ a > : Recognize curly bracket comments.</ li >
41+ < li > < a href ="https://codemirror.net/doc/manual.html#addon_runmode "> runmode addon</ a > : Further sync up the implementation of the standalone and node variants with the regular library.</ li >
42+ < li > < h3 id ="new-features "> New features</ h3 > </ li >
43+ < li > < a href ="https://codemirror.net/doc/manual.html#addon_loadmode "> loadmode addon</ a > : Allow overriding the way the addon constructs filenames and loads modules.</ li >
44+ </ ul >
45+
3346 < p class ="rel "> 20-05-2020: < a href ="https://codemirror.net/codemirror-5.54.0.zip "> Version 5.54.0</ a > :</ p >
3447
3548 < 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.54 .0</ a > .< br >
102+ Get the current version: < a href ="https://codemirror.net/codemirror.zip "> 5.55 .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.54 .0" ,
3+ "version" : " 5.55 .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.54 .0"
69+ CodeMirror . version = "5.55 .0"
You can’t perform that action at this time.
0 commit comments