Skip to content

Commit 2474ce6

Browse files
committed
Mark version 5.25.2
1 parent 0597eee commit 2474ce6

File tree

7 files changed

+46
-5
lines changed

7 files changed

+46
-5
lines changed

AUTHORS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Abdelouahab
66
Abe Fettig
77
Adam Ahmed
88
Adam King
9+
Adam Particka
910
adanlobato
1011
Adán Lobato
1112
Adrian Aichner
@@ -200,6 +201,7 @@ ficristo
200201
Filip Noetzel
201202
Filip Stollár
202203
flack
204+
Florian Felten
203205
ForbesLindesay
204206
Forbes Lindesay
205207
Ford_Lawnmower
@@ -265,6 +267,7 @@ James Campos
265267
James Howard
266268
James Thorne
267269
Jamie Hill
270+
Jamie Morris
268271
Jan Jongboom
269272
jankeromnes
270273
Jan Keromnes
@@ -417,6 +420,7 @@ Max Schaefer
417420
Max Xiantu
418421
mbarkhau
419422
McBrainy
423+
mce2
420424
melpon
421425
Metatheos
422426
Micah Dubinko
@@ -473,6 +477,7 @@ Oreoluwa Onatemowo
473477
Oskar Segersvärd
474478
pablo
475479
pabloferz
480+
Pablo Zubieta
476481
Page
477482
Panupong Pasupat
478483
paris
@@ -513,6 +518,7 @@ Rasmus Erik Voel Jensen
513518
ray ratchup
514519
Ray Ratchup
515520
Remi Nyborg
521+
Renaud Durlin
516522
Richard Denton
517523
Richard van der Meer
518524
Richard Z.H. Wang
@@ -538,6 +544,7 @@ Sascha Peilicke
538544
satamas
539545
satchmorun
540546
sathyamoorthi
547+
Saul Costa
541548
S. Chris Colbert
542549
SCLINIC\jdecker
543550
Scott Aikin
@@ -635,5 +642,6 @@ Zac Anger
635642
Zachary Dremann
636643
Zeno Rocha
637644
Zhang Hao
645+
Ziv
638646
zziuni
639647
魏鹏刚

CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
1-
## 5.25.0 (2017-02-22)
1+
## 5.25.2 (2017-04-20)
2+
3+
### Bug fixes
4+
5+
Better handling of selections that cover the whole viewport in contentEditable-mode.
6+
7+
No longer accidentally scroll the editor into view when calling `setValue`.
8+
9+
Work around Chrome Android bug when converting screen coordinates to editor positions.
10+
11+
Make sure long-clicking a selection sets a cursor and doesn't show the editor losing focus.
12+
13+
Fix issue where pointer events were incorrectly disabled on Chrome's overlay scrollbars.
14+
15+
[javascript mode](http://codemirror.net/mode/javascript/): Recognize annotations and TypeScript-style type parameters.
16+
17+
[shell mode](http://codemirror.net/mode/shell/): Handle nested braces.
18+
19+
[markdown mode](http://codemirror.net/mode/markdown/): Make parsing of strong/em delimiters CommonMark-compliant.
20+
21+
## 5.25.0 (2017-03-20)
222

323
### Bug fixes
424

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

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

doc/releases.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff 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">20-04-2017: <a href="http://codemirror.net/codemirror-5.25.2.zip">Version 5.25.2</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Better handling of selections that cover the whole viewport in contentEditable-mode.</li>
37+
<li>No longer accidentally scroll the editor into view when calling <code>setValue</code>.</li>
38+
<li>Work around Chrome Android bug when converting screen coordinates to editor positions.</li>
39+
<li>Make sure long-clicking a selection sets a cursor and doesn't show the editor losing focus.</li>
40+
<li>Fix issue where pointer events were incorrectly disabled on Chrome's overlay scrollbars.</li>
41+
<li><a href="http://codemirror.net/mode/javascript/">javascript mode</a>: Recognize annotations and TypeScript-style type parameters.</li>
42+
<li><a href="http://codemirror.net/mode/shell/">shell mode</a>: Handle nested braces.</li>
43+
<li><a href="http://codemirror.net/mode/markdown/">markdown mode</a>: Make parsing of strong/em delimiters CommonMark-compliant.</li>
44+
</ul>
45+
3346
<p class="rel">20-03-2017: <a href="http://codemirror.net/codemirror-5.25.0.zip">Version 5.25.0</a>:</p>
3447

3548
<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.25.0</a>.<br>
99+
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.25.2</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.25.1",
3+
"version": "5.25.2",
44
"main": "lib/codemirror.js",
55
"description": "Full-featured in-browser code editor",
66
"license": "MIT",

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"
6666

6767
addLegacyProps(CodeMirror)
6868

69-
CodeMirror.version = "5.25.1"
69+
CodeMirror.version = "5.25.2"

0 commit comments

Comments
 (0)