Skip to content

Commit

Permalink
update to v0.5.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Oct 25, 2022
1 parent 5e77cde commit 04de44b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
2 changes: 1 addition & 1 deletion rnote-fileformats/src/rnoteformat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ impl FileFormatLoader for RnotefileMaj0Min5 {
impl FileFormatSaver for RnotefileMaj0Min5 {
fn save_as_bytes(&self, file_name: &str) -> anyhow::Result<Vec<u8>> {
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)?,
};

Expand Down
2 changes: 1 addition & 1 deletion rnote-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions rnote-ui/data/app.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@

<!-- /// Translators: Don't translate the changelog -->
<releases>
<release version="0.5.6-beta1" date="2022-10-18">
<release version="0.5.6" date="2022-10-25">
<description>
<p>this release changes: (WIP)</p>
<p>this release changes:</p>
<ul>
<li>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.</li>
<li>feature: switch between different cursors while hovering and drawing, with new "teardrop" cursors in different variations and sizes.</li>
<li>feature: switch between different cursors while hovering and drawing, with new "teardrop", "crosshair" and "beam" cursors in different variations and sizes.</li>
<li>feature: a new `duplicate` file action and a new `create directory` workspace action (thanks @TornaxO7 !)</li>
<li>improved: better palm rejection while drawing with a stylus</li>
<li>improved: better export filenames</li>
Expand Down
6 changes: 3 additions & 3 deletions rnote-ui/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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";

0 comments on commit 04de44b

Please sign in to comment.