Skip to content

Commit 231e235

Browse files
committed
Mark release 3.19.0
1 parent 865bfc8 commit 231e235

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

doc/compress.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ <h2>Script compression helper</h2>
3333
<input type="hidden" id="download" name="download" value="codemirror-compressed.js"/>
3434
<p>Version: <select id="version" onchange="setVersion(this);" style="padding: 1px;">
3535
<option value="http://codemirror.net/">HEAD</option>
36+
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=3.19.0;f=">3.19</option>
3637
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=3.18.0;f=">3.18</option>
3738
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=3.16.0;f=">3.16</option>
3839
<option value="http://marijnhaverbeke.nl/git/codemirror?a=blob_plain;hb=3.15.0;f=">3.15</option>

doc/manual.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2115,10 +2115,10 @@ <h2>Addons</h2>
21152115
and <code>range</code>, which defines how many lines the addon
21162116
should scan when completing (defaults to 500).</dd>
21172117

2118-
<dt id="addon_sql_hint"><a href="../addon/hint/sql-hint.js"><code>hint/sql-hint.js</code></a></dt>
2118+
<dt id="addon_sql-hint"><a href="../addon/hint/sql-hint.js"><code>hint/sql-hint.js</code></a></dt>
21192119
<dd>A simple SQL hinter. Defines <code>CodeMirror.hint.sql</code>.</dd>
21202120

2121-
<dt id="addon_pig_hint"><a href="../addon/hint/pig-hint.js"><code>hint/pig-hint.js</code></a></dt>
2121+
<dt id="addon_pig-hint"><a href="../addon/hint/pig-hint.js"><code>hint/pig-hint.js</code></a></dt>
21222122
<dd>A simple hinter for <a href="../mode/pig/index.html">Pig Latin</a>. Defines <code>CodeMirror.hint.pig</code>.</dd>
21232123

21242124
<dt id="addon_match-highlighter"><a href="../addon/search/match-highlighter.js"><code>search/match-highlighter.js</code></a></dt>

doc/releases.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,16 @@ <h2>Release notes and version history</h2>
2828

2929
<h2>Version 3.x</h2>
3030

31+
<p class="rel">21-10-2013: <a href="http://codemirror.net/codemirror-3.19.zip">Version 3.19</a>:</p>
32+
33+
<ul class="rel-note">
34+
<li>New modes: <a href="../mode/eiffel/index.html">Eiffel</a>, <a href="../mode/gherkin/index.html">Gherkin</a>, <a href="../mode/sql/?mime=text/x-mssql">MSSQL dialect</a>.</li>
35+
<li>New addons: <a href="manual.html#addon_hardwrap">hardwrap</a>, <a href="manual.html#addon_sql-hint">sql-hint</a>.</li>
36+
<li>New theme: <a href="../demo/theme.html?mbo">MBO</a>.</li>
37+
<li>Add <a href="manual.html#token_style_line">support</a> for line-level styling from mode tokenizers.</li>
38+
<li>Full <a href="https://github.com/marijnh/CodeMirror/compare/3.18.0...3.19.0">list of patches</a>.</li>
39+
</ul>
40+
3141
<p class="rel">23-09-2013: <a href="http://codemirror.net/codemirror-3.18.zip">Version 3.18</a>:</p>
3242

3343
<p class="rel-note">Emergency release to fix a problem in 3.17

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ <h2>This is CodeMirror</h2>
8484
</script>
8585
<div style="position: relative; margin: 1em 0;">
8686
<a class="bigbutton left" href="http://codemirror.net/codemirror.zip">DOWNLOAD LATEST RELEASE</a>
87-
<div><strong>version 3.18</strong> (<a href="doc/releases.html">Release notes</a>)</div>
87+
<div><strong>version 3.19</strong> (<a href="doc/releases.html">Release notes</a>)</div>
8888
<div>or use the <a href="doc/compress.html">minification helper</a></div>
8989
<div style="position: absolute; top: 0; right: 0; text-align: right">
9090
<span class="bigbutton right" onclick="document.getElementById('paypal').submit();">DONATE WITH PAYPAL</span>

lib/codemirror.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5902,7 +5902,7 @@ window.CodeMirror = (function() {
59025902

59035903
// THE END
59045904

5905-
CodeMirror.version = "3.18.1";
5905+
CodeMirror.version = "3.19.0";
59065906

59075907
return CodeMirror;
59085908
})();

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":"3.18.1",
3+
"version":"3.19.0",
44
"main": "lib/codemirror.js",
55
"description": "In-browser code editing made bearable",
66
"licenses": [{"type": "MIT",

0 commit comments

Comments
 (0)