From 04de44bbbf5f9dd38458f6d21155e60ec79d2acb Mon Sep 17 00:00:00 2001 From: Felix Zwettler Date: Tue, 25 Oct 2022 11:32:03 +0200 Subject: [PATCH] update to v0.5.6 release --- Cargo.lock | 2 +- meson.build | 2 +- rnote-fileformats/src/rnoteformat.rs | 2 +- rnote-ui/Cargo.toml | 2 +- rnote-ui/data/app.metainfo.xml.in.in | 6 +++--- rnote-ui/src/config.rs | 6 +++--- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9c3167c51c..64b2263641 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3262,7 +3262,7 @@ dependencies = [ [[package]] name = "rnote" -version = "0.5.6-beta1" +version = "0.5.6" dependencies = [ "anyhow", "cairo-rs", diff --git a/meson.build b/meson.build index 4a468bdd57..9518552e94 100644 --- a/meson.build +++ b/meson.build @@ -5,7 +5,7 @@ project( meson_version: '>= 0.56', ) # add a patch suffix for alpha or beta version, starting with a dash. -patch = '-beta1' +patch = '' i18n = import('i18n') gnome = import('gnome') diff --git a/rnote-fileformats/src/rnoteformat.rs b/rnote-fileformats/src/rnoteformat.rs index 77348c6a66..81a4cbde70 100644 --- a/rnote-fileformats/src/rnoteformat.rs +++ b/rnote-fileformats/src/rnoteformat.rs @@ -74,7 +74,7 @@ impl FileFormatLoader for RnotefileMaj0Min5 { impl FileFormatSaver for RnotefileMaj0Min5 { fn save_as_bytes(&self, file_name: &str) -> anyhow::Result> { let output = RnotefileWrapper { - version: semver::Version::parse("0.5.6-beta1").unwrap(), + version: semver::Version::parse("0.5.6").unwrap(), data: serde_json::to_value(self)?, }; diff --git a/rnote-ui/Cargo.toml b/rnote-ui/Cargo.toml index 60d07342d4..07c1bbc286 100644 --- a/rnote-ui/Cargo.toml +++ b/rnote-ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnote" -version = "0.5.6-beta1" +version = "0.5.6" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/rnote-ui/data/app.metainfo.xml.in.in b/rnote-ui/data/app.metainfo.xml.in.in index d9055b77bc..9e41997544 100644 --- a/rnote-ui/data/app.metainfo.xml.in.in +++ b/rnote-ui/data/app.metainfo.xml.in.in @@ -66,12 +66,12 @@ - + -

this release changes: (WIP)

+

this release changes:

  • feature: a new brush option to select between different path modelers. Added a physics-based modelling type (as default) which decreases jitter and improves handwriting smoothness. It also includes a predictor to minimize input lag.
  • -
  • feature: switch between different cursors while hovering and drawing, with new "teardrop" cursors in different variations and sizes.
  • +
  • feature: switch between different cursors while hovering and drawing, with new "teardrop", "crosshair" and "beam" cursors in different variations and sizes.
  • feature: a new `duplicate` file action and a new `create directory` workspace action (thanks @TornaxO7 !)
  • improved: better palm rejection while drawing with a stylus
  • improved: better export filenames
  • diff --git a/rnote-ui/src/config.rs b/rnote-ui/src/config.rs index e1e818ebeb..351f1c7a30 100644 --- a/rnote-ui/src/config.rs +++ b/rnote-ui/src/config.rs @@ -13,8 +13,8 @@ pub const APP_ISSUES_URL: &str = "https://github.com/flxzt/rnote/issues"; pub const APP_SUPPORT_URL: &str = "https://github.com/flxzt/rnote/discussions"; pub const APP_DONATE_URL: &str = "https://rnote.flxzt.net/donate/"; pub const GETTEXT_PACKAGE: &str = "rnote"; -pub const LOCALEDIR: &str = "/usr/share/locale"; +pub const LOCALEDIR: &str = "/app/share/locale"; -pub const PKG_DATA_DIR: &str = "/usr/share/rnote"; -pub const RESOURCES_FILE: &str = "/usr/share/rnote/resources.gresource"; +pub const PKG_DATA_DIR: &str = "/app/share/rnote"; +pub const RESOURCES_FILE: &str = "/app/share/rnote/resources.gresource"; pub const PROFILE: &str = "devel";