Skip to content

Commit 7075998

Browse files
committed
bump version to v0.9.2
1 parent 97828c9 commit 7075998

File tree

7 files changed

+78
-52
lines changed

7 files changed

+78
-52
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If applicable, add screenshots to help explain your problem.
2828

2929
**Desktop (please complete the following information):**
3030
- OS: [e.g. Fedora 38, Windows 11 22H2, ...]
31-
- App Version: [e.g. Rnote v0.9.1]
31+
- App Version: [e.g. Rnote v0.9.2]
3232
- Installation Source: [e.g. Flatpak, Archlinux Community Repo, ...]
3333
- Desktop Environment: [e.g. Gnome 44.2]
3434

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ assignees: ''
88
---
99

1010
**Please submit only one feature request in one issue!**
11-
If it is UX / UI related, don't post how a single aspect of the UI should be changed, rather in which use-case you felt the UI is lacking or should be improved.
11+
If it is UX / UI related, don't post how a single aspect of the UI should be changed, rather in which use-case you felt
12+
the UI is lacking or should be improved.
1213

1314
**Is your feature request related to a problem? Please describe.**
1415
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Cargo.lock

Lines changed: 58 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ members = [
88
resolver = "2"
99

1010
[workspace.package]
11-
version = "0.9.1"
11+
version = "0.9.2"
1212
edition = "2021"
1313
rust-version = "1.70"
1414
authors = ["The Rnote Authors"]
@@ -17,8 +17,8 @@ homepage = "https://rnote.flxzt.net"
1717
repository = "https://github.com/flxzt/rnote"
1818

1919
[workspace.dependencies]
20-
rnote-compose = { version="0.9.1", path = "crates/rnote-compose" }
21-
rnote-engine = { version="0.9.1", path = "crates/rnote-engine" }
20+
rnote-compose = { version="0.9.2", path = "crates/rnote-compose" }
21+
rnote-engine = { version="0.9.2", path = "crates/rnote-engine" }
2222

2323
log = "0.4"
2424
pretty_env_logger = "0.5"

crates/rnote-engine/src/fileformats/rnoteformat/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ struct RnotefileWrapper {
5656
pub type RnoteFile = RnoteFileMaj0Min9;
5757

5858
impl RnoteFile {
59-
pub const SEMVER: &str = "0.9.1";
59+
pub const SEMVER: &str = "0.9.2";
6060
}
6161

6262
impl FileFormatLoader for RnoteFile {

crates/rnote-ui/data/app.metainfo.xml.in.in

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,18 @@
7272

7373
<!-- The changelog should not be translated -->
7474
<releases>
75+
<release version="0.9.2" date="2023-11-16">
76+
<description>
77+
<p>this release changes:</p>
78+
<ul>
79+
<li>feature: option to snap positions in different tools to pattern and document grid</li>
80+
<li>feature: option to open files with default app from workspacebrowser list (thanks to @silvasch)</li>
81+
<li>fix: initial documents opened with rnote have blurry rendering when system scale-factor is larger than 1.0</li>
82+
<li>fix: selection after nudging view only included strokes in current viewport</li>
83+
<li>fix: text files not appearing in workspacebrowser</li>
84+
</ul>
85+
</description>
86+
</release>
7587
<release version="0.9.1" date="2023-11-01">
7688
<description>
7789
<p>this release changes:</p>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'rnote',
33
['rust', 'cpp'],
4-
version: '0.9.1',
4+
version: '0.9.2',
55
meson_version: '>= 1.0',
66
)
77
# add a patch suffix for alpha or beta version, starting with a dash.

0 commit comments

Comments
 (0)