Mark version 5.65.9

This commit is contained in:
Marijn Haverbeke 2022-09-20 14:36:09 +02:00
parent ec72109ace
commit e5071ebb0b
7 changed files with 26 additions and 4 deletions

View File

@ -934,6 +934,7 @@ Vestimir Markov
vf
Victor Bocharsky
Vincent Woo
Vladislav Voitenok
Volker Mische
vtripolitakis
wdouglashall

View File

@ -1,3 +1,15 @@
## 5.65.9 (2022-09-20)
### Bug fixes
Add a workaround for a regression in Chrome 105 that could cause content below the editor to not receive mouse events.
[show-hint addon](https://codemirror.net/5/doc/manual.html#addon_show-hint): Resize the tooltip if it doesn't fit the screen.
[swift mode](https://codemirror.net/5/mode/swift): Fix tokenizing of block comments.
[jinja2 mode](https://codemirror.net/5/mode/jinja2/): Support line statements.
## 5.65.8 (2022-08-20)
### Bug fixes

View File

@ -70,7 +70,7 @@
<section class=first id=overview>
<h2 style="position: relative">
User manual and reference guide
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.65.8</span>
<span style="color: #888; font-size: 1rem; position: absolute; right: 0; bottom: 0">version 5.65.9</span>
</h2>
<p>CodeMirror is a code-editor component that can be embedded in

View File

@ -34,6 +34,15 @@
<h2>Version 5.x</h2>
<p class="rel">20-09-2022: <a href="https://codemirror.net/5/codemirror-5.65.9.zip">Version 5.65.9</a>:</p>
<ul class="rel-note">
<li>Add a workaround for a regression in Chrome 105 that could cause content below the editor to not receive mouse events.</li>
<li><a href="https://codemirror.net/5/doc/manual.html#addon_show-hint">show-hint addon</a>: Resize the tooltip if it doesnt fit the screen.</li>
<li><a href="https://codemirror.net/5/mode/swift">swift mode</a>: Fix tokenizing of block comments.</li>
<li><a href="https://codemirror.net/5/mode/jinja2/">jinja2 mode</a>: Support line statements.</li>
</ul>
<p class="rel">20-08-2022: <a href="https://codemirror.net/5/codemirror-5.65.8.zip">Version 5.65.8</a>:</p>
<ul class="rel-note">

View File

@ -92,7 +92,7 @@
</script>
<div class=actions>
Get the current version: <a href="https://codemirror.net/5/codemirror.zip">5.65.8</a>.<br>
Get the current version: <a href="https://codemirror.net/5/codemirror.zip">5.65.9</a>.<br>
You can see the <a href="https://github.com/codemirror/codemirror5" title="GitHub repository">code</a>,<br>
read the <a href="doc/releases.html">release notes</a>,<br>
or study the <a href="doc/manual.html">user manual</a>.

View File

@ -1,6 +1,6 @@
{
"name": "codemirror",
"version": "5.65.8",
"version": "5.65.9",
"main": "lib/codemirror.js",
"style": "lib/codemirror.css",
"author": {

View File

@ -66,4 +66,4 @@ import { addLegacyProps } from "./legacy.js"
addLegacyProps(CodeMirror)
CodeMirror.version = "5.65.8"
CodeMirror.version = "5.65.9"