Skip to content

Commit

Permalink
Update to v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rickykresslein committed Mar 22, 2023
1 parent 7544fa3 commit 38bc31c
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "furtherance"
version = "1.6.0"
version = "1.7.0"
authors = ["Ricky Kresslein <rk@lakoliu.com>"]
edition = "2018"

Expand All @@ -24,7 +24,7 @@ serde = { version = "1.0", features = ["derive"] }

[dependencies.gtk]
package = "gtk4"
version = "0.4.8"
version = "0.4.9"

[dependencies.adw]
package = "libadwaita"
Expand Down
9 changes: 9 additions & 0 deletions data/com.lakoliu.Furtherance.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@
<content_rating type="oars-1.1" />

<releases>
<release version="1.7.0" date="2023-03-22">
<description>
<ul>
<li>Manually add new task to group</li>
<li>Updated translations</li>
</ul>
</description>
</release>
<release version="1.6.0" date="2022-10-02">
<description>
<ul>
Expand Down Expand Up @@ -131,3 +139,4 @@
</releases>

</component>

2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('furtherance', 'rust',
version: '1.6.0',
version: '1.7.0',
meson_version: '>= 0.59.0',
default_options: [ 'warning_level=2',
],
Expand Down
3 changes: 2 additions & 1 deletion src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ impl FurtheranceApplication {
.logo_icon_name(config::APP_ID)
.version(config::VERSION)
.comments(&gettext("Track your time without being tracked"))
.copyright(2022 Ricky Kresslein")
.copyright(2023 LakoLiu")
.authors(vec!["Ricky Kresslein <rk@lakoliu.com>".into()])
.translator_credits(&gettext("translator-credits"))
.website("https://furtherance.app")
Expand Down Expand Up @@ -423,3 +423,4 @@ impl Default for FurtheranceApplication {
.unwrap()
}
}

0 comments on commit 38bc31c

Please sign in to comment.