v2.1.3 (#1712)
* changelog: update changelog for v2.1.3 * update version in metadata * changelog: fix formatting issue and release date * appstream: update release date
This commit is contained in:
parent
2e26a0838c
commit
14260166fc
|
@ -9,7 +9,7 @@ on:
|
||||||
inputs:
|
inputs:
|
||||||
version:
|
version:
|
||||||
description: Release Version
|
description: Release Version
|
||||||
default: v2.1.2
|
default: v2.1.3
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
30
changelog.md
30
changelog.md
|
@ -1,5 +1,34 @@
|
||||||
# Changes Log
|
# Changes Log
|
||||||
|
|
||||||
|
## [2.1.3] - 2024-01-29
|
||||||
|
|
||||||
|
This release addresses severe bugs not found in previous releases.
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
* Fix `doc:create-cursor-{previous,next}-line` with tabs
|
||||||
|
([#1697](https://github.com/lite-xl/lite-xl/pull/1697))
|
||||||
|
|
||||||
|
* Fix heap buffer overflow and memory leaks in process and renderer API
|
||||||
|
([#1705](https://github.com/lite-xl/lite-xl/pull/1705))
|
||||||
|
|
||||||
|
* Improve Python number syntax highlighting
|
||||||
|
([#1704](https://github.com/lite-xl/lite-xl/pull/1704))
|
||||||
|
|
||||||
|
* Fix inconsistent NagView options on `doc:save`
|
||||||
|
([#1696](https://github.com/lite-xl/lite-xl/pull/1696))
|
||||||
|
|
||||||
|
* Fix crashes with autoreload when files are deleted externally and replaced with a directory.
|
||||||
|
([#1698](https://github.com/lite-xl/lite-xl/pull/1698))
|
||||||
|
|
||||||
|
* Improve JavaScript number syntax highlighting
|
||||||
|
([#1710](https://github.com/lite-xl/lite-xl/pull/1710))
|
||||||
|
|
||||||
|
### Other Changes
|
||||||
|
|
||||||
|
* Process API style changes
|
||||||
|
([#1709](https://github.com/lite-xl/lite-xl/pull/1709))
|
||||||
|
|
||||||
## [2.1.2] - 2023-12-29
|
## [2.1.2] - 2023-12-29
|
||||||
|
|
||||||
This release addresses some issues present in the previous release,
|
This release addresses some issues present in the previous release,
|
||||||
|
@ -1422,6 +1451,7 @@ A new global variable `USERDIR` is exposed to point to the user's directory.
|
||||||
|
|
||||||
- subpixel font rendering with gamma correction
|
- subpixel font rendering with gamma correction
|
||||||
|
|
||||||
|
[2.1.3]: https://github.com/lite-xl/lite-xl/releases/tag/v2.1.3
|
||||||
[2.1.2]: https://github.com/lite-xl/lite-xl/releases/tag/v2.1.2
|
[2.1.2]: https://github.com/lite-xl/lite-xl/releases/tag/v2.1.2
|
||||||
[2.1.1]: https://github.com/lite-xl/lite-xl/releases/tag/v2.1.1
|
[2.1.1]: https://github.com/lite-xl/lite-xl/releases/tag/v2.1.1
|
||||||
[2.1.0]: https://github.com/lite-xl/lite-xl/releases/tag/v2.1.0
|
[2.1.0]: https://github.com/lite-xl/lite-xl/releases/tag/v2.1.0
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
project('lite-xl',
|
project('lite-xl',
|
||||||
['c'],
|
['c'],
|
||||||
version : '2.1.2',
|
version : '2.1.3',
|
||||||
license : 'MIT',
|
license : 'MIT',
|
||||||
meson_version : '>= 0.56',
|
meson_version : '>= 0.56',
|
||||||
default_options : [
|
default_options : [
|
||||||
|
|
|
@ -29,6 +29,6 @@
|
||||||
</provides>
|
</provides>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
<release version="2.1.2" date="2023-12-29" />
|
<release version="2.1.3" date="2024-01-29" />
|
||||||
</releases>
|
</releases>
|
||||||
</component>
|
</component>
|
||||||
|
|
Loading…
Reference in New Issue