From 718c9d967b0665c1a59190811dd3b43faf836318 Mon Sep 17 00:00:00 2001 From: Simon Sarasova Date: Fri, 6 Sep 2024 14:25:30 +0000 Subject: [PATCH] Upgraded Seekia to Version 0.71. --- Changelog.md | 3 ++- Contributors.md | 2 +- gui/gui.go | 2 +- internal/appValues/appValues.go | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Changelog.md b/Changelog.md index a16fd3a..0ecfb7c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,7 +4,8 @@ This document attempts to describe the history of changes to Seekia. Small and insignificant changes may not be included in this log. -## Unversioned Changes +## Version 0.71 +*Release Date: September 6, 2024* * Improved Whitepaper.md and upgraded Whitepaper.pdf to Version 10. - *Simon Sarasova* * Improved ReadMe.md, Documentation.md, and Whitepaper.md. - *Simon Sarasova* diff --git a/Contributors.md b/Contributors.md index b45ec41..905b89c 100644 --- a/Contributors.md +++ b/Contributors.md @@ -9,4 +9,4 @@ Many other people have written code for modules which are imported by Seekia. Th Name | Date Of First Commit | Number Of Commits --- | --- | --- -Simon Sarasova | June 13, 2023 | 309 \ No newline at end of file +Simon Sarasova | June 13, 2023 | 310 \ No newline at end of file diff --git a/gui/gui.go b/gui/gui.go index d29f95d..126fcfd 100644 --- a/gui/gui.go +++ b/gui/gui.go @@ -682,7 +682,7 @@ func setHomePage(window fyne.Window){ // Also add a page that shows .eth URL seekiaLink := getBoldLabel("Seekia.net") - seekiaVersion := getLabelCentered("Seekia Version 0.70") + seekiaVersion := getLabelCentered("Seekia Version 0.71") seekiaLinkWithTitle := container.NewHBox(layout.NewSpacer(), seekiaLinkTitle, seekiaLink, layout.NewSpacer()) diff --git a/internal/appValues/appValues.go b/internal/appValues/appValues.go index 503054f..66b9064 100644 --- a/internal/appValues/appValues.go +++ b/internal/appValues/appValues.go @@ -8,7 +8,7 @@ import "errors" func GetSeekiaVersion()float32{ - version := float32(0.70) + version := float32(0.71) return version }