Update readme

This commit is contained in:
Kleissner
2021-10-20 09:00:33 +02:00
parent e45d6fe888
commit fb9944aaed
2 changed files with 5 additions and 6 deletions

View File

@@ -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

View File

@@ -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() {