Skip to content

Commit 1f65329

Browse files
authored
Add credits to about page (#134) [ci skip]
* Add credits to about page * Fix clippy lints * Update changelog * Update translations
1 parent 7c52e23 commit 1f65329

File tree

6 files changed

+42
-10
lines changed

6 files changed

+42
-10
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
### Changed
9+
- Added credits to about page
810

911
## [0.5.5] - 2023-08-09
1012
### Fixed

Cargo.lock

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

assets/com.hunterwittenborn.Celeste.metainfo.xml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,30 @@
4141
</screenshot>
4242
</screenshots>
4343
<releases>
44+
<release date="2023-08-09" version="0.5.5">
45+
<description>
46+
<p>
47+
Fixes in this release:
48+
</p>
49+
<ul>
50+
<li>
51+
Update
52+
<code>
53+
Cargo.toml
54+
</code>
55+
and
56+
<code>
57+
Cargo.lock
58+
</code>
59+
to fix
60+
<code>
61+
arm64
62+
</code>
63+
compile error.
64+
</li>
65+
</ul>
66+
</description>
67+
</release>
4468
<release date="2023-08-09" version="0.5.5">
4569
<description>
4670
<p>

celeste-tray/src/main.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,7 @@ fn main() {
9090

9191
loop {
9292
#[allow(clippy::if_same_then_else)]
93-
if gtk3::main_iteration_do(false) {
94-
} else {
95-
};
93+
gtk3::main_iteration_do(false);
9694

9795
let status = (*(*CURRENT_STATUS).lock().unwrap()).clone();
9896
indicator.set_title(&status);

celeste/src/about.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ pub fn about_window(app: &Application) {
55
.application(app)
66
.application_icon("com.hunterwittenborn.Celeste")
77
.application_name("Celeste")
8-
.copyright("© 2022 Hunter Wittenborn")
8+
.copyright("© 2022-2023 Hunter Wittenborn")
99
.developer_name("Hunter Wittenborn")
10+
.developers(vec![
11+
"Hunter Wittenborn https://hunterwittenborn.com".to_string()
12+
])
1013
.issue_url("https://github.com/hwittenborn/celeste")
1114
.license_type(License::Gpl30)
1215
.support_url("https://github.com/hwittenborn/celeste/issues")
1316
.build();
17+
window.add_credit_section(Some(&tr::tr!("App icons by")), &["Adrien Facélina"]);
1418

1519
window.show();
1620
}

po/com.hunterwittenborn.Celeste.pot

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
#, fuzzy
77
msgid ""
88
msgstr ""
9-
"Project-Id-Version: Celeste 0.5.2\n"
9+
"Project-Id-Version: Celeste 0.5.5\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2023-05-01 18:51+0000\n"
11+
"POT-Creation-Date: 2023-09-13 18:06+0000\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"
@@ -17,6 +17,10 @@ msgstr ""
1717
"Content-Type: text/plain; charset=UTF-8\n"
1818
"Content-Transfer-Encoding: 8bit\n"
1919

20+
#: celeste/src/about.rs:17
21+
msgid "App icons by"
22+
msgstr ""
23+
2024
#: celeste/src/gtk_util.rs:20 celeste/src/gtk_util.rs:43 celeste/src/launch.rs:678 celeste/src/launch.rs:840
2125
msgid "Ok"
2226
msgstr ""
@@ -312,6 +316,6 @@ msgstr ""
312316
msgid "Quit"
313317
msgstr ""
314318

315-
#: celeste-tray/src/main.rs:116
319+
#: celeste-tray/src/main.rs:114
316320
msgid "Quitting..."
317321
msgstr ""

0 commit comments

Comments
 (0)