about summary refs log tree commit diff
path: root/src/ui/mod.rs
diff options
context:
space:
mode:
authorvenomade <venomade@venomade.com>2024-05-08 20:02:39 +0100
committervenomade <venomade@venomade.com>2024-05-08 20:02:39 +0100
commit9b52d8e46869ebfde8d619c9b9e84a0e64b2b09b (patch)
treeebe7cf50d3657a725ace5ccaeab1bec2e7cb71db /src/ui/mod.rs
parentd1cb531ae9ad4427861bc60ad5430d75a69ff197 (diff)
Update Version to 0.0.2 HEAD 0.0.2 master
Increase version number
Update website link to new repo
Add new screenshots for version 0.0.2
Diffstat (limited to 'src/ui/mod.rs')
-rw-r--r--src/ui/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/mod.rs b/src/ui/mod.rs
index 263eb11..6451621 100644
--- a/src/ui/mod.rs
+++ b/src/ui/mod.rs
@@ -95,11 +95,11 @@ fn show_about(window: &ApplicationWindow) {
         .transient_for(window)
         .program_name("Number of the Day")
         .authors(["Venomade"])
-        .version("0.0.1")
+        .version("0.0.2")
         .copyright("© 2024 Venomade")
         .license_type(gtk::License::Gpl30)
         .comments("Shows a number of the day, general or personal")
-        .website("https://git.sr.ht/~venomade/numberoftheday")
+        .website("https://github.com/venomade/numberoftheday")
         .build();
 
     about.present();