From 38bc31cc55479d899cd285eefd28f4ad1174f587 Mon Sep 17 00:00:00 2001 From: Ricky Kresslein Date: Wed, 22 Mar 2023 12:28:11 +0100 Subject: Update to v1.7.0 --- Cargo.lock | 10 +++++----- Cargo.toml | 4 ++-- data/com.lakoliu.Furtherance.appdata.xml.in | 9 +++++++++ meson.build | 2 +- src/application.rs | 3 ++- 5 files changed, 19 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1bb6062..54edd28 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -284,7 +284,7 @@ dependencies = [ [[package]] name = "furtherance" -version = "1.6.0" +version = "1.7.0" dependencies = [ "anyhow", "chrono", @@ -590,9 +590,9 @@ dependencies = [ [[package]] name = "gtk4" -version = "0.4.8" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c64f0c2a3d80e899dc3febddad5bac193ffcf74a0fd7e31037f30dd34d6f7396" +checksum = "4e8ae5aef2793bc3551b5e5e3fa062a5de54bb1eccf10dfa4effe9e4384fbbbc" dependencies = [ "bitflags", "cairo-rs", @@ -613,9 +613,9 @@ dependencies = [ [[package]] name = "gtk4-macros" -version = "0.4.8" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fafbcc920af4eb677d7d164853e7040b9de5a22379c596f570190c675d45f7a7" +checksum = "d9a4a8077b3a392dd7d637924529e1213d2e0c8e4d531177bc3355e86c257a54" dependencies = [ "anyhow", "proc-macro-crate", diff --git a/Cargo.toml b/Cargo.toml index dae86a8..2485112 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "furtherance" -version = "1.6.0" +version = "1.7.0" authors = ["Ricky Kresslein "] edition = "2018" @@ -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" diff --git a/data/com.lakoliu.Furtherance.appdata.xml.in b/data/com.lakoliu.Furtherance.appdata.xml.in index a39c7f7..7ce0aa4 100644 --- a/data/com.lakoliu.Furtherance.appdata.xml.in +++ b/data/com.lakoliu.Furtherance.appdata.xml.in @@ -39,6 +39,14 @@ + + +
    +
  • Manually add new task to group
  • +
  • Updated translations
  • +
+
+
    @@ -131,3 +139,4 @@ + diff --git a/meson.build b/meson.build index 91d5098..dcceaa0 100644 --- a/meson.build +++ b/meson.build @@ -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', ], diff --git a/src/application.rs b/src/application.rs index 12ea49b..8d627c5 100644 --- a/src/application.rs +++ b/src/application.rs @@ -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 ".into()]) .translator_credits(&gettext("translator-credits")) .website("https://furtherance.app") @@ -423,3 +423,4 @@ impl Default for FurtheranceApplication { .unwrap() } } + -- cgit 1.4.1