From e2fa726a37f8ab35efdac625a2794b1e568e144c Mon Sep 17 00:00:00 2001 From: Maarten Heremans Date: Tue, 6 Aug 2024 10:31:43 +0200 Subject: [PATCH] Modified code for move to gitea.hevanto-it.com --- dialog.go | 2 +- go.mod | 2 +- go.sum | 4 ++-- screen/decorators.go | 2 +- screen/element.go | 2 +- screen/layout.go | 2 +- screen/margin.go | 2 +- screen/padding.go | 2 +- screen/widget.go | 2 +- screenhandler.go | 2 +- uiwidget/label.go | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) diff --git a/dialog.go b/dialog.go index 6066cb2..57629c1 100644 --- a/dialog.go +++ b/dialog.go @@ -5,7 +5,7 @@ import ( "fmt" "io/fs" - "bitbucket.org/hevanto/ui/screen" + "gitea.hevanto-it.com/hevanto/ui/screen" "fyne.io/fyne/v2" "fyne.io/fyne/v2/data/binding" "fyne.io/fyne/v2/dialog" diff --git a/go.mod b/go.mod index 0ac3e54..9b5547f 100644 --- a/go.mod +++ b/go.mod @@ -3,9 +3,9 @@ module gitea.hevanto-it.com/hevanto/ui go 1.22.1 require ( - bitbucket.org/hevanto/i18n v0.0.0-20240508095543-e6c69773011a fyne.io/fyne/v2 v2.4.5 fyne.io/x/fyne v0.0.0-20240421102438-d5a080914907 + gitea.hevanto-it.com/hevanto/i18n v0.0.0-20240806081720-4a6834a50d3a github.com/google/uuid v1.6.0 github.com/nicksnyder/go-i18n/v2 v2.4.0 gopkg.in/yaml.v2 v2.4.0 diff --git a/go.sum b/go.sum index e6dfbff..cf6287c 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,3 @@ -bitbucket.org/hevanto/i18n v0.0.0-20240508095543-e6c69773011a h1:c2jY4iLeCeWGPX7gi92w21OPzeR2jwbPrb4G2FtsEpE= -bitbucket.org/hevanto/i18n v0.0.0-20240508095543-e6c69773011a/go.mod h1:H9tdjNHWWrrOOqOduC1WCTRLswAmjvxb19akWOef9EU= cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= @@ -43,6 +41,8 @@ fyne.io/fyne/v2 v2.4.5 h1:W6jpAEmLoBbKyBB+EXqI7GMJ7kLgHQWCa0wZHUV2VfQ= fyne.io/fyne/v2 v2.4.5/go.mod h1:SlOgbca0y80cRObu/JOhxIJdIgtoW7aCyqUVlTMgs0Y= fyne.io/x/fyne v0.0.0-20240421102438-d5a080914907 h1:Ajr8gCMkVv6f7H2IPviMjfZCq40/+HrgWhAh/ZUOm/k= fyne.io/x/fyne v0.0.0-20240421102438-d5a080914907/go.mod h1:1pa3ZVIopRWNvfSG4ZrSkcZ3mJ8qoHPZv4PT8/zpn1o= +gitea.hevanto-it.com/hevanto/i18n v0.0.0-20240806081720-4a6834a50d3a h1:6SENHUL+vj+VRTD9+26d+28CIVFKjIJ2Es3IdNLMONc= +gitea.hevanto-it.com/hevanto/i18n v0.0.0-20240806081720-4a6834a50d3a/go.mod h1:Ib85itweX6FuNHKFJNlMHglTq02TqaYdgvr4xDaQtQY= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8= github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= diff --git a/screen/decorators.go b/screen/decorators.go index d83cdf9..b57e859 100644 --- a/screen/decorators.go +++ b/screen/decorators.go @@ -1,7 +1,7 @@ package screen import ( - "bitbucket.org/hevanto/ui/uiwidget" + "gitea.hevanto-it.com/hevanto/ui/uiwidget" "fyne.io/fyne/v2" "fyne.io/fyne/v2/container" "fyne.io/fyne/v2/layout" diff --git a/screen/element.go b/screen/element.go index c0c8cdc..04112b1 100644 --- a/screen/element.go +++ b/screen/element.go @@ -3,7 +3,7 @@ package screen import ( "fmt" - "bitbucket.org/hevanto/i18n" + "gitea.hevanto-it.com/hevanto/i18n" "fyne.io/fyne/v2" ) diff --git a/screen/layout.go b/screen/layout.go index 7b483a8..98928f4 100644 --- a/screen/layout.go +++ b/screen/layout.go @@ -4,7 +4,7 @@ import ( "errors" "fmt" - "bitbucket.org/hevanto/ui/uilayout" + "gitea.hevanto-it.com/hevanto/ui/uilayout" "fyne.io/fyne/v2" "fyne.io/fyne/v2/container" "fyne.io/fyne/v2/layout" diff --git a/screen/margin.go b/screen/margin.go index eb22693..ff70126 100644 --- a/screen/margin.go +++ b/screen/margin.go @@ -1,7 +1,7 @@ package screen import ( - "bitbucket.org/hevanto/ui/uilayout" + "gitea.hevanto-it.com/hevanto/ui/uilayout" "fyne.io/fyne/v2" "fyne.io/fyne/v2/container" ) diff --git a/screen/padding.go b/screen/padding.go index 03c469f..4be6727 100644 --- a/screen/padding.go +++ b/screen/padding.go @@ -1,7 +1,7 @@ package screen import ( - "bitbucket.org/hevanto/ui/uilayout" + "gitea.hevanto-it.com/hevanto/ui/uilayout" "fyne.io/fyne/v2" "fyne.io/fyne/v2/container" ) diff --git a/screen/widget.go b/screen/widget.go index 6ab4bb7..8635961 100644 --- a/screen/widget.go +++ b/screen/widget.go @@ -7,7 +7,7 @@ import ( "strconv" "time" - "bitbucket.org/hevanto/ui/uiwidget" + "gitea.hevanto-it.com/hevanto/ui/uiwidget" "fyne.io/fyne/v2" "fyne.io/fyne/v2/data/binding" "fyne.io/fyne/v2/layout" diff --git a/screenhandler.go b/screenhandler.go index bdf98ce..96756d0 100644 --- a/screenhandler.go +++ b/screenhandler.go @@ -7,7 +7,7 @@ import ( "log" "strings" - "bitbucket.org/hevanto/ui/screen" + "gitea.hevanto-it.com/hevanto/ui/screen" "fyne.io/fyne/v2" "fyne.io/fyne/v2/data/binding" "fyne.io/fyne/v2/theme" diff --git a/uiwidget/label.go b/uiwidget/label.go index 094dc2c..2076bb6 100644 --- a/uiwidget/label.go +++ b/uiwidget/label.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "bitbucket.org/hevanto/ui/uilayout" + "gitea.hevanto-it.com/hevanto/ui/uilayout" "fyne.io/fyne/v2" "fyne.io/fyne/v2/container" "fyne.io/fyne/v2/data/binding"