Skip to content

Commit a0553b6

Browse files
committed
Merge remote-tracking branch 'codemirror/master'
2 parents b70c850 + b84f160 commit a0553b6

File tree

7 files changed

+38
-4
lines changed

7 files changed

+38
-4
lines changed

AUTHORS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ Christopher Pfohl
156156
Christopher Wallis
157157
Chunliang Lyu
158158
ciaranj
159+
clso
159160
CodeAnimal
160161
CodeBitt
161162
coderaiser
@@ -223,6 +224,7 @@ Emmanuel Schanzer
223224
Enam Mijbah Noor
224225
Eric Allam
225226
Eric Bogard
227+
Erik Demaine
226228
Erik Welander
227229
eustas
228230
Fabien Dubosson
@@ -446,6 +448,7 @@ Lorenzo Stoakes
446448
Louis Mauchet
447449
Luca Fabbri
448450
Luciano Longo
451+
Luciano Santana
449452
Lu Fangjian
450453
Luke Browning
451454
Luke Granger-Brown
@@ -671,6 +674,7 @@ Saul Costa
671674
S. Chris Colbert
672675
SCLINIC\jdecker
673676
Scott Aikin
677+
Scott Feeney
674678
Scott Goodhew
675679
Sebastian Wilzbach
676680
Sebastian Zaha
@@ -761,6 +765,7 @@ TSUYUSATO Kitsune
761765
Tugrul Elmas
762766
twifkak
763767
Tyler Long
768+
Vadim Dyachenko
764769
Vadzim Ramanenka
765770
Vaibhav Sagar
766771
VapidWorx

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 5.46.0 (2019-04-22)
2+
3+
### Bug fixes
4+
5+
Properly turn off `autocorrect` and `autocapitalize` in the editor's input field.
6+
7+
Fix issue where calling [`swapDoc`](https://codemirror.net/doc/manual.html#swapDoc) during a mouse drag would cause an error.
8+
9+
Remove a legacy key code for delete that is used for F16 on keyboards that have such a function key.
10+
11+
[matchesonscrollbar addon](https://codemirror.net/doc/manual.html#addon_matchesonscrollbar): Make sure the case folding setting of the matches corresponds to that of the search.
12+
13+
[swift mode](https://codemirror.net/mode/swift): Fix handling of empty strings.
14+
15+
### New features
16+
17+
Allow [gutters](https://codemirror.net/doc/manual.html#option_gutters) to specify direct CSS stings.
18+
119
## 5.45.0 (2019-03-20)
220

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

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

doc/releases.html

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

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

33+
<p class="rel">22-04-2019: <a href="https://codemirror.net/codemirror-5.46.0.zip">Version 5.46.0</a>:</p>
34+
35+
<ul class="rel-note">
36+
<li>Allow <a href="https://codemirror.net/doc/manual.html#option_gutters">gutters</a> to specify direct CSS stings.</li>
37+
<li>Properly turn off <code>autocorrect</code> and <code>autocapitalize</code> in the editor’s input field.</li>
38+
<li>Fix issue where calling <a href="https://codemirror.net/doc/manual.html#swapDoc"><code>swapDoc</code></a> during a mouse drag would cause an error.</li>
39+
<li>Remove a legacy key code for delete that is used for F16 on keyboards that have such a function key.</li>
40+
<li><a href="https://codemirror.net/doc/manual.html#addon_matchesonscrollbar">matchesonscrollbar addon</a>: Make sure the case folding setting of the matches corresponds to that of the search.</li>
41+
<li><a href="https://codemirror.net/mode/swift">swift mode</a>: Fix handling of empty strings.</li>
42+
</ul>
43+
3344
<p class="rel">20-03-2019: <a href="https://codemirror.net/codemirror-5.45.0.zip">Version 5.45.0</a>:</p>
3445

3546
<ul class="rel-note">

index.html

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

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.45.1",
3+
"version": "5.46.1",
44
"main": "lib/codemirror.js",
55
"style": "lib/codemirror.css",
66
"author": {

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.45.1"
69+
CodeMirror.version = "5.46.1"

0 commit comments

Comments
 (0)