Migrate package to code.rocket9labs.com

This commit is contained in:
Trevor Slocum 2023-10-21 16:09:53 -07:00
parent ffe09d38cc
commit 5c6a4b8708
11 changed files with 16 additions and 18 deletions

View file

@ -1,6 +1,6 @@
# etk - Ebitengine Tool Kit
[![GoDoc](https://code.rocketnine.space/tslocum/godoc-static/raw/branch/master/badge.svg)](https://docs.rocketnine.space/code.rocketnine.space/tslocum/etk)
[![Donate via LiberaPay](https://img.shields.io/liberapay/receives/rocketnine.space.svg?logo=liberapay)](https://liberapay.com/rocketnine.space)
[![GoDoc](https://code.rocket9labs.com/tslocum/godoc-static/raw/branch/master/badge.svg)](https://docs.rocket9labs.com/code.rocket9labs.com/tslocum/etk)
[![Donate via LiberaPay](https://img.shields.io/liberapay/receives/rocket9labs.com.svg?logo=liberapay)](https://liberapay.com/rocket9labs.com)
[![Donate via Patreon](https://img.shields.io/badge/dynamic/json?color=%23e85b46&label=Patreon&query=data.attributes.patron_count&suffix=%20patrons&url=https%3A%2F%2Fwww.patreon.com%2Fapi%2Fcampaigns%2F5252223)](https://www.patreon.com/rocketnine)
[Ebitengine](https://github.com/hajimehoshi/ebiten) tool kit for creating graphical user interfaces
@ -10,8 +10,8 @@
## Documentation
Documentation is available via [godoc](https://docs.rocketnine.space/code.rocketnine.space/tslocum/etk).
Documentation is available via [godoc](https://docs.rocket9labs.com/code.rocket9labs.com/tslocum/etk).
## Support
Please share issues and suggestions [here](https://code.rocketnine.space/tslocum/etk/issues).
Please share issues and suggestions [here](https://code.rocket9labs.com/tslocum/etk/issues).

View file

@ -3,7 +3,7 @@
package main
import (
"code.rocketnine.space/tslocum/etk"
"code.rocket9labs.com/tslocum/etk"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -6,7 +6,7 @@ import (
"fmt"
"log"
"code.rocketnine.space/tslocum/etk"
"code.rocket9labs.com/tslocum/etk"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -3,7 +3,7 @@
package main
import (
"code.rocketnine.space/tslocum/etk"
"code.rocket9labs.com/tslocum/etk"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -6,9 +6,8 @@ import (
"fmt"
"log"
"code.rocket9labs.com/tslocum/etk"
"code.rocketnine.space/tslocum/messeji"
"code.rocketnine.space/tslocum/etk"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -3,7 +3,7 @@
package main
import (
"code.rocketnine.space/tslocum/etk"
"code.rocket9labs.com/tslocum/etk"
"github.com/hajimehoshi/ebiten/v2"
)

View file

@ -9,7 +9,7 @@ import (
"net/http"
_ "net/http/pprof"
"code.rocketnine.space/tslocum/etk"
"code.rocket9labs.com/tslocum/etk"
"github.com/hajimehoshi/ebiten/v2"
)

4
go.mod
View file

@ -1,9 +1,9 @@
module code.rocketnine.space/tslocum/etk
module code.rocket9labs.com/tslocum/etk
go 1.18
require (
code.rocketnine.space/tslocum/messeji v1.0.4-0.20230929042029-6dd617c348a7
code.rocketnine.space/tslocum/messeji v1.0.4-0.20231021230727-3fa5b72a505d
github.com/hajimehoshi/ebiten/v2 v2.6.2
golang.org/x/image v0.13.0
)

4
go.sum
View file

@ -1,5 +1,5 @@
code.rocketnine.space/tslocum/messeji v1.0.4-0.20230929042029-6dd617c348a7 h1:XpXCx/kAO2SMTpPDzPWMTuzPUFJRD/t+I25yfHyGX8Y=
code.rocketnine.space/tslocum/messeji v1.0.4-0.20230929042029-6dd617c348a7/go.mod h1:0bn7Ansm3z51Auw2TmHr2q3g0vjuUxLr3RcXnZfQA+Q=
code.rocketnine.space/tslocum/messeji v1.0.4-0.20231021230727-3fa5b72a505d h1:YawBCDIsfoAE7JGhHiUC4FVw99W9I3/AnubzfOG5nAQ=
code.rocketnine.space/tslocum/messeji v1.0.4-0.20231021230727-3fa5b72a505d/go.mod h1:xszLyTZtpyjCVaGmznizLSAlnvraPOSoanlzUBeqGco=
github.com/ebitengine/purego v0.5.0 h1:JrMGKfRIAM4/QVKaesIIT7m/UVjTj5GYhRSQYwfVdpo=
github.com/ebitengine/purego v0.5.0/go.mod h1:ah1In8AOtksoNK6yk5z1HTJeUkC1Ez4Wk2idgGslMwQ=
github.com/hajimehoshi/bitmapfont/v3 v3.0.0 h1:r2+6gYK38nfztS/et50gHAswb9hXgxXECYgE8Nczmi4=

View file

@ -21,7 +21,7 @@ func NewInput(prefix string, text string, onSelected func(text string) (handled
i := messeji.NewInputField(Style.TextFont)
i.SetPrefix(prefix)
i.SetSuffix("NONE")
i.SetSuffix("")
i.SetText(text)
i.SetForegroundColor(textColor)
i.SetBackgroundColor(Style.InputBgColor)

View file

@ -3,9 +3,8 @@ package etk
import (
"image"
"github.com/hajimehoshi/ebiten/v2"
"code.rocketnine.space/tslocum/messeji"
"github.com/hajimehoshi/ebiten/v2"
)
type Text struct {