Skip to content

Commit bed275b

Browse files
committed
update app to v0.5.5
1 parent 05ca963 commit bed275b

File tree

6 files changed

+39
-35
lines changed

6 files changed

+39
-35
lines changed

Cargo.lock

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

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',
4-
version: '0.5.4',
4+
version: '0.5.5',
55
meson_version: '>= 0.56',
66
)
77
# add a patch suffix for alpha or beta version, starting with a dash.

rnote-fileformats/src/rnoteformat.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ struct RnotefileWrapper {
3737

3838
#[derive(Debug, Clone, Serialize, Deserialize)]
3939
/// the Rnote file in format version 0.5.x. The actual (de-) serialization into strong types is happening in `rnote-engine`.
40-
/// This struct exists to allow for upgrading older versions before loading it in.
40+
/// This struct exists to allow for upgrading older versions before loading the file in.
4141
4242
#[serde(rename = "rnotefile_maj0_min5")]
4343
pub struct RnotefileMaj0Min5 {
@@ -65,7 +65,7 @@ impl FileFormatLoader for RnotefileMaj0Min5 {
6565
)?)
6666
} else {
6767
Err(anyhow::anyhow!(
68-
"failed to load rnote file from bytes, invalid version",
68+
"failed to load rnote file from bytes, unsupported version",
6969
))
7070
}
7171
}
@@ -74,7 +74,7 @@ impl FileFormatLoader for RnotefileMaj0Min5 {
7474
impl FileFormatSaver for RnotefileMaj0Min5 {
7575
fn save_as_bytes(&self, file_name: &str) -> anyhow::Result<Vec<u8>> {
7676
let output = RnotefileWrapper {
77-
version: semver::Version::parse("0.5.4").unwrap(),
77+
version: semver::Version::parse("0.5.5").unwrap(),
7878
data: serde_json::to_value(self)?,
7979
};
8080

@@ -84,7 +84,7 @@ impl FileFormatSaver for RnotefileMaj0Min5 {
8484
}
8585
}
8686

87-
// The file format is expected only to break on minor versions in prelease (0.x.x) and on major versions after 1.0.0 release. (equivalent to API breaks according to the semver spec)
87+
// The file format is expected only to break on minor versions in prelease (0.x.x) and on major versions after 1.0.0 release. (equivalent to API's conforming to the semver spec)
8888
// Older formats can be added here, with the naming scheme RnoteFileMaj<X>Min<Y>, where X: semver major, Y: semver minor version.
8989
// Then TryFrom is implemented to allow conversions and chaining from older to newer versions.
9090

rnote-ui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rnote"
3-
version = "0.5.4"
3+
version = "0.5.5"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,13 @@
6666

6767
<!-- /// Translators: Don't translate the changelog -->
6868
<releases>
69-
<release version="0.5.5" date="2022-09-28">
69+
<release version="0.5.5" date="2022-09-29">
7070
<description>
7171
<p>this release changes:</p>
7272
<ul>
7373
<li>Port to libadwaita 1.2 with an updated about window, improved dialogs</li>
74-
<li>new feature: a "permanently hide scrollbars" toggle in the settings</li>
75-
<li>new feature: a "paste from clipboard" button in the selector page</li>
74+
<li>new feature: "permanently hide scrollbars" toggle in the settings</li>
75+
<li>new feature: "paste from clipboard" button in the selector page</li>
7676
<li>improved window title, now shows the current document name</li>
7777
<li>tweaked app icon</li>
7878
</ul>

rnote-ui/po/rnote.pot

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: rnote\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2022-09-26 15:25+0200\n"
11+
"POT-Creation-Date: 2022-09-29 12:26+0200\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <[email protected]>\n"
@@ -953,6 +953,10 @@ msgstr ""
953953
msgid "Delete selection"
954954
msgstr ""
955955

956+
#: rnote-ui/data/ui/penssidebar/selectorpage.ui:185
957+
msgid "Paste from Clipboard"
958+
msgstr ""
959+
956960
#: rnote-ui/data/ui/penssidebar/shaperpage.ui:33
957961
msgid "Shaper style"
958962
msgstr ""

0 commit comments

Comments
 (0)