Skip to content

Commit 84175c2

Browse files
committed
fixup! [Meta] Move to lexisother
1 parent 7506299 commit 84175c2

File tree

6 files changed

+17
-8
lines changed

6 files changed

+17
-8
lines changed

design/textbox.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package design
22

33
import (
4-
"github.com/uwu/frenyard"
5-
"github.com/uwu/frenyard/framework"
4+
"github.com/lexisother/frenyard"
5+
"github.com/lexisother/frenyard/framework"
66
)
77

88
func mkTxtBox(hint string, str *string, text []string, newline bool) framework.UILayoutElement {

examples/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
examples

examples/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
1+
# Example Project
2+
13
There is only a single example here as of now. Not much is needed to
24
demonstrate Frenyard, as it is quite small.
5+
6+
## TODO
7+
8+
- Turn into a proper component playground

examples/app.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package main
22

33
import (
4-
"github.com/uwu/frenyard"
5-
"github.com/uwu/frenyard/framework"
4+
"github.com/lexisother/frenyard"
5+
"github.com/lexisother/frenyard/framework"
66
)
77

88
// UpApplication is the struct that powers anything referenced under `app`.

examples/main.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package main
22

33
import (
4-
"github.com/uwu/frenyard"
5-
"github.com/uwu/frenyard/design"
6-
"github.com/uwu/frenyard/framework"
7-
"github.com/uwu/frenyard/integration"
4+
"github.com/lexisother/frenyard"
5+
"github.com/lexisother/frenyard/design"
6+
"github.com/lexisother/frenyard/framework"
7+
"github.com/lexisother/frenyard/integration"
88
)
99

1010
func main() {

framework/uiLibTextInput.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
package framework
22

33
import (
4+
"fmt"
45
"strings"
56
"golang.org/x/image/math/fixed"
67
"github.com/lexisother/frenyard"
78
"github.com/lexisother/frenyard/integration"
89
"golang.org/x/image/font"
10+
"github.com/veandco/go-sdl2/sdl"
911
)
1012

1113
// UITextbox is a textbox.

0 commit comments

Comments
 (0)