Skip to content

Commit 05e27d8

Browse files
committed
Mark version 5.38.0
1 parent 875913f commit 05e27d8

File tree

7 files changed

+52
-4
lines changed

7 files changed

+52
-4
lines changed

AUTHORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@ Chris Smith
139139
Christian Gruen
140140
Christian Oyarzun
141141
Christian Petrov
142+
christopherblaser
142143
Christopher Brown
143144
Christopher Kramer
144145
Christopher Mitchell
@@ -246,6 +247,7 @@ Giovanni Calò
246247
Glebov Boris
247248
Glenn Jorde
248249
Glenn Ruehle
250+
goldsmcb
249251
Golevka
250252
Google Inc.
251253
Gordon Smith
@@ -454,6 +456,7 @@ matthewhayes
454456
Matthew Rathbone
455457
Matthias Bussonnier
456458
Matthias BUSSONNIER
459+
Matt MacPherson
457460
Matt McDonald
458461
Matt Pass
459462
Matt Sacks
@@ -489,11 +492,13 @@ Mike Diaz
489492
Mike Ivanov
490493
Mike Kadin
491494
Mike Kobit
495+
Milan Szekely
492496
MinRK
493497
Miraculix87
494498
misfo
495499
mkaminsky11
496500
mloginov
501+
Moritz Schubotz (physikerwelt)
497502
Moritz Schwörer
498503
Moshe Wajnberg
499504
mps
@@ -537,6 +542,7 @@ overdodactyl
537542
pablo
538543
pabloferz
539544
Pablo Zubieta
545+
paddya
540546
Page
541547
paladox
542548
Panupong Pasupat
@@ -646,6 +652,7 @@ Sorab Bisht
646652
spastorelli
647653
srajanpaliwal
648654
Stanislav Oaserele
655+
stan-z
649656
Stas Kobzar
650657
Stefan Borsje
651658
Steffen Beyer

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## 5.38.0 (2018-05-21)
2+
3+
### Bug fixes
4+
5+
Improve reliability of noticing a missing mouseup event during dragging.
6+
7+
Make sure `getSelection` is always called on the correct document.
8+
9+
Fix interpretation of line breaks and non-breaking spaces inserted by renderer in contentEditable mode.
10+
11+
Work around some browsers inexplicably making the fake scrollbars focusable.
12+
13+
Make sure `coordsChar` doesn't return positions inside collapsed ranges.
14+
15+
[javascript mode](http://codemirror.net/mode/javascript/): Support block scopes, bindingless catch, bignum suffix, `s` regexp flag.
16+
17+
[markdown mode](http://codemirror.net/mode/markdown/): Adjust a wasteful regexp.
18+
19+
[show-hint addon](http://codemirror.net/doc/manual.html#addon_show-hint): Allow opening the control without any item selected.
20+
21+
### New features
22+
23+
New theme: [darcula](http://codemirror.net/demo/theme.html#darcula).
24+
25+
[dialog addon](http://codemirror.net/doc/manual.html#addon_dialog): Add a CSS class (`dialog-opened`) to the editor when a dialog is open.
26+
127
## 5.37.0 (2018-04-20)
228

329
### 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.37.1</span>
72+
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.38.0</span>
7373
</h2>
7474

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

doc/releases.html

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

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

33+
<p class="rel">21-05-2018: <a href="http://codemirror.net/codemirror-5.38.0.zip">Version 5.38.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Improve reliability of noticing a missing mouseup event during dragging.</li>
37+
<li>Make sure <code>getSelection</code> is always called on the correct document.</li>
38+
<li>Fix interpretation of line breaks and non-breaking spaces inserted by renderer in contentEditable mode.</li>
39+
<li>Work around some browsers inexplicably making the fake scrollbars focusable.</li>
40+
<li>Make sure <code>coordsChar</code> doesn't return positions inside collapsed ranges.</li>
41+
<li><a href="http://codemirror.net/mode/javascript/">javascript mode</a>: Support block scopes, bindingless catch, bignum suffix, <code>s</code> regexp flag.</li>
42+
<li><a href="http://codemirror.net/mode/markdown/">markdown mode</a>: Adjust a wasteful regexp.</li>
43+
<li><a href="http://codemirror.net/doc/manual.html#addon_show-hint">show-hint addon</a>: Allow opening the control without any item selected.</li>
44+
<li>New theme: <a href="http://codemirror.net/demo/theme.html#darcula">darcula</a>.</li>
45+
<li><a href="http://codemirror.net/doc/manual.html#addon_dialog">dialog addon</a>: Add a CSS class (<code>dialog-opened</code>) to the editor when a dialog is open.</li>
46+
</ul>
47+
3348
<p class="rel">20-04-2018: <a href="http://codemirror.net/codemirror-5.37.0.zip">Version 5.37.0</a>:</p>
3449

3550
<ul class="rel-note">

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.37.0</a>.<br>
99+
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.38.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.37.1",
3+
"version": "5.38.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.37.1"
69+
CodeMirror.version = "5.38.0"

0 commit comments

Comments
 (0)