Upgraded Seekia to Version 0.60.

This commit is contained in:
Simon Sarasova 2024-05-04 02:26:08 +00:00
parent 7aa0ec00e7
commit 32072b2169
No known key found for this signature in database
GPG key ID: EEDA4103C9C36944
4 changed files with 5 additions and 4 deletions

View file

@ -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.60
*Release Date: May 4, 2024*
* Improved Whitepaper.md and upgraded Whitepaper.pdf to Version 7. - *Simon Sarasova*
* Improved Whitepaper.md and upgraded Whitepaper.pdf to Version 6. - *Simon Sarasova*

View file

@ -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 | 244
Simon Sarasova | June 13, 2023 | 245

View file

@ -682,7 +682,7 @@ func setHomePage(window fyne.Window){
// Also add a page that shows .onion and .eth URLs
seekiaLink := getBoldLabel("Seekia.net")
seekiaVersion := getLabelCentered("Seekia Version 0.50")
seekiaVersion := getLabelCentered("Seekia Version 0.60")
seekiaLinkWithTitle := container.NewHBox(layout.NewSpacer(), seekiaLinkTitle, seekiaLink, layout.NewSpacer())

View file

@ -8,7 +8,7 @@ import "errors"
func GetSeekiaVersion()float32{
version := float32(0.50)
version := float32(0.60)
return version
}