Skip to content

Commit

Permalink
chore: bump app version
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Jul 26, 2024
1 parent 7b03d26 commit a8a48fc
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. Fedora 39, Windows 11 23H2, ...]
- App Version: [e.g. Rnote v0.10.2]
- App Version: [e.g. Rnote v0.11.0]
- Installation Source: [e.g. Flatpak, Archlinux Community Repo, ...]
- Desktop Environment: [e.g. Gnome 45.2]
- Display Server: [e.g. Wayland or X11]
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ homepage = "https://rnote.flxzt.net"
license = "GPL-3.0-or-later"
repository = "https://github.com/flxzt/rnote"
rust-version = "1.74"
version = "0.10.2"
version = "0.11.0"

[workspace.dependencies]
rnote-compose = { version = "0.10.2", path = "crates/rnote-compose" }
rnote-engine = { version = "0.10.2", path = "crates/rnote-engine" }
rnote-compose = { version = "0.11.0", path = "crates/rnote-compose" }
rnote-engine = { version = "0.11.0", path = "crates/rnote-engine" }

adw = { version = "0.6.0", package = "libadwaita", features = ["v1_5"] }
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/rnote-engine/src/fileformats/rnoteformat/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ struct RnotefileWrapper {
pub type RnoteFile = RnoteFileMaj0Min9;

impl RnoteFile {
pub const SEMVER: &'static str = "0.10.2";
pub const SEMVER: &'static str = crate::utils::crate_version();
}

impl FileFormatLoader for RnoteFile {
Expand Down
4 changes: 4 additions & 0 deletions crates/rnote-engine/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ use p2d::bounding_volume::Aabb;
use rnote_compose::Color;
use std::ops::Range;

pub const fn crate_version() -> &'static str {
env!("CARGO_PKG_VERSION")
}

pub fn color_from_xopp(xopp_color: xoppformat::XoppColor) -> Color {
Color {
r: f64::from(xopp_color.red) / 255.0,
Expand Down
2 changes: 1 addition & 1 deletion crates/rnote-ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ rnote-compose = { workspace = true }
rnote-engine = { workspace = true, features = ["ui"] }

adw = { workspace = true }
approx = { workspace = true }
anyhow = { workspace = true }
approx = { workspace = true }
async-fs = { workspace = true }
base64 = { workspace = true }
cairo-rs = { workspace = true }
Expand Down
26 changes: 26 additions & 0 deletions crates/rnote-ui/data/app.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,32 @@

<!-- The changelog should not be translated -->
<releases>
<release version="0.11.0" date="2024-07-26">
<description>
<p>this release changes:</p>
<ul>
<li>feat: add disable option for pen shortcuts (thanks to @Doublonmousse)</li>
<li>feat: add respect-borders option, improving size logic when pasting content (thanks to @Doublonmousse)</li>
<li>feat: add improve-for-E-Paper option, showing current selected color as a string</li>
<li>improv: migrate to libadwaita based dialogs (thanks to @zefr0x)</li>
<li>improv: stroke modeler entirely rewritten in Rust! (thanks to @Doublonmousse)</li>
<li>improv: zoom tool following the pointer (thanks to @JonathanGodar)</li>
<li>improv: developers list in about window (thanks to @zefr0x)</li>
<li>improv: native file dialogs on Windows, macOS (thanks to @Doublonmousse)</li>
<li>improv: gzip (de)compression optimizations, reducing file save/load times (thanks to @anesthetice)</li>
<li>improv: prevent accidental resizes/moves when interacting with buttons in the titlebar</li>
<li>improv: inhibit app close while saves are in progress</li>
<li>improv: ability to change text selection colors inside a single text box</li>
<li>fix: pen state becoming incorrect on windows (thanks to @Doublonmousse)</li>
<li>fix: file extension filters in dialogs (thanks to @Doublonmousse)</li>
<li>fix: force the gtk renderer to gl for now, fixing recurring crashes for some users (thanks to @Doublonmousse)</li>
<li>fix: two-finger long-press gesture causing crashes for some users</li>
<li>fix: single element stroke not generating hitboxes</li>
<li>fix: scrolls being captured by unit-entries in settings, causing accidental value changes</li>
<li>fix: hover state for typewriter move/resize nodes</li>
</ul>
</description>
</release>
<release version="0.10.2" date="2024-04-06">
<description>
<p>this release changes:</p>
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'rnote',
['rust', 'cpp'],
version: '0.10.2',
version: '0.11.0',
meson_version: '>= 1.0',
)
# add a patch suffix for alpha or beta versions in format '-<alpha|beta>.<x>'.
Expand Down

0 comments on commit a8a48fc

Please sign in to comment.