From 38effc1fde0cdbfca0ac6c19b29830ca7b093ce2 Mon Sep 17 00:00:00 2001 From: Felix Zwettler Date: Sun, 12 Feb 2023 22:37:33 +0100 Subject: [PATCH] update to v0.5.14-beta1 --- Cargo.lock | 4 ++-- meson.build | 4 ++-- rnote-cli/Cargo.toml | 2 +- rnote-fileformats/src/rnoteformat/mod.rs | 2 +- rnote-ui/Cargo.toml | 2 +- rnote-ui/data/app.metainfo.xml.in.in | 13 +++++++++++++ 6 files changed, 20 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 940f0a2232..0063cafbb9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3441,7 +3441,7 @@ dependencies = [ [[package]] name = "rnote" -version = "0.5.13" +version = "0.5.14" dependencies = [ "anyhow", "cairo-rs", @@ -3482,7 +3482,7 @@ dependencies = [ [[package]] name = "rnote-cli" -version = "0.5.13" +version = "0.5.14" dependencies = [ "anyhow", "clap 4.1.4", diff --git a/meson.build b/meson.build index a4207b4c04..64e4fd9caf 100644 --- a/meson.build +++ b/meson.build @@ -1,11 +1,11 @@ project( 'rnote', ['rust', 'cpp'], - version: '0.5.13', + version: '0.5.14', meson_version: '>= 0.57', ) # add a patch suffix for alpha or beta version, starting with a dash. -patch = '' +patch = '-beta1' i18n = import('i18n') gnome = import('gnome') diff --git a/rnote-cli/Cargo.toml b/rnote-cli/Cargo.toml index c2ac46b8cc..fe86007615 100644 --- a/rnote-cli/Cargo.toml +++ b/rnote-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnote-cli" -version = "0.5.13" +version = "0.5.14" edition = "2021" rust-version = "1.65" diff --git a/rnote-fileformats/src/rnoteformat/mod.rs b/rnote-fileformats/src/rnoteformat/mod.rs index b051d4c9cf..7cb359f783 100644 --- a/rnote-fileformats/src/rnoteformat/mod.rs +++ b/rnote-fileformats/src/rnoteformat/mod.rs @@ -105,7 +105,7 @@ impl FileFormatLoader for RnoteFile { impl FileFormatSaver for RnoteFile { fn save_as_bytes(&self, file_name: &str) -> anyhow::Result> { let output = RnotefileWrapper { - version: semver::Version::parse("0.5.13").unwrap(), + version: semver::Version::parse("0.5.14").unwrap(), data: serde_json::to_value(self).context("to_value() for RnoteFile failed")?, }; diff --git a/rnote-ui/Cargo.toml b/rnote-ui/Cargo.toml index 369435940a..0cebebb78d 100644 --- a/rnote-ui/Cargo.toml +++ b/rnote-ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnote" -version = "0.5.13" +version = "0.5.14" edition = "2021" rust-version = "1.65" build = "build.rs" diff --git a/rnote-ui/data/app.metainfo.xml.in.in b/rnote-ui/data/app.metainfo.xml.in.in index 1fc990dc07..0ae006c147 100644 --- a/rnote-ui/data/app.metainfo.xml.in.in +++ b/rnote-ui/data/app.metainfo.xml.in.in @@ -72,6 +72,19 @@ + + +

this release changes: (BETA)

+
    +
  • improvement: reduce toolbar overlays margins when scrollbar is disabled
  • +
  • improvement: Indicate hover over nodes in the selector and typewriter
  • +
  • UI: following Gnome HIG writing style more closely and fixed string inconsistencies
  • +
  • fix: crash when navigating up/down into non-ASCII text
  • +
  • fix: crash on launch when using a custom stylesheet
  • +
  • fix: rough style fill calculation
  • +
+
+

this release changes: