Skip to content

Commit

Permalink
update to v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Apr 23, 2023
1 parent 5e29ca7 commit 7c2dc15
Show file tree
Hide file tree
Showing 16 changed files with 32 additions and 9 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 38, Windows 11 22H2, ... ]
- App Version: [e.g. rnote v0.5.18]
- App Version: [e.g. rnote v0.6.0]
- Installation Source: [e.g. Flatpak, Archlinux Community Repo, ... ]
- Desktop Environment: [e.g. Gnome 44.0]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ jobs:
run: |
rnote_cli test\
misc/file-tests/v0-5-13-overview.rnote\
misc/file-tests/v0-5-13-pdf_annotation.rnote\
misc/file-tests/v0-5-13-lecture_note_1.rnote\
misc/file-tests/v0-5-13-lecture_note_2.rnote
misc/file-tests/v0-6-0-overview.rnote\
misc/file-tests/v0-6-0-lecture_note_1.rnote
4 changes: 2 additions & 2 deletions Cargo.lock

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

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.5.18',
version: '0.6.0',
meson_version: '>= 0.57',
)
# add a patch suffix for alpha or beta version, starting with a dash.
Expand Down
Binary file removed misc/file-tests/v0-5-13-lecture_note_2.rnote
Binary file not shown.
Binary file removed misc/file-tests/v0-5-13-pdf_annotation.rnote
Binary file not shown.
Binary file added misc/file-tests/v0-6-0-lecture_note_1.rnote
Binary file not shown.
Binary file added misc/file-tests/v0-6-0-overview.rnote
Binary file not shown.
Binary file modified misc/screenshots-pages/lecture_note_1.rnote
Binary file not shown.
Binary file modified misc/screenshots-pages/lecture_note_2.rnote
Binary file not shown.
Binary file modified misc/screenshots-pages/overview.rnote
Binary file not shown.
Binary file modified misc/screenshots-pages/pdf_annotation.rnote
Binary file not shown.
2 changes: 1 addition & 1 deletion rnote-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rnote-cli"
version = "0.5.18"
version = "0.6.0"
edition = "2021"
rust-version = "1.65"

Expand Down
2 changes: 1 addition & 1 deletion rnote-fileformats/src/rnoteformat/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl FileFormatLoader for RnoteFile {
impl FileFormatSaver for RnoteFile {
fn save_as_bytes(&self, file_name: &str) -> anyhow::Result<Vec<u8>> {
let output = RnotefileWrapper {
version: semver::Version::parse("0.5.18").unwrap(),
version: semver::Version::parse("0.6.0").unwrap(),
data: serde_json::to_value(self).context("to_value() for RnoteFile failed")?,
};

Expand Down
2 changes: 1 addition & 1 deletion rnote-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rnote"
version = "0.5.18"
version = "0.6.0"
edition = "2021"
rust-version = "1.65"
build = "build.rs"
Expand Down
23 changes: 23 additions & 0 deletions rnote-ui/data/app.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,29 @@

<!-- The changelog should not be translated -->
<releases>
<release version="0.6.0" date="2023-04-23">
<description>
<p>this release changes:</p>
<ul>
<li>orga: Rnote now follows a new versioning scheme - feature updates will increment x, while patches will increment y in versions 0.x.y .
Breakages in the file format will be explicitely announced (but we'll work as hard as possible to avoid it!) and are not reflected in the version anymore.</li>
<li>orga: the app is now available for Windows and MacOS! Check the installation section on the website / README, you'll find links to the installer and app bundle there.</li>
<li>feature: arrow shapes (thanks to @TornaxO7 )</li>
<li>feature: ability to recolor selected strokes (thanks to @Kneemund )</li>
<li>feature: isometric background patterns (thanks to @Kneemund )</li>
<li>feature: add option to block pinch zoom (thanks to @LeSnake04 )</li>
<li>improvement: typewriter keyboard navigation (thanks to @Kneemund )</li>
<li>improvement: exiting / closing dialogs and logic (thanks to @adih-20 )</li>
<li>improvement: more icons for workspace list entries</li>
<li>improvement: associated symbolic icon for .rnote files</li>
<li>improvement: added labels for name and directory of the active workspace </li>
<li>fix: occasional crashes when doing three-finger swipes</li>
<li>fix: size limits for grid builder, preventing slowdowns and crashes (thanks to @Kneemund)</li>
<li>fix: strokes not generating hitboxes when pen is being changed mid-stroke</li>
<li>fix: limit chars for dirs in edit-workspace dialog</li>
</ul>
</description>
</release>
<release version="0.5.18" date="2023-03-16">
<description>
<p>this release changes:</p>
Expand Down

0 comments on commit 7c2dc15

Please sign in to comment.