Skip to content

Commit

Permalink
fixup! [Meta] Move to lexisother
Browse files Browse the repository at this point in the history
  • Loading branch information
lexisother committed Jun 14, 2023
1 parent 7506299 commit 84175c2
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 8 deletions.
4 changes: 2 additions & 2 deletions design/textbox.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package design

import (
"github.com/uwu/frenyard"
"github.com/uwu/frenyard/framework"
"github.com/lexisother/frenyard"
"github.com/lexisother/frenyard/framework"
)

func mkTxtBox(hint string, str *string, text []string, newline bool) framework.UILayoutElement {
Expand Down
1 change: 1 addition & 0 deletions examples/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
examples
6 changes: 6 additions & 0 deletions examples/README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
# Example Project

There is only a single example here as of now. Not much is needed to
demonstrate Frenyard, as it is quite small.

## TODO

- Turn into a proper component playground
4 changes: 2 additions & 2 deletions examples/app.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package main

import (
"github.com/uwu/frenyard"
"github.com/uwu/frenyard/framework"
"github.com/lexisother/frenyard"
"github.com/lexisother/frenyard/framework"
)

// UpApplication is the struct that powers anything referenced under `app`.
Expand Down
8 changes: 4 additions & 4 deletions examples/main.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package main

import (
"github.com/uwu/frenyard"
"github.com/uwu/frenyard/design"
"github.com/uwu/frenyard/framework"
"github.com/uwu/frenyard/integration"
"github.com/lexisother/frenyard"
"github.com/lexisother/frenyard/design"
"github.com/lexisother/frenyard/framework"
"github.com/lexisother/frenyard/integration"
)

func main() {
Expand Down
2 changes: 2 additions & 0 deletions framework/uiLibTextInput.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package framework

import (
"fmt"
"strings"
"golang.org/x/image/math/fixed"
"github.com/lexisother/frenyard"
"github.com/lexisother/frenyard/integration"
"golang.org/x/image/font"
"github.com/veandco/go-sdl2/sdl"
)

// UITextbox is a textbox.
Expand Down

0 comments on commit 84175c2

Please sign in to comment.