From 6e39e1dbf6fdb3358e4ade150eb25c62b7a3bad7 Mon Sep 17 00:00:00 2001 From: Rasmus Thomsen Date: Sat, 9 Mar 2019 10:30:53 +0100 Subject: [PATCH] release: release 0.5.4 --- Cargo.lock | 2 +- Cargo.toml | 2 +- Changelog.md | 29 ++++++++++++++++++++++ data/com.github.Cogitri.gxi.appdata.xml.in | 5 ++++ meson.build | 2 +- 5 files changed, 37 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 90fa655..2019129 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -605,7 +605,7 @@ dependencies = [ [[package]] name = "gxi" -version = "0.5.3" +version = "0.5.4" dependencies = [ "cairo-rs 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index e4161f2..db1d772 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gxi" -version = "0.5.3" +version = "0.5.4" authors = ["Rasmus Thomsen ", "Brian Vincent "] homepage = "https://github.com/Cogitri/gxi" description = "GTK frontend, written in Rust, for the xi editor" diff --git a/Changelog.md b/Changelog.md index 3f48a66..b9589b8 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,32 @@ +## Changes in v0.5.4 + +### Feature changes + + - (i18n): create nb_NO translation + - (edit_view): open/close find&replace dialog upon triggering action again + - (about_win): display icon and translator credit + - (edit_view): make linecount more consistent + +### Bugfixes + + - (appdata): fix typo in 0.5.0 changelog + - (*): use ellipsis (…) instead of three dots (...) + - (i18n): update lang Norwegian Bokmål + - (i18n): update lang Portuguese (Brazil) + - (edit_view): linecount is its own widget; don't include it in x/y -> cell calculations + - (edit_view): don't try to add Searchbar to two boxes + - (i18n): update translations + - (edit_view): fix drawing spaces after tabs + - (edit_view): fix horizotal scrollbar width on empty document + - (edit_view): fix linecount placement upon opening search/replace + - (edit_view): intialize EditView with font set by Config + - (edit_view): fix font size calculation on font changed + - (prefs_win): Remove unsupported properties + - (data): resize icons to 128x128 + - (build): remove rust-target option + - (edit_view): redraw upon font changes + - (edit_view): fix width of linecount for numbers >=100 + ## Changes in v0.5.3 ### Feature changes diff --git a/data/com.github.Cogitri.gxi.appdata.xml.in b/data/com.github.Cogitri.gxi.appdata.xml.in index 27878ca..aba22a4 100644 --- a/data/com.github.Cogitri.gxi.appdata.xml.in +++ b/data/com.github.Cogitri.gxi.appdata.xml.in @@ -32,6 +32,11 @@ + + +

This release made the linecount nicer (as in more visible/readable). gxi also offers a Norwegian Bokmål translation.

+
+

Ask user if changes should be saved upon closing. Also makes panics more readable.

diff --git a/meson.build b/meson.build index bf73a07..4bc98ca 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'gxi', 'rust', - version: '0.5.3', + version: '0.5.4', license: 'MIT', )