diff options
author | Ricky Kresslein <rk@lakoliu.com> | 2023-03-22 12:28:11 +0100 |
---|---|---|
committer | Ricky Kresslein <rk@lakoliu.com> | 2023-03-22 12:28:11 +0100 |
commit | 38bc31cc55479d899cd285eefd28f4ad1174f587 (patch) | |
tree | db71e97413080ed42ff7bec4102b38a61ef9c89a | |
parent | 7544fa3b2996ae26601c9c1f9adca0d92b1e4150 (diff) | |
download | Furtherance-38bc31cc55479d899cd285eefd28f4ad1174f587.tar.zst |
Update to v1.7.0
-rw-r--r-- | Cargo.lock | 10 | ||||
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | data/com.lakoliu.Furtherance.appdata.xml.in | 9 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | 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 <rk@lakoliu.com>"] 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 @@ <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> @@ -131,3 +139,4 @@ </releases> </component> + 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 <rk@lakoliu.com>".into()]) .translator_credits(&gettext("translator-credits")) .website("https://furtherance.app") @@ -423,3 +423,4 @@ impl Default for FurtheranceApplication { .unwrap() } } + |