From 9d0eea31722257582dcedf809d3ec45ba41d0de6 Mon Sep 17 00:00:00 2001 From: Felix Zwettler Date: Sun, 30 Oct 2022 13:02:40 +0100 Subject: [PATCH] update to v0.5.7 --- Cargo.lock | 42 ++++++++---------- meson.build | 2 +- .../{v0.4.png => v0.4.0.png} | Bin rnote-fileformats/src/rnoteformat.rs | 2 +- rnote-ui/Cargo.toml | 2 +- rnote-ui/data/app.metainfo.xml.in.in | 12 +++++ rnote-ui/src/config.rs | 2 +- 7 files changed, 34 insertions(+), 28 deletions(-) rename misc/screenshots-archive/{v0.4.png => v0.4.0.png} (100%) diff --git a/Cargo.lock b/Cargo.lock index d799cbf04a..e9ab389276 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -407,9 +407,9 @@ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" [[package]] name = "cc" -version = "1.0.73" +version = "1.0.74" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" +checksum = "581f5dba903aac52ea3feb5ec4810848460ee833876f1f9b0fdeab1f19091574" dependencies = [ "jobserver", ] @@ -512,9 +512,9 @@ dependencies = [ [[package]] name = "cmake" -version = "0.1.48" +version = "0.1.49" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8ad8cef104ac57b68b89df3208164d228503abbdce70f6880ffa3d970e7443a" +checksum = "db34956e100b30725f2eb215f90d4871051239535632f84fea3bc92722c66b7c" dependencies = [ "cc", ] @@ -1743,9 +1743,9 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "iana-time-zone" -version = "0.1.52" +version = "0.1.53" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c422fb4f6e80490d0afcacf5c3de2c22ab8e631e0cd7cb2d4a3baf844720a52a" +checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" dependencies = [ "android_system_properties", "core-foundation-sys", @@ -2275,7 +2275,7 @@ dependencies = [ "num-rational 0.4.1", "num-traits", "serde", - "simba 0.7.2", + "simba 0.7.3", "typenum", ] @@ -2573,9 +2573,9 @@ dependencies = [ [[package]] name = "once_cell" -version = "1.15.0" +version = "1.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1" +checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" [[package]] name = "optional" @@ -2686,7 +2686,7 @@ dependencies = [ "num-traits", "rustc-hash", "serde", - "simba 0.7.2", + "simba 0.7.3", "slab", "smallvec", "spade", @@ -3264,7 +3264,7 @@ dependencies = [ [[package]] name = "rnote" -version = "0.5.6" +version = "0.5.7" dependencies = [ "anyhow", "cairo-rs", @@ -3504,15 +3504,15 @@ dependencies = [ "ttf-parser 0.12.3", "unicode-bidi-mirroring", "unicode-ccc", - "unicode-general-category 0.4.0", + "unicode-general-category", "unicode-script", ] [[package]] name = "rustybuzz" -version = "0.5.3" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3860c1b453ef0366413ecea7e45c2787580bdabd30d055bffb5014413ee48eb3" +checksum = "a617c811f5c9a7060fe511d35d13bf5b9f0463ce36d63ce666d05779df2b4eba" dependencies = [ "bitflags", "bytemuck", @@ -3520,7 +3520,7 @@ dependencies = [ "ttf-parser 0.15.2", "unicode-bidi-mirroring", "unicode-ccc", - "unicode-general-category 0.6.0", + "unicode-general-category", "unicode-script", ] @@ -3724,9 +3724,9 @@ dependencies = [ [[package]] name = "simba" -version = "0.7.2" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c48e45e5961033db030b56ad67aef22e9c908c493a6e8348c0a0f6b93433cd77" +checksum = "2f3fd720c48c53cace224ae62bef1bbff363a70c68c4802a78b5cc6159618176" dependencies = [ "approx", "num-complex", @@ -4222,12 +4222,6 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "07547e3ee45e28326cc23faac56d44f58f16ab23e413db526debce3b0bfd2742" -[[package]] -name = "unicode-general-category" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2281c8c1d221438e373249e065ca4989c4c36952c211ff21a0ee91c44a3869e7" - [[package]] name = "unicode-ident" version = "1.0.5" @@ -4304,7 +4298,7 @@ dependencies = [ "pico-args", "rctree", "roxmltree 0.14.1", - "rustybuzz 0.5.3", + "rustybuzz 0.5.1", "simplecss", "siphasher", "svgtypes", diff --git a/meson.build b/meson.build index 08996a92d9..ae82d416bf 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'rnote', ['cpp', 'rust'], - version: '0.5.6', + version: '0.5.7', meson_version: '>= 0.56', ) # add a patch suffix for alpha or beta version, starting with a dash. diff --git a/misc/screenshots-archive/v0.4.png b/misc/screenshots-archive/v0.4.0.png similarity index 100% rename from misc/screenshots-archive/v0.4.png rename to misc/screenshots-archive/v0.4.0.png diff --git a/rnote-fileformats/src/rnoteformat.rs b/rnote-fileformats/src/rnoteformat.rs index 81a4cbde70..3f4863cfd7 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").unwrap(), + version: semver::Version::parse("0.5.7").unwrap(), data: serde_json::to_value(self)?, }; diff --git a/rnote-ui/Cargo.toml b/rnote-ui/Cargo.toml index 787881a58e..08ff17168a 100644 --- a/rnote-ui/Cargo.toml +++ b/rnote-ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnote" -version = "0.5.6" +version = "0.5.7" 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 9e41997544..736b5b639e 100644 --- a/rnote-ui/data/app.metainfo.xml.in.in +++ b/rnote-ui/data/app.metainfo.xml.in.in @@ -66,6 +66,18 @@ + + +

this release changes:

+
    +
  • improvement: Add zoom buttons to the quick-actions overlay
  • +
  • improvement: By default use the workspace directory for import and export dialogs, and document file for save dialogs
  • +
  • fix: PDF export and print sometimes produced empty pages
  • +
  • fix: workspace files list not refreshing after modifying the workspace path
  • +
  • fix: Selector being canceled when attempting to interact with the selection when "touch-drawing" was enabled
  • +
+
+

this release changes:

diff --git a/rnote-ui/src/config.rs b/rnote-ui/src/config.rs index e1e818ebeb..2eacac365d 100644 --- a/rnote-ui/src/config.rs +++ b/rnote-ui/src/config.rs @@ -2,7 +2,7 @@ pub const APP_NAME: &str = "rnote"; pub const APP_NAME_CAPITALIZED: &str = "Rnote"; pub const APP_ID: &str = "com.github.flxzt.rnote.Devel"; pub const APP_IDPATH: &str = "/com/github/flxzt/rnote/"; -pub const APP_VERSION: &str = "0.5.6"; +pub const APP_VERSION: &str = "0.5.7"; pub const APP_VERSION_SUFFIX: &str = "-devel"; pub const APP_AUTHOR_NAME: &str = "Felix Zwettler"; pub const APP_AUTHORS: &[&str] = &["Felix Zwettler