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 Apr 6, 2024
1 parent 0f8adb5 commit dc3b2d5
Show file tree
Hide file tree
Showing 7 changed files with 25 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.1]
- App Version: [e.g. Rnote v0.10.2]
- 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.1"
version = "0.10.2"

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

adw = { version = "0.6.0", package = "libadwaita", features = ["v1_4"] }
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 @@ -56,7 +56,7 @@ struct RnotefileWrapper {
pub type RnoteFile = RnoteFileMaj0Min9;

impl RnoteFile {
pub const SEMVER: &'static str = "0.10.1";
pub const SEMVER: &'static str = "0.10.2";
}

impl FileFormatLoader for RnoteFile {
Expand Down
14 changes: 14 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,20 @@

<!-- The changelog should not be translated -->
<releases>
<release version="0.10.2" date="2024-04-06">
<description>
<p>this release changes:</p>
<ul>
<li>improv: put handles outside of selection borders, enable resizing to smaller sizes (thanks to @Doublonmousse)</li>
<li>improv: error notification when file operations fail in workspace browser</li>
<li>metainfo: add brand colors (thanks to @bertob)</li>
<li>fix: origin indicator cross size on hi-dpi screens</li>
<li>fix: rendering got out of sync when resizing long-to-render content</li>
<li>fix: selection stroke widths got larger when resizing non-uniformly</li>
<li>fix: regression which caused excessive rerendering of selection during resizing</li>
</ul>
</description>
</release>
<release version="0.10.1" date="2024-03-08">
<description>
<p>this release changes:</p>
Expand Down
2 changes: 1 addition & 1 deletion crates/rnote-ui/src/appwindow/appsettings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ impl RnAppWindow {
let is_maximized = app_settings.boolean("is-maximized");

if is_maximized {
// don't restore maximized window state on macos, avoids issues disussed in
// don't restore maximized window state on macos, avoids issues discussed in
// issue 823 - https://github.com/flxzt/rnote/issues/823
#[cfg(not(target_os = "macos"))]
self.maximize();
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.1',
version: '0.10.2',
meson_version: '>= 1.0',
)
# add a patch suffix for alpha or beta versions in format '-<alpha|beta>.<x>'.
Expand Down

0 comments on commit dc3b2d5

Please sign in to comment.