diff options
author | Ricky Kresslein <ricky@kressle.in> | 2022-02-20 00:04:27 +0100 |
---|---|---|
committer | Ricky Kresslein <ricky@kressle.in> | 2022-02-20 00:04:27 +0100 |
commit | 1f46e93625cff30eaf63258fcabe4ddc0c243136 (patch) | |
tree | cc11d47cedc2ae6f3a2dfdbc776f33e89f2e11bc | |
parent | ac99aca2510eebb83ac9a112849d8788ef67db3d (diff) | |
download | Furtherance-1f46e93625cff30eaf63258fcabe4ddc0c243136.tar.zst |
Updated description
-rw-r--r-- | data/com.lakoliu.Furtherance.appdata.xml.in | 2 | ||||
-rw-r--r-- | src/application.rs | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/data/com.lakoliu.Furtherance.appdata.xml.in b/data/com.lakoliu.Furtherance.appdata.xml.in index fac43de..e1c4d13 100644 --- a/data/com.lakoliu.Furtherance.appdata.xml.in +++ b/data/com.lakoliu.Furtherance.appdata.xml.in @@ -4,6 +4,6 @@ <metadata_license>CC0-1.0</metadata_license> <project_license>GPL-3.0-or-later</project_license> <description> - <p>Simple yet powerful time tracking app.</p> + <p>Track your time without being tracked.</p> </description> </component> diff --git a/src/application.rs b/src/application.rs index 1f5d345..6c51523 100644 --- a/src/application.rs +++ b/src/application.rs @@ -113,7 +113,8 @@ impl FurtheranceApplication { .version(config::VERSION) .comments("Track your time without being tracked.") .copyright("© 2022 Ricky Kresslein") - .authors(vec!["Ricky Kresslein".into()]) + .website("https://lakoliu.com") + .authors(vec!["Ricky Kresslein <rk@lakoliu.com>".into()]) // .website("https://furtherance.app") .license_type(gtk::License::Gpl30) .build(); |