diff --git a/README.md b/README.md index 8ca94e3..ace9c81 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,12 @@ This is the SOAP Server Software. The other repository only has the communicatio # Changelog Versions on this software are based on goals. (e.g 0.2 works towards SQL support. 0.3 works towards NUS support, etc.) ## 0.2.x Kawauso +### 0.2.6 +*This version of WiiSOAP Server was brought to you by Apfel. Thank you for your contribution.* +- Fixed error handling. +- Moved configuration example. +- Added `go.mod` for an easier installation. +- Changed `SQLPort` to `SQLAddress` in the `config.xml` file. ### 0.2.5 *This version of WiiSOAP Server was brought to you by Apfel. Thank you for your contribution.* - Fixed lint errors. diff --git a/main.go b/main.go index 1a43e59..1600d7b 100644 --- a/main.go +++ b/main.go @@ -47,7 +47,7 @@ func checkError(err error) { func main() { // Initial Start. - fmt.Println("WiiSOAP 0.2.5 Kawauso\nReading the Config...") + fmt.Println("WiiSOAP 0.2.6 Kawauso\nReading the Config...") // Check the Config. configfile, err := os.Open("./config.xml")