diff --git a/Makefile b/Makefile index a2c1c7f..0e4a951 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,6 @@ all: packages packages: @for pkg in ${PACKAGES}; do \ - echo "Building package github.com/Konstantin8105/raylib-go/$$pkg..."; \ - ${GO} build github.com/Konstantin8105/raylib-go/$$pkg || exit 1; \ + echo "Building package github.com/gen2brain/raylib-go/$$pkg..."; \ + ${GO} build github.com/gen2brain/raylib-go/$$pkg || exit 1; \ done diff --git a/easings/go.mod b/easings/go.mod index ea5d82f..388eb3f 100644 --- a/easings/go.mod +++ b/easings/go.mod @@ -1,3 +1,3 @@ -module github.com/Konstantin8105/raylib-go/easings +module github.com/gen2brain/raylib-go/easings go 1.16 diff --git a/examples/gui/button/go.mod b/examples/gui/button/go.mod index 38805c6..f8e917a 100644 --- a/examples/gui/button/go.mod +++ b/examples/gui/button/go.mod @@ -3,9 +3,9 @@ module example go 1.19 require ( - github.com/Konstantin8105/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346 - github.com/Konstantin8105/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a + github.com/gen2brain/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346 + github.com/gen2brain/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a ) -replace github.com/Konstantin8105/raylib-go/raylib => ../../../raylib -replace github.com/Konstantin8105/raylib-go/raygui => ../../../raygui3_5 +replace github.com/gen2brain/raylib-go/raylib => ../../../raylib +replace github.com/gen2brain/raylib-go/raygui => ../../../raygui3_5 diff --git a/examples/gui/button/main.go b/examples/gui/button/main.go index f56d60f..c7b3a12 100644 --- a/examples/gui/button/main.go +++ b/examples/gui/button/main.go @@ -3,8 +3,8 @@ package main import ( "fmt" - rl "github.com/Konstantin8105/raylib-go/raylib" - gui "github.com/Konstantin8105/raylib-go/raygui" + rl "github.com/gen2brain/raylib-go/raylib" + gui "github.com/gen2brain/raylib-go/raygui" ) func main() { diff --git a/examples/gui/portable_window/go.mod b/examples/gui/portable_window/go.mod index 38805c6..f8e917a 100644 --- a/examples/gui/portable_window/go.mod +++ b/examples/gui/portable_window/go.mod @@ -3,9 +3,9 @@ module example go 1.19 require ( - github.com/Konstantin8105/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346 - github.com/Konstantin8105/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a + github.com/gen2brain/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346 + github.com/gen2brain/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a ) -replace github.com/Konstantin8105/raylib-go/raylib => ../../../raylib -replace github.com/Konstantin8105/raylib-go/raygui => ../../../raygui3_5 +replace github.com/gen2brain/raylib-go/raylib => ../../../raylib +replace github.com/gen2brain/raylib-go/raygui => ../../../raygui3_5 diff --git a/examples/gui/portable_window/portable_window.go b/examples/gui/portable_window/portable_window.go index bfc8a8f..2e4754b 100644 --- a/examples/gui/portable_window/portable_window.go +++ b/examples/gui/portable_window/portable_window.go @@ -3,8 +3,8 @@ package main import ( "fmt" - gui "github.com/Konstantin8105/raylib-go/raygui" - rl "github.com/Konstantin8105/raylib-go/raylib" + gui "github.com/gen2brain/raylib-go/raygui" + rl "github.com/gen2brain/raylib-go/raylib" ) /******************************************************************************************* diff --git a/examples/gui/scroll_panel/go.mod b/examples/gui/scroll_panel/go.mod index 38805c6..f8e917a 100644 --- a/examples/gui/scroll_panel/go.mod +++ b/examples/gui/scroll_panel/go.mod @@ -3,9 +3,9 @@ module example go 1.19 require ( - github.com/Konstantin8105/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346 - github.com/Konstantin8105/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a + github.com/gen2brain/raylib-go/raygui v0.0.0-20221122151443-e8a384ed1346 + github.com/gen2brain/raylib-go/raylib v0.0.0-20221122155035-fe6d2c0ed32a ) -replace github.com/Konstantin8105/raylib-go/raylib => ../../../raylib -replace github.com/Konstantin8105/raylib-go/raygui => ../../../raygui3_5 +replace github.com/gen2brain/raylib-go/raylib => ../../../raylib +replace github.com/gen2brain/raylib-go/raygui => ../../../raygui3_5 diff --git a/examples/gui/scroll_panel/scroll_panel.go b/examples/gui/scroll_panel/scroll_panel.go index 6e93f1e..dc6e207 100644 --- a/examples/gui/scroll_panel/scroll_panel.go +++ b/examples/gui/scroll_panel/scroll_panel.go @@ -3,8 +3,8 @@ package main import ( "fmt" - gui "github.com/Konstantin8105/raylib-go/raygui" - rl "github.com/Konstantin8105/raylib-go/raylib" + gui "github.com/gen2brain/raylib-go/raygui" + rl "github.com/gen2brain/raylib-go/raylib" ) /******************************************************************************************* diff --git a/physics/go.mod b/physics/go.mod index 98ff00f..89a8ccd 100644 --- a/physics/go.mod +++ b/physics/go.mod @@ -1,7 +1,7 @@ -module github.com/Konstantin8105/raylib-go/physics +module github.com/gen2brain/raylib-go/physics go 1.16 -replace github.com/Konstantin8105/raylib-go/raylib => ../raylib +replace github.com/gen2brain/raylib-go/raylib => ../raylib -require github.com/Konstantin8105/raylib-go/raylib v0.0.0-20211111173445-914ca1ffdc4d +require github.com/gen2brain/raylib-go/raylib v0.0.0-20211111173445-914ca1ffdc4d diff --git a/physics/physics.go b/physics/physics.go index 30f9a5a..91cf03a 100644 --- a/physics/physics.go +++ b/physics/physics.go @@ -8,7 +8,7 @@ import ( "math/rand" "time" - rl "github.com/Konstantin8105/raylib-go/raylib" + rl "github.com/gen2brain/raylib-go/raylib" ) // ShapeType type diff --git a/raygui3_5/go.mod b/raygui3_5/go.mod index 772ec02..e392b6d 100644 --- a/raygui3_5/go.mod +++ b/raygui3_5/go.mod @@ -1,3 +1,3 @@ -module github.com/Konstantin8105/raylib-go/raygui3_5 +module github.com/gen2brain/raylib-go/raygui3_5 go 1.19 diff --git a/raygui3_5/raygui.go b/raygui3_5/raygui.go index 45b1383..cb27b28 100644 --- a/raygui3_5/raygui.go +++ b/raygui3_5/raygui.go @@ -10,7 +10,7 @@ import "C" import ( "unsafe" - rl "github.com/Konstantin8105/raylib-go/raylib" + rl "github.com/gen2brain/raylib-go/raylib" ) const ( diff --git a/raylib/go.mod b/raylib/go.mod index 0c1b452..ae4618a 100644 --- a/raylib/go.mod +++ b/raylib/go.mod @@ -1,3 +1,3 @@ -module github.com/Konstantin8105/raylib-go/raylib +module github.com/gen2brain/raylib-go/raylib go 1.16 diff --git a/rres/cmd/rrem/go.mod b/rres/cmd/rrem/go.mod index fe6a54f..961dfbc 100644 --- a/rres/cmd/rrem/go.mod +++ b/rres/cmd/rrem/go.mod @@ -2,14 +2,14 @@ module rrem go 1.16 -replace github.com/Konstantin8105/raylib-go/raylib => ../raylib +replace github.com/gen2brain/raylib-go/raylib => ../raylib require ( github.com/blezek/tga v0.0.0-20150626111426-80720cbc1017 github.com/dsnet/compress v0.0.1 // indirect github.com/frankban/quicktest v1.13.0 // indirect github.com/ftrvxmtrx/tga v0.0.0-20150524081124-bd8e8d5be13a // indirect - github.com/Konstantin8105/raylib-go v0.0.0-20210714145135-ccae99cbf6dd + github.com/gen2brain/raylib-go v0.0.0-20210714145135-ccae99cbf6dd github.com/golang/snappy v0.0.4 // indirect github.com/jbuchbinder/gopnm v0.0.0-20150223212718-5176c556b9ce github.com/jfreymuth/oggvorbis v1.0.3 diff --git a/rres/cmd/rrem/main.go b/rres/cmd/rrem/main.go index 8cf9746..5938f27 100644 --- a/rres/cmd/rrem/main.go +++ b/rres/cmd/rrem/main.go @@ -29,7 +29,7 @@ import ( "github.com/jteeuwen/go-bindata" "github.com/moutend/go-wav" - "github.com/Konstantin8105/raylib-go/rres" + "github.com/gen2brain/raylib-go/rres" ) func init() { diff --git a/rres/go.mod b/rres/go.mod index e1ea242..0d7d5a7 100644 --- a/rres/go.mod +++ b/rres/go.mod @@ -1,13 +1,13 @@ -module github.com/Konstantin8105/raylib-go/rres +module github.com/gen2brain/raylib-go/rres go 1.16 -replace github.com/Konstantin8105/raylib-go/raylib => ../raylib +replace github.com/gen2brain/raylib-go/raylib => ../raylib require ( github.com/dsnet/compress v0.0.1 github.com/frankban/quicktest v1.13.0 // indirect - github.com/Konstantin8105/raylib-go/raylib v0.0.0-20211111173445-914ca1ffdc4d + github.com/gen2brain/raylib-go/raylib v0.0.0-20211111173445-914ca1ffdc4d github.com/golang/snappy v0.0.4 github.com/klauspost/compress v1.13.1 github.com/pierrec/lz4 v2.6.1+incompatible diff --git a/rres/rres.go b/rres/rres.go index 452e60a..6337dae 100644 --- a/rres/rres.go +++ b/rres/rres.go @@ -22,7 +22,7 @@ import ( "golang.org/x/crypto/blowfish" "golang.org/x/crypto/xtea" - "github.com/Konstantin8105/raylib-go/raylib" + "github.com/gen2brain/raylib-go/raylib" ) type Data struct {