Skip to content

Commit

Permalink
update to v0.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
flxzt committed Nov 23, 2022
1 parent 34e8c25 commit fa9e77d
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 8 deletions.
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.

2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
project(
'rnote',
['cpp', 'rust'],
version: '0.5.7',
version: '0.5.8',
meson_version: '>= 0.56',
)
# add a patch suffix for alpha or beta version, starting with a dash.
Expand Down
Binary file removed misc/screenshots-archive/v0.3.0.png
Binary file not shown.
Binary file added misc/screenshots-archive/v0.5.8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion rnote-fileformats/src/rnoteformat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ impl FileFormatLoader for RnotefileMaj0Min5 {
impl FileFormatSaver for RnotefileMaj0Min5 {
fn save_as_bytes(&self, file_name: &str) -> anyhow::Result<Vec<u8>> {
let output = RnotefileWrapper {
version: semver::Version::parse("0.5.7").unwrap(),
version: semver::Version::parse("0.5.8").unwrap(),
data: serde_json::to_value(self)?,
};

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.7"
version = "0.5.8"
edition = "2021"
rust-version = "1.65"

Expand Down
14 changes: 14 additions & 0 deletions rnote-ui/data/app.metainfo.xml.in.in
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,20 @@

<!-- /// Translators: Don't translate the changelog -->
<releases>
<release version="0.5.8" date="2022-11-23">
<description>
<p>this release changes:</p>
<ul>
<li>feature: add keyboard shortcuts "Ctrl+1..5" to switch between the different pens</li>
<li>feature: add coordinate system builders (thanks to @Kneemund )</li>
<li>feature: drop text on the canvas</li>
<li>improvement: export preferences, new export dialogs and options</li>
<li>improvement: UI following Gnome HIG more closely ( with @bertob's help )</li>
<li>fix: update current document state when the file was modified from the workspace browser. (thanks @Kneemund )</li>
<li>fix: clearing text attributes for new text fields</li>
</ul>
</description>
</release>
<release version="0.5.7" date="2022-10-30">
<description>
<p>this release changes:</p>
Expand Down
Binary file modified rnote-ui/data/screenshots/main_window_dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified rnote-ui/data/screenshots/main_window_light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified rnote-ui/data/screenshots/pdf_annotation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified rnote-ui/data/screenshots/selection.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion rnote-ui/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pub const APP_NAME: &str = "rnote";
pub const APP_NAME_CAPITALIZED: &str = "Rnote";
pub const APP_ID: &str = "com.github.flxzt.rnote.Devel";
pub const APP_IDPATH: &str = "/com/github/flxzt/rnote/";
pub const APP_VERSION: &str = "0.5.7";
pub const APP_VERSION: &str = "0.5.8";
pub const APP_VERSION_SUFFIX: &str = "-devel";
pub const APP_AUTHOR_NAME: &str = "Felix Zwettler";
pub const APP_AUTHORS: &[&str] = &["Felix Zwettler
Expand Down

1 comment on commit fa9e77d

@astro-ray
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yaay for the new update

Please sign in to comment.