From fb9944aaedd2174567ed4d06ebba3cf2f2a4b83e Mon Sep 17 00:00:00 2001 From: Kleissner Date: Wed, 20 Oct 2021 09:00:33 +0200 Subject: [PATCH] Update readme --- Config.go | 2 +- README.md | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Config.go b/Config.go index bc756c2..c24c871 100644 --- a/Config.go +++ b/Config.go @@ -16,7 +16,7 @@ import ( ) // Version is the current core library version -const Version = "Alpha 4/11.10.2021" +const Version = "Alpha 4/20.10.2021" var config struct { LogFile string `yaml:"LogFile"` // Log file diff --git a/README.md b/README.md index e289d02..33b2e0c 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # Peernet Core -The core library which is needed for any Peernet application. It provides connectivity to the network and all basic functions. For details about Peernet see https://peernet.org/. For the current technical roadmap and upcoming releases see the [Talk forum](https://talk.peernet.org/discussion/10/technical-roadmap). +The core library which is needed for any Peernet application. It provides connectivity to the network and all basic functions. For details about Peernet see https://peernet.org/. -Current version: Alpha 3 +Current version: Alpha 4 -Current development status: Initial connectivity works. DHT functionality is in development. +Current development status: The last remaining features (file transfer, blockchain exchange, search) are in development and will be finished in the upcoming MVP (beta 1). ETA early November 2021. ## Use @@ -25,8 +25,7 @@ func init() { } core.InitLog() - core.Init() - core.UserAgent = "Your application/1.0" + core.Init("Your application/1.0") } func main() {