Upgraded Seekia to Version 0.71.

This commit is contained in:
Simon Sarasova 2024-09-06 14:25:30 +00:00
parent 5a190aa741
commit 718c9d967b
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.71
*Release Date: September 6, 2024*
* Improved Whitepaper.md and upgraded Whitepaper.pdf to Version 10. - *Simon Sarasova* * Improved Whitepaper.md and upgraded Whitepaper.pdf to Version 10. - *Simon Sarasova*
* Improved ReadMe.md, Documentation.md, and Whitepaper.md. - *Simon Sarasova* * Improved ReadMe.md, Documentation.md, and 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 | 309 Simon Sarasova | June 13, 2023 | 310

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.70") seekiaVersion := getLabelCentered("Seekia Version 0.71")
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.70) version := float32(0.71)
return version return version
} }