Skip to content

Commit 805b5a4

Browse files
committed
Mark release 2.33
1 parent 3704970 commit 805b5a4

File tree

4 files changed

+40
-39
lines changed

4 files changed

+40
-39
lines changed

doc/compress.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMi
2727
<input type="hidden" id="download" name="download" value="codemirror-compressed.js"/>
2828
<p>Version: <select id="version" onchange="setVersion(this);" style="padding: 1px">
2929
<option value="http://codemirror.net/">HEAD</option>
30+
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.33;f=">2.33</option>
3031
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.32;f=">2.32</option>
3132
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.31;f=">2.31</option>
3233
<option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.3;f=">2.3</option>

doc/oldrelease.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,18 @@ <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMi
1616

1717
</pre>
1818

19+
<p class="rel">27-10-2011: <a href="http://codemirror.net/codemirror-2.16.zip">Version 2.16</a>:</p>
20+
<ul class="rel-note">
21+
<li>Add <a href="../mode/perl/index.html">Perl</a>, <a href="../mode/rust/index.html">Rust</a>, <a href="../mode/tiddlywiki/index.html">TiddlyWiki</a>, and <a href="../mode/groovy/index.html">Groovy</a> modes.</li>
22+
<li>Dragging text inside the editor now moves, rather than copies.</li>
23+
<li>Add a <a href="manual.html#coordsFromIndex"><code>coordsFromIndex</code></a> method.</li>
24+
<li><strong>API change</strong>: <code>setValue</code> now no longer clears history. Use <a href="manual.html#clearHistory"><code>clearHistory</code></a> for that.</li>
25+
<li><strong>API change</strong>: <a href="manual.html#markText"><code>markText</code></a> now
26+
returns an object with <code>clear</code> and <code>find</code>
27+
methods. Marked text is now more robust when edited.</li>
28+
<li>Fix editing code with tabs in Internet Explorer.</li>
29+
</ul>
30+
1931
<p class="rel">26-09-2011: <a href="http://codemirror.net/codemirror-2.15.zip">Version 2.15</a>:</p>
2032
<p class="rel-note">Fix bug that snuck into 2.14: Clicking the
2133
character that currently has the cursor didn't re-focus the

index.html

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,20 @@ <h2>Reading material</h2>
276276

277277
<h2 id=releases>Releases</h2>
278278

279+
<p class="rel">23-08-2012: <a href="http://codemirror.net/codemirror-2.33.zip">Version 2.33</a>:</p>
280+
281+
<ul class="rel-note">
282+
<li>New mode: <a href="mode/sieve/">Sieve</a>.</li>
283+
<li>New <a href="doc/manual.html#getViewport"><code>getViewPort</code></a> and <a href="doc/manual.html#option_onViewportChange"><code>onViewportChange</code></a> API.</li>
284+
<li><a href="doc/manual.html#option_cursorBlinkRate">Configurable</a> cursor blink rate.</li>
285+
<li>Make binding a key to <code>false</code> disabling handling (again).</li>
286+
<li>Show non-printing characters as red dots.</li>
287+
<li>More tweaks to the scrolling model.</li>
288+
<li>Expanded testsuite. Basic linter added.</li>
289+
<li>Remove most uses of <code>innerHTML</code>. Remove <code>CodeMirror.htmlEscape</code>.</li>
290+
<li><a href="https://github.com/marijnh/CodeMirror/compare/v2.32...v2.33">Full list</a> of patches.</li>
291+
</ul>
292+
279293
<p class="rel">23-07-2012: <a href="http://codemirror.net/codemirror-2.32.zip">Version 2.32</a>:</p>
280294

281295
<p class="rel-note">Emergency fix for a bug where an editor with
@@ -433,18 +447,6 @@ <h2 id=releases>Releases</h2>
433447
<li>Various fixes to modes.</li>
434448
</ul>
435449

436-
<p class="rel">27-10-2011: <a href="http://codemirror.net/codemirror-2.16.zip">Version 2.16</a>:</p>
437-
<ul class="rel-note">
438-
<li>Add <a href="mode/perl/index.html">Perl</a>, <a href="mode/rust/index.html">Rust</a>, <a href="mode/tiddlywiki/index.html">TiddlyWiki</a>, and <a href="mode/groovy/index.html">Groovy</a> modes.</li>
439-
<li>Dragging text inside the editor now moves, rather than copies.</li>
440-
<li>Add a <a href="doc/manual.html#coordsFromIndex"><code>coordsFromIndex</code></a> method.</li>
441-
<li><strong>API change</strong>: <code>setValue</code> now no longer clears history. Use <a href="doc/manual.html#clearHistory"><code>clearHistory</code></a> for that.</li>
442-
<li><strong>API change</strong>: <a href="doc/manual.html#markText"><code>markText</code></a> now
443-
returns an object with <code>clear</code> and <code>find</code>
444-
methods. Marked text is now more robust when edited.</li>
445-
<li>Fix editing code with tabs in Internet Explorer.</li>
446-
</ul>
447-
448450
<p><a href="doc/oldrelease.html">Older releases...</a></p>
449451

450452
</div></div>

package.json

Lines changed: 13 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,21 @@
11
{
22
"name": "CodeMirror",
3-
"version":"2.32.0",
3+
"version":"2.33.0",
44
"main": "codemirror.js",
55
"description": "In-browser code editing made bearable",
6-
"licenses": [
7-
{
8-
"type": "MIT",
9-
"url": "http://codemirror.net/LICENSE"
10-
}
11-
],
12-
"directories": {
13-
"lib": "./lib"
14-
},
15-
"scripts": {
16-
"test": "node ./test/run.js"
17-
},
18-
"devDependencies": {
19-
"node-static": "0.6.0"
20-
},
6+
"licenses": [{"type": "MIT",
7+
"url": "http://codemirror.net/LICENSE"}],
8+
"directories": {"lib": "./lib"},
9+
"scripts": {"test": "node ./test/run.js"},
10+
"devDependencies": {"node-static": "0.6.0"},
2111
"bugs": "http://github.com/marijnh/CodeMirror/issues",
2212
"keywords": ["JavaScript", "CodeMirror", "Editor"],
2313
"homepage": "http://codemirror.net",
24-
"maintainers":[ {
25-
"name": "Marijn Haverbeke",
26-
"email": "marijnh@gmail.com",
27-
"web": "http://codemirror.net"
28-
}],
29-
"repositories": [
30-
{
31-
"type": "git",
32-
"url": "https://github.com/marijnh/CodeMirror.git"
33-
}
34-
]
14+
"maintainers":[{"name": "Marijn Haverbeke",
15+
"email": "marijnh@gmail.com",
16+
"web": "http://marijnhaverbeke.nl"}],
17+
"repositories": [{"type": "git",
18+
"url": "http://marijnhaverbeke.nl/git/codemirror"},
19+
{"type": "git",
20+
"url": "https://github.com/marijnh/CodeMirror.git"}]
3521
}

0 commit comments

Comments
 (0)