diff --git a/Cargo.lock b/Cargo.lock index 78d3bd07fa..9342a03558 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2294,7 +2294,7 @@ checksum = "451422b7e4718271c8b5b3aadf5adedba43dc76312454b387e98fae0fc951aa0" dependencies = [ "bitflags", "jni-sys", - "ndk-sys 0.4.0", + "ndk-sys 0.4.1+23.1.7779620", "num_enum", "raw-window-handle", "thiserror", @@ -2317,9 +2317,9 @@ dependencies = [ [[package]] name = "ndk-sys" -version = "0.4.0" +version = "0.4.1+23.1.7779620" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21d83ec9c63ec5bf950200a8e508bdad6659972187b625469f58ef8c08e29046" +checksum = "3cf2aae958bd232cac5069850591667ad422d263686d75b52a065f9badeee5a3" dependencies = [ "jni-sys", ] @@ -3225,7 +3225,7 @@ dependencies = [ [[package]] name = "rnote" -version = "0.5.7" +version = "0.5.8" dependencies = [ "anyhow", "cairo-rs", diff --git a/meson.build b/meson.build index 421b7caa87..79faf2b6c3 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'rnote', ['cpp', 'rust'], - version: '0.5.7', + version: '0.5.8', meson_version: '>= 0.56', ) # add a patch suffix for alpha or beta version, starting with a dash. diff --git a/misc/screenshots-archive/v0.3.0.png b/misc/screenshots-archive/v0.3.0.png deleted file mode 100644 index 30d686414c..0000000000 Binary files a/misc/screenshots-archive/v0.3.0.png and /dev/null differ diff --git a/misc/screenshots-archive/v0.5.8.png b/misc/screenshots-archive/v0.5.8.png new file mode 100644 index 0000000000..a73847e7ed Binary files /dev/null and b/misc/screenshots-archive/v0.5.8.png differ diff --git a/rnote-fileformats/src/rnoteformat.rs b/rnote-fileformats/src/rnoteformat.rs index 3f4863cfd7..befd979d57 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.7").unwrap(), + version: semver::Version::parse("0.5.8").unwrap(), data: serde_json::to_value(self)?, }; diff --git a/rnote-ui/Cargo.toml b/rnote-ui/Cargo.toml index 8a3d35d0f2..647d422115 100644 --- a/rnote-ui/Cargo.toml +++ b/rnote-ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rnote" -version = "0.5.7" +version = "0.5.8" edition = "2021" rust-version = "1.65" diff --git a/rnote-ui/data/app.metainfo.xml.in.in b/rnote-ui/data/app.metainfo.xml.in.in index ad7ba78ff8..4277b59034 100644 --- a/rnote-ui/data/app.metainfo.xml.in.in +++ b/rnote-ui/data/app.metainfo.xml.in.in @@ -66,6 +66,20 @@ + + +

this release changes:

+
    +
  • feature: add keyboard shortcuts "Ctrl+1..5" to switch between the different pens
  • +
  • feature: add coordinate system builders (thanks to @Kneemund )
  • +
  • feature: drop text on the canvas
  • +
  • improvement: export preferences, new export dialogs and options
  • +
  • improvement: UI following Gnome HIG more closely ( with @bertob's help )
  • +
  • fix: update current document state when the file was modified from the workspace browser. (thanks @Kneemund )
  • +
  • fix: clearing text attributes for new text fields
  • +
+
+

this release changes:

diff --git a/rnote-ui/data/screenshots/main_window_dark.png b/rnote-ui/data/screenshots/main_window_dark.png index 3867e3fef4..a73847e7ed 100644 Binary files a/rnote-ui/data/screenshots/main_window_dark.png and b/rnote-ui/data/screenshots/main_window_dark.png differ diff --git a/rnote-ui/data/screenshots/main_window_light.png b/rnote-ui/data/screenshots/main_window_light.png index d54b03eca7..688330da1e 100644 Binary files a/rnote-ui/data/screenshots/main_window_light.png and b/rnote-ui/data/screenshots/main_window_light.png differ diff --git a/rnote-ui/data/screenshots/pdf_annotation.png b/rnote-ui/data/screenshots/pdf_annotation.png index bd619c5840..db0e2fefad 100644 Binary files a/rnote-ui/data/screenshots/pdf_annotation.png and b/rnote-ui/data/screenshots/pdf_annotation.png differ diff --git a/rnote-ui/data/screenshots/selection.png b/rnote-ui/data/screenshots/selection.png index 64103195d2..17ce87446e 100644 Binary files a/rnote-ui/data/screenshots/selection.png and b/rnote-ui/data/screenshots/selection.png differ diff --git a/rnote-ui/src/config.rs b/rnote-ui/src/config.rs index 3609aad7ae..9721d18d1f 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.7"; +pub const APP_VERSION: &str = "0.5.8"; pub const APP_VERSION_SUFFIX: &str = "-devel"; pub const APP_AUTHOR_NAME: &str = "Felix Zwettler"; pub const APP_AUTHORS: &[&str] = &["Felix Zwettler