diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index b9e406ca2c..8bf8e104ee 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -28,7 +28,7 @@ If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: [e.g. Fedora 38, Windows 11 22H2, ...] - - App Version: [e.g. Rnote v0.8.1] + - App Version: [e.g. Rnote v0.8.2] - Installation Source: [e.g. Flatpak, Archlinux Community Repo, ...] - Desktop Environment: [e.g. Gnome 44.2] diff --git a/Cargo.lock b/Cargo.lock index 6b6bba8c8a..c678290754 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3288,7 +3288,7 @@ dependencies = [ [[package]] name = "rnote" -version = "0.8.1" +version = "0.8.2" dependencies = [ "anyhow", "base64", @@ -3333,7 +3333,7 @@ dependencies = [ [[package]] name = "rnote-cli" -version = "0.8.1" +version = "0.8.2" dependencies = [ "anyhow", "atty", @@ -3351,7 +3351,7 @@ dependencies = [ [[package]] name = "rnote-compose" -version = "0.8.1" +version = "0.8.2" dependencies = [ "anyhow", "base64", @@ -3379,7 +3379,7 @@ dependencies = [ [[package]] name = "rnote-engine" -version = "0.8.1" +version = "0.8.2" dependencies = [ "anyhow", "approx", diff --git a/Cargo.toml b/Cargo.toml index c3849e508d..3532d0e69e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.8.1" +version = "0.8.2" edition = "2021" rust-version = "1.70" authors = ["The Rnote Authors"] @@ -17,8 +17,8 @@ homepage = "https://rnote.flxzt.net" repository = "https://github.com/flxzt/rnote" [workspace.dependencies] -rnote-compose = { version="0.8.1", path = "crates/rnote-compose" } -rnote-engine = { version="0.8.1", path = "crates/rnote-engine" } +rnote-compose = { version="0.8.2", path = "crates/rnote-compose" } +rnote-engine = { version="0.8.2", path = "crates/rnote-engine" } log = "0.4" pretty_env_logger = "0.5" diff --git a/crates/rnote-engine/src/ext.rs b/crates/rnote-engine/src/ext.rs index 74ed4fedbd..000346d1f6 100644 --- a/crates/rnote-engine/src/ext.rs +++ b/crates/rnote-engine/src/ext.rs @@ -1,7 +1,7 @@ // Imports use rnote_compose::eventresult::EventPropagation; -/// Extension trait for [gdk::RGBA]. +/// Extension trait for [gtk4::gdk::RGBA]. #[cfg(feature = "ui")] pub trait GdkRGBAExt where @@ -47,7 +47,7 @@ impl GdkRGBAExt for gtk4::gdk::RGBA { } } -/// Extension trait for [graphene::Rect]. +/// Extension trait for [gtk4::graphene::Rect]. #[cfg(feature = "ui")] pub trait GrapheneRectExt where diff --git a/crates/rnote-engine/src/fileformats/rnoteformat/mod.rs b/crates/rnote-engine/src/fileformats/rnoteformat/mod.rs index 751d2ba753..efcc4e217a 100644 --- a/crates/rnote-engine/src/fileformats/rnoteformat/mod.rs +++ b/crates/rnote-engine/src/fileformats/rnoteformat/mod.rs @@ -54,7 +54,7 @@ struct RnotefileWrapper { pub type RnoteFile = RnoteFileMaj0Min6; impl RnoteFile { - pub const SEMVER: &str = "0.8.1"; + pub const SEMVER: &str = "0.8.2"; } impl FileFormatLoader for RnoteFile { diff --git a/crates/rnote-ui/data/app.metainfo.xml.in.in b/crates/rnote-ui/data/app.metainfo.xml.in.in index 7ccdb3c610..4be9d0efba 100644 --- a/crates/rnote-ui/data/app.metainfo.xml.in.in +++ b/crates/rnote-ui/data/app.metainfo.xml.in.in @@ -72,6 +72,16 @@ + + +

this release changes:

+
    +
  • fix: button presses not handled as pen events
  • +
  • fix: windows build
  • +
  • fix: bundled fonts not appearing in flatpak
  • +
+
+

this release changes:

@@ -80,11 +90,13 @@
  • feature: invert selection color brightness (thanks to @Kneemund)
  • feature: optimize for printing export option (thanks to @Kneemund)
  • feature: a few handwrite-y,typewriter and dyslexia fonts are now bundled with the application (check the README for a list of them)
  • +
  • feature: polyline shape and builder
  • improvement: cli export enhancements (thanks to @LeSnake04)
  • improvement: update outdated symbolic icons (thanks to @oscfdezdz)
  • improvement: behaviour when opening files in new tab
  • improvement: added close buttons to configuration popovers as a workaround for the Gtk4 stuck-popover bug
  • improvement: default view offset when opening documents
  • +
  • enhancement: move view using arrow keys
  • fix: orientation of some popovers when sidebar is on the left
  • fix: restore vectorized images (Pdf pages, Svg) export
  • fix: .rnote file imports that were created pre v0.5.9
  • diff --git a/meson.build b/meson.build index 9929345d50..039c55f4d7 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'rnote', ['rust', 'cpp'], - version: '0.8.1', + version: '0.8.2', meson_version: '>= 0.57', ) # add a patch suffix for alpha or beta version, starting with a dash.