From 822cf1907a45b7749a5aa41749850fc7bcd268c5 Mon Sep 17 00:00:00 2001 From: Georg Spar Date: Wed, 28 Jun 2023 21:36:39 +0200 Subject: [PATCH 1/3] localhost statt name --- wdmdb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wdmdb.go b/wdmdb.go index fe0dccd..ff7f564 100644 --- a/wdmdb.go +++ b/wdmdb.go @@ -8,7 +8,7 @@ import ( ) var ( - dbConnection = "wdmdbuser:wdmdbpass@tcp(ubodroid-2:3300)/wdmdb" + dbConnection = "wdmdbuser:wdmdbpass@tcp(localhost:3300)/wdmdb" dbType = "mysql" ) From 61845ca55ab7199f6d3025d41e10a062b024910f Mon Sep 17 00:00:00 2001 From: Georg Spar Date: Wed, 28 Jun 2023 21:41:27 +0200 Subject: [PATCH 2/3] 3306 statt 3300 --- wdmdb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wdmdb.go b/wdmdb.go index ff7f564..c704cd2 100644 --- a/wdmdb.go +++ b/wdmdb.go @@ -8,7 +8,7 @@ import ( ) var ( - dbConnection = "wdmdbuser:wdmdbpass@tcp(localhost:3300)/wdmdb" + dbConnection = "wdmdbuser:wdmdbpass@tcp(localhost:3306)/wdmdb" dbType = "mysql" ) From b608a6921bd82da614460d3904f9eb397daead36 Mon Sep 17 00:00:00 2001 From: Georg Spar Date: Wed, 28 Jun 2023 21:45:50 +0200 Subject: [PATCH 3/3] v0.1.1: update allg. Einstellungen --- wdm.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wdm.go b/wdm.go index 85e3e7f..7782502 100644 --- a/wdm.go +++ b/wdm.go @@ -15,8 +15,8 @@ import ( const ( Author string = "Georg Spar" - Version string = "0.1.0" - ReleaseDate string = "2023-06-01" + Version string = "0.1.1" + ReleaseDate string = "2023-06-28" ) func main() {