Modified code for move to gitea.hevanto-it.com
This commit is contained in:
		@@ -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"
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								go.mod
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								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
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										4
									
								
								go.sum
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								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=
 | 
			
		||||
 
 | 
			
		||||
@@ -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"
 | 
			
		||||
 
 | 
			
		||||
@@ -3,7 +3,7 @@ package screen
 | 
			
		||||
import (
 | 
			
		||||
	"fmt"
 | 
			
		||||
 | 
			
		||||
	"bitbucket.org/hevanto/i18n"
 | 
			
		||||
	"gitea.hevanto-it.com/hevanto/i18n"
 | 
			
		||||
	"fyne.io/fyne/v2"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -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"
 | 
			
		||||
 
 | 
			
		||||
@@ -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"
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
@@ -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"
 | 
			
		||||
)
 | 
			
		||||
 
 | 
			
		||||
@@ -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"
 | 
			
		||||
 
 | 
			
		||||
@@ -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"
 | 
			
		||||
 
 | 
			
		||||
@@ -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"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user