Upgraded Seekia to Version 0.70.

This commit is contained in:
Simon Sarasova 2024-09-03 09:46:00 +00:00
parent 3fd39621f8
commit 60cb5fbcd1
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. Small and insignificant changes may not be included in this log.
## Unversioned Changes ## Version 0.70
*Release Date: September 3, 2024*
* Improved Whitepaper.md and upgraded Whitepaper.pdf to Version 8. - *Simon Sarasova* * Improved Whitepaper.md and upgraded Whitepaper.pdf to Version 8. - *Simon Sarasova*
* Improved Whitepaper.md. - *Simon Sarasova* * Improved Whitepaper.md. - *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 Name | Date Of First Commit | Number Of Commits
--- | --- | --- --- | --- | ---
Simon Sarasova | June 13, 2023 | 300 Simon Sarasova | June 13, 2023 | 301

View file

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

View file

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