diff options
| -rw-r--r-- | .github/workflows/release.yml | 2 | ||||
| -rw-r--r-- | changelog.md | 28 | ||||
| -rw-r--r-- | meson.build | 2 | ||||
| -rw-r--r-- | resources/linux/org.pragtical.pragtical.appdata.xml | 2 |
4 files changed, 31 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6d03d262..30c4ceda 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ on: inputs: version: description: Release Version - default: v3.4.0 + default: v3.4.1 required: true diff --git a/changelog.md b/changelog.md index b764b477..d97df611 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,32 @@ # Changes Log +## [3.4.1] - 2024-06-28 + +### Fixes + +* If no surface return on font_render_glyph + ([#114](https://github.com/pragtical/pragtical/pull/114)) + +* Restore support for tokenizer empty matches with subsyntax + ([#111](https://github.com/pragtical/pragtical/pull/112)) + +* If encoding detect fails check if UTF-16/32 LE/BE + ([#115](https://github.com/pragtical/pragtical/pull/115)) + +### Enhancements + +* Better matching of placeholder chars (_) on lua + ([#112](https://github.com/pragtical/pragtical/pull/112)) + +* Better restore of window mode/size on startup + ([#113](https://github.com/pragtical/pragtical/pull/113)) + +* Added custom symbols pattern to language c and cpp + ([#116](https://github.com/pragtical/pragtical/pull/116)) + +* autocomplete: strip punctuations from partials + ([#117](https://github.com/pragtical/pragtical/pull/117)) + ## [3.4.0] - 2024-06-25 ### New Features @@ -2022,6 +2049,7 @@ A new global variable `USERDIR` is exposed to point to the user's directory. - subpixel font rendering with gamma correction +[3.4.1]: https://github.com/pragtical/pragtical/releases/tag/v3.4.1 [3.4.0]: https://github.com/pragtical/pragtical/releases/tag/v3.4.0 [3.3.1]: https://github.com/pragtical/pragtical/releases/tag/v3.3.1 [3.3.0]: https://github.com/pragtical/pragtical/releases/tag/v3.3.0 diff --git a/meson.build b/meson.build index f7813cf7..f7ae149f 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('pragtical', ['c'], - version : '3.4.0', + version : '3.4.1', license : 'MIT', meson_version : '>= 0.56', default_options : [ diff --git a/resources/linux/org.pragtical.pragtical.appdata.xml b/resources/linux/org.pragtical.pragtical.appdata.xml index b4a773ad..dacacc97 100644 --- a/resources/linux/org.pragtical.pragtical.appdata.xml +++ b/resources/linux/org.pragtical.pragtical.appdata.xml @@ -29,6 +29,6 @@ </provides> <releases> - <release version="3.4.0" date="2024-06-25" /> + <release version="3.4.1" date="2024-06-28" /> </releases> </component> |
