Skip to content

Commit 6bd09fc

Browse files
committed
Mark version 5.16.0
1 parent e120175 commit 6bd09fc

File tree

7 files changed

+30
-4
lines changed

7 files changed

+30
-4
lines changed

AUTHORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Ahmad Amireh
1414
Ahmad M. Zawawi
1515
ahoward
1616
Akeksandr Motsjonov
17+
Alasdair Smith
1718
Alberto González Palomo
1819
Alberto Pose
1920
Albert Xing
@@ -140,6 +141,7 @@ Darius Roberts
140141
Dave Brondsema
141142
Dave Myers
142143
David Barnett
144+
David H. Bronke
143145
David Mignot
144146
David Pathakjee
145147
David Vázquez
@@ -213,6 +215,7 @@ Gustavo Rodrigues
213215
Hakan Tunc
214216
Hans Engel
215217
Hardest
218+
Harshvardhan Gupta
216219
Hasan Karahan
217220
Hector Oswaldo Caballero
218221
Herculano Campos
@@ -258,6 +261,7 @@ Jason Siefken
258261
Jaydeep Solanki
259262
Jean Boussier
260263
Jeff Blaisdell
264+
Jeff Jenkins
261265
jeffkenton
262266
Jeff Pickhardt
263267
jem (graphite)
@@ -479,6 +483,7 @@ Ruslan Osmanov
479483
Ryan Prior
480484
sabaca
481485
Samuel Ainsworth
486+
Sam Wilson
482487
sandeepshetty
483488
Sander AKA Redsandro
484489
santec

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 5.16.0 (2016-06-20)
2+
3+
### Bugfixes
4+
5+
Fix glitches when dragging content caused by the drop indicator receiving mouse events.
6+
7+
Make Control-drag work on Firefox.
8+
9+
Make clicking or selection-dragging at the end of a wrapped line select the right position.
10+
11+
[show-hint addon](http://codemirror.net/doc/manual.html#addon_show-hint): Prevent widget scrollbar from hiding part of the hint text.
12+
13+
[rulers addon](http://codemirror.net/doc/manual.html#addon_rulers): Prevent rulers from forcing a horizontal editor scrollbar.
14+
15+
### New features
16+
17+
[search addon](http://codemirror.net/doc/manual.html#addon_search): Automatically bind search-related keys in persistent dialog.
18+
19+
[sublime keymap](http://codemirror.net/demo/sublime.html): Add a multi-cursor aware smart backspace binding.
20+
121
## 5.15.2 (2016-05-20)
222

323
### Bugfixes

doc/compress.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ <h2>Script compression helper</h2>
3636
<input type="hidden" id="download" name="download" value="codemirror-compressed.js"/>
3737
<p>Version: <select id="version" onchange="setVersion(this);" style="padding: 1px;">
3838
<option value="http://codemirror.net/">HEAD</option>
39+
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=5.16.0;f=">5.16.0</option>
3940
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=5.15.2;f=">5.15.2</option>
4041
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=5.15.0;f=">5.15.0</option>
4142
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=5.14.2;f=">5.14.2</option>

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

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

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.15.2</a>.<br>
99+
Get the current version: <a href="http://codemirror.net/codemirror.zip">5.16.0</a>.<br>
100100
You can see the <a href="https://github.com/codemirror/codemirror" title="Github repository">code</a> or<br>
101101
read the <a href="doc/releases.html">release notes</a>.<br>
102102
There is a <a href="doc/compress.html">minification helper</a>.

lib/codemirror.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8916,7 +8916,7 @@
89168916

89178917
// THE END
89188918

8919-
CodeMirror.version = "5.15.3";
8919+
CodeMirror.version = "5.16.0";
89208920

89218921
return CodeMirror;
89228922
});

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.15.3",
3+
"version":"5.16.0",
44
"main": "lib/codemirror.js",
55
"description": "Full-featured in-browser code editor",
66
"license": "MIT",

0 commit comments

Comments
 (0)