Skip to content

Commit 303660c

Browse files
committed
chore: bump app version, add changelog
1 parent c2a9e38 commit 303660c

File tree

6 files changed

+38
-11
lines changed

6 files changed

+38
-11
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ and post the output.
2727
If applicable, add screenshots to help explain your problem.
2828

2929
**Desktop (please complete the following information):**
30-
- OS: [e.g. Fedora 39, Windows 11 23H2, ...]
31-
- App Version: [e.g. Rnote v0.11.0]
30+
- OS: [e.g. Fedora 42, Windows 11 23H2, ...]
31+
- App Version: [e.g. Rnote v0.12.0]
3232
- Installation Source: [e.g. Flatpak, Archlinux Community Repo, ...]
33-
- Desktop Environment: [e.g. Gnome 45.2]
33+
- Desktop Environment: [e.g. Gnome 48.0]
3434
- Display Server: [e.g. Wayland or X11]
3535
- Input Source: [e.g. Mouse and Keyboard, On-Screen-Tablet, External Graphics Tablet, ...]
3636

Cargo.lock

Lines changed: 4 additions & 4 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
@@ -14,11 +14,11 @@ homepage = "https://rnote.flxzt.net"
1414
license = "GPL-3.0-or-later"
1515
repository = "https://github.com/flxzt/rnote"
1616
rust-version = "1.85"
17-
version = "0.11.0"
17+
version = "0.12.0"
1818

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

2323
adw = { version = "0.7.0", package = "libadwaita", features = ["v1_7"] }
2424
anyhow = "1.0"

MAINTAINING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
- `just install`
1414
- `just lint`
1515
- `just test`
16+
- `just test-file-compatibility`
1617
- Wait for CI to run successfully
1718
- Create a release with tag `vX.Y.Z` on Github - the installer and tarball will be created by Github Actions CD
1819
- For Flathub: create a new release branch, update the Flathub flatpak manifest with the new tarball download Url and

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

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,32 @@
8787

8888
<!-- The changelog should not be translated -->
8989
<releases>
90+
<release version="0.12.0" date="2025-04-12">
91+
<description>
92+
<p>this release changes:</p>
93+
<ul>
94+
<li>feat: laser tool with animations (thanks to @Kneemund)</li>
95+
<li>feat: tab overviews (thanks to @zefr0x)</li>
96+
<li>feat: thumbnailer for .rnote files (thanks to @tiziodcaio)</li>
97+
<li>feat: keyboard clipboard paste at pointer location (thanks to @Kneemund)</li>
98+
<li>feat: multi-click selections (thanks to @Kneemund)</li>
99+
<li>feat: new limit movements options for vertical-space tool (thanks to @Doublonmousse)</li>
100+
<li>feat: confirmation prompt for file/folder trash action (thanks to @RayJW)</li>
101+
<li>feat: open workspace folder option (thanks to @Doublonmousse)</li>
102+
<li>feat: import of encrypted PDFs (thanks to @kq98)</li>
103+
<li>improv: support keyboard and uncommon key shortcuts (thanks to @Kneemund)</li>
104+
<li>improv: clipboard pasting on certain platforms like macOS (thanks to @Doublonmousse)</li>
105+
<li>fix: selection handle sensitivity in "single-selection" mode</li>
106+
<li>fix: unwanted activation of long-press gesture after zooming (thanks to @Kneemund)</li>
107+
<li>fix: allow view movement while having a selection</li>
108+
<li>fix: cli file collision resolution in non-interactive settings (thanks to @LeSnake04)</li>
109+
<li>fix: missing tooltips (thanks to @Doublonmousse)</li>
110+
<li>fix: window shadows on Windows (thanks to @Doublonmousse)</li>
111+
<li>fix: .rnote file icons in file managers</li>
112+
<li>fix: selecting colors not working properly in certain cases (thanks to @Kneemund)</li>
113+
</ul>
114+
</description>
115+
</release>
90116
<release version="0.11.0" date="2024-07-26">
91117
<description>
92118
<p>this release changes:</p>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
project('rnote', ['rust', 'cpp'], version: '0.11.0', meson_version: '>= 1.0')
1+
project('rnote', ['rust', 'cpp'], version: '0.12.0', meson_version: '>= 1.0')
22
# add a patch suffix for alpha or beta versions in format '-<alpha|beta>.<x>'.
33
patch = ''
44

0 commit comments

Comments
 (0)