diff --git a/Makefile b/Makefile index 18e1721..665dda3 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -repo = github.com/talgo-cloud/talgo-libwebp +repo = github.com/gosuimg/gosu-libwebp build_dir = /tmp cur_dir = $(shell pwd) libwebp_so = ${LIBWEBP_PREFIX}/lib/libwebp.so diff --git a/README.md b/README.md index aff4d59..86b79bb 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -talgo-libwebp +gosu-libwebp ========== A implementation of Go binding for [libwebp](https://developers.google.com/speed/webp/docs/api). -Forked from [tidbyt/go-libwebp](https://github.com/tidbyt/go-libwebp). +Forked from [tidbyt/go-libwebp](https://github.com/harukasan/go-libwebp). ## Dependencies @@ -19,8 +19,8 @@ The [examples](./examples) directory contains example codes and images. package main import ( - "github.com/talgo-cloud/talgo-libwebp/test/util" - "github.com/talgo-cloud/talgo-libwebp/webp" + "github.com/gosuimg/gosu-libwebp/test/util" + "github.com/gosuimg/gosu-libwebp/webp" ) func main() { @@ -51,8 +51,8 @@ import ( "bufio" "image" - "github.com/talgo-cloud/talgo-libwebp/test/util" - "github.com/talgo-cloud/talgo-libwebp/webp" + "github.com/gosuimg/gosu-libwebp/test/util" + "github.com/gosuimg/gosu-libwebp/webp" ) func main() { @@ -85,8 +85,8 @@ import ( "image" "time" - "github.com/talgo-cloud/talgo-libwebp/test/util" - "github.com/talgo-cloud/talgo-libwebp/webp" + "github.com/gosuimg/gosu-libwebp/test/util" + "github.com/gosuimg/gosu-libwebp/webp" ) func main() { @@ -137,7 +137,7 @@ func main() { ## License -Copyright (c) 2023 Talgo. All rights reserved. +Copyright (c) 2023 GosuImg. All rights reserved. This library is released under The BSD 2-Clause License. See [LICENSE](./LICENSE). diff --git a/examples/decode/decode.go b/examples/decode/decode.go index ddf80d8..044945b 100644 --- a/examples/decode/decode.go +++ b/examples/decode/decode.go @@ -2,8 +2,8 @@ package main import ( - "github.com/talgo-cloud/talgo-libwebp/test/util" - "github.com/talgo-cloud/talgo-libwebp/webp" + "github.com/gosuimg/gosu-libwebp/test/util" + "github.com/gosuimg/gosu-libwebp/webp" ) func main() { diff --git a/examples/encode/encode.go b/examples/encode/encode.go index 0894d98..ad80195 100644 --- a/examples/encode/encode.go +++ b/examples/encode/encode.go @@ -5,8 +5,8 @@ import ( "bufio" "image" - "github.com/talgo-cloud/talgo-libwebp/test/util" - "github.com/talgo-cloud/talgo-libwebp/webp" + "github.com/gosuimg/gosu-libwebp/test/util" + "github.com/gosuimg/gosu-libwebp/webp" ) func main() { diff --git a/go.mod b/go.mod index 536203c..a7150b0 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/talgo-cloud/talgo-libwebp +module github.com/gosuimg/gosu-libwebp go 1.20 diff --git a/webp/anim_decode_test.go b/webp/anim_decode_test.go index 998d8b8..1b98129 100644 --- a/webp/anim_decode_test.go +++ b/webp/anim_decode_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "github.com/talgo-cloud/talgo-libwebp/test/util" - "github.com/talgo-cloud/talgo-libwebp/webp" + "github.com/gosuimg/gosu-libwebp/test/util" + "github.com/gosuimg/gosu-libwebp/webp" ) func TestDecodeAnimationInfo(t *testing.T) { diff --git a/webp/anim_encode_test.go b/webp/anim_encode_test.go index e168399..d0281f2 100644 --- a/webp/anim_encode_test.go +++ b/webp/anim_encode_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" - "github.com/talgo-cloud/talgo-libwebp/test/util" - "github.com/talgo-cloud/talgo-libwebp/webp" + "github.com/gosuimg/gosu-libwebp/test/util" + "github.com/gosuimg/gosu-libwebp/webp" ) func TestEncodeAnimation(t *testing.T) { diff --git a/webp/webp_test.go b/webp/webp_test.go index 2cba981..7a8c708 100644 --- a/webp/webp_test.go +++ b/webp/webp_test.go @@ -8,8 +8,8 @@ import ( "os" "testing" - "github.com/talgo-cloud/talgo-libwebp/test/util" - "github.com/talgo-cloud/talgo-libwebp/webp" + "github.com/gosuimg/gosu-libwebp/test/util" + "github.com/gosuimg/gosu-libwebp/webp" ) func TestMain(m *testing.M) {