Skip to content

Commit 860e951

Browse files
committed
Mark version 5.36.0
1 parent d49ef29 commit 860e951

File tree

7 files changed

+51
-4
lines changed

7 files changed

+51
-4
lines changed

AUTHORS

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ Calin Barbat
121121
callodacity
122122
Camilo Roca
123123
Casey Klebba
124+
César González Íñiguez
124125
Chad Jolly
125126
Chandra Sekhar Pydi
126127
Charles Skelton
@@ -131,6 +132,7 @@ Chris Granger
131132
Chris Houseknecht
132133
Chris Lohfink
133134
Chris Morgan
135+
Chris Reeves
134136
Chris Smith
135137
Christian Gruen
136138
Christian Oyarzun
@@ -258,6 +260,7 @@ Hans Engel
258260
Hardest
259261
Harshvardhan Gupta
260262
Hasan Karahan
263+
Heanes
261264
Hector Oswaldo Caballero
262265
Hélio
263266
Hendrik Wallbaum
@@ -386,6 +389,7 @@ Lanfei
386389
Lanny
387390
Laszlo Vidacs
388391
leaf corcoran
392+
Lemmon
389393
Leonid Khachaturov
390394
Leon Sorokin
391395
Leonya Khachaturov
@@ -567,8 +571,11 @@ ramwin1
567571
Randall Mason
568572
Randy Burden
569573
Randy Edmunds
574+
Randy Luecke
575+
Raphael Amorim
570576
Rasmus Erik Voel Jensen
571577
Rasmus Schultz
578+
Raymond Hill
572579
ray ratchup
573580
Ray Ratchup
574581
Remi Nyborg
@@ -587,6 +594,7 @@ Rrrandom
587594
Ruslan Osmanov
588595
Ryan Petrello
589596
Ryan Prior
597+
ryu-sato
590598
sabaca
591599
Sam Lee
592600
Sam Rawlins
@@ -679,6 +687,7 @@ Tomas Varaneckas
679687
Tom Erik Støwer
680688
Tom Klancer
681689
Tom MacWright
690+
Tom McLaughlin
682691
Tony Jian
683692
tophf
684693
totalamd

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 5.36.0 (2018-03-20)
2+
3+
### Bug fixes
4+
5+
Make sure all document-level event handlers are registered on the document that the editor is part of.
6+
7+
Fix issue that prevented edits whose origin starts with `+` from being combined in history events for an editor-less document.
8+
9+
[multiplex addon](http://codemirror.net/demo/multiplex.html): Improve handling of indentation.
10+
11+
[merge addon](http://codemirror.net/doc/manual.html#addon_merge): Use CSS `:after` element to style the scroll-lock icon.
12+
13+
[javascript-hint addon](http://codemirror.net/doc/manual.html#addon_javascript-hint): Don't provide completions in JSON mode.
14+
15+
[continuelist addon](http://codemirror.net/doc/manual.html#addon_continuelist): Fix numbering error.
16+
17+
[show-hint addon](http://codemirror.net/doc/manual.html#addon_show-hint): Make `fromList` completion strategy act on the current token up to the cursor, rather than the entire token.
18+
19+
[markdown mode](http://codemirror.net/mode/markdown/): Fix a regexp with potentially exponental complexity.
20+
21+
### New features
22+
23+
New theme: [lucario](http://codemirror.net/demo/theme.html#lucario).
24+
125
## 5.35.0 (2018-02-20)
226

327
### Bug fixes

doc/manual.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
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.35.1</span>
72+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.36.0</span>
7373
</h2>
7474

7575
<p>CodeMirror is a code-editor component that can be embedded in

doc/releases.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,20 @@ <h2>Release notes and version history</h2>
3030

3131
<h2>Version 5.x</h2>
3232

33+
<p class="rel">20-03-2018: <a href="http://codemirror.net/codemirror-5.36.0.zip">Version 5.36.0</a>:</p>
34+
35+
<ul>
36+
<li>Make sure all document-level event handlers are registered on the document that the editor is part of.</li>
37+
<li>Fix issue that prevented edits whose origin starts with <code>+</code> from being combined in history events for an editor-less document.</li>
38+
<li><a href="http://codemirror.net/demo/multiplex.html">multiplex addon</a>: Improve handling of indentation.</li>
39+
<li><a href="http://codemirror.net/doc/manual.html#addon_merge">merge addon</a>: Use CSS <code>:after</code> element to style the scroll-lock icon.</li>
40+
<li><a href="http://codemirror.net/doc/manual.html#addon_javascript-hint">javascript-hint addon</a>: Don't provide completions in JSON mode.</li>
41+
<li><a href="http://codemirror.net/doc/manual.html#addon_continuelist">continuelist addon</a>: Fix numbering error.</li>
42+
<li><a href="http://codemirror.net/doc/manual.html#addon_show-hint">show-hint addon</a>: Make <code>fromList</code> completion strategy act on the current token up to the cursor, rather than the entire token.</li>
43+
<li><a href="http://codemirror.net/mode/markdown/">markdown mode</a>: Fix a regexp with potentially exponental complexity.</li>
44+
<li>New theme: <a href="http://codemirror.net/demo/theme.html#lucario">lucario</a>.</li>
45+
</ul>
46+
3347
<p class="rel">20-02-2018: <a href="http://codemirror.net/codemirror-5.35.0.zip">Version 5.35.0</a>:</p>
3448

3549
<ul>

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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.35.0</a>.<br>
99+
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.36.0</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>.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codemirror",
3-
"version": "5.35.1",
3+
"version": "5.36.0",
44
"main": "lib/codemirror.js",
55
"style": "lib/codemirror.css",
66
"description": "Full-featured in-browser code editor",

src/edit/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
6666

6767
addLegacyProps(CodeMirror)
6868

69-
CodeMirror.version = "5.35.1"
69+
CodeMirror.version = "5.36.0"

0 commit comments

Comments
 (0)