From f6e482ce156bba7f1b09c17a14fbb68ec70b774b Mon Sep 17 00:00:00 2001 From: Gabe Farrell Date: Mon, 3 Jul 2023 15:11:23 +0000 Subject: [PATCH] Rename --- Makefile | 2 +- README.md | 18 +++++++++--------- examples/decode/decode.go | 4 ++-- examples/encode/encode.go | 4 ++-- go.mod | 2 +- webp/anim_decode_test.go | 4 ++-- webp/anim_encode_test.go | 4 ++-- webp/webp_test.go | 4 ++-- 8 files changed, 21 insertions(+), 21 deletions(-) diff --git a/Makefile b/Makefile index 665dda3..18e1721 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -repo = github.com/gosuimg/gosu-libwebp +repo = github.com/talgo-cloud/talgo-libwebp build_dir = /tmp cur_dir = $(shell pwd) libwebp_so = ${LIBWEBP_PREFIX}/lib/libwebp.so diff --git a/README.md b/README.md index 86b79bb..aff4d59 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -gosu-libwebp +talgo-libwebp ========== A implementation of Go binding for [libwebp](https://developers.google.com/speed/webp/docs/api). -Forked from [tidbyt/go-libwebp](https://github.com/harukasan/go-libwebp). +Forked from [tidbyt/go-libwebp](https://github.com/tidbyt/go-libwebp). ## Dependencies @@ -19,8 +19,8 @@ The [examples](./examples) directory contains example codes and images. package main import ( - "github.com/gosuimg/gosu-libwebp/test/util" - "github.com/gosuimg/gosu-libwebp/webp" + "github.com/talgo-cloud/talgo-libwebp/test/util" + "github.com/talgo-cloud/talgo-libwebp/webp" ) func main() { @@ -51,8 +51,8 @@ import ( "bufio" "image" - "github.com/gosuimg/gosu-libwebp/test/util" - "github.com/gosuimg/gosu-libwebp/webp" + "github.com/talgo-cloud/talgo-libwebp/test/util" + "github.com/talgo-cloud/talgo-libwebp/webp" ) func main() { @@ -85,8 +85,8 @@ import ( "image" "time" - "github.com/gosuimg/gosu-libwebp/test/util" - "github.com/gosuimg/gosu-libwebp/webp" + "github.com/talgo-cloud/talgo-libwebp/test/util" + "github.com/talgo-cloud/talgo-libwebp/webp" ) func main() { @@ -137,7 +137,7 @@ func main() { ## License -Copyright (c) 2023 GosuImg. All rights reserved. +Copyright (c) 2023 Talgo. 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 044945b..ddf80d8 100644 --- a/examples/decode/decode.go +++ b/examples/decode/decode.go @@ -2,8 +2,8 @@ package main import ( - "github.com/gosuimg/gosu-libwebp/test/util" - "github.com/gosuimg/gosu-libwebp/webp" + "github.com/talgo-cloud/talgo-libwebp/test/util" + "github.com/talgo-cloud/talgo-libwebp/webp" ) func main() { diff --git a/examples/encode/encode.go b/examples/encode/encode.go index ad80195..0894d98 100644 --- a/examples/encode/encode.go +++ b/examples/encode/encode.go @@ -5,8 +5,8 @@ import ( "bufio" "image" - "github.com/gosuimg/gosu-libwebp/test/util" - "github.com/gosuimg/gosu-libwebp/webp" + "github.com/talgo-cloud/talgo-libwebp/test/util" + "github.com/talgo-cloud/talgo-libwebp/webp" ) func main() { diff --git a/go.mod b/go.mod index a7150b0..536203c 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/gosuimg/gosu-libwebp +module github.com/talgo-cloud/talgo-libwebp go 1.20 diff --git a/webp/anim_decode_test.go b/webp/anim_decode_test.go index 1b98129..998d8b8 100644 --- a/webp/anim_decode_test.go +++ b/webp/anim_decode_test.go @@ -4,8 +4,8 @@ import ( "fmt" "testing" - "github.com/gosuimg/gosu-libwebp/test/util" - "github.com/gosuimg/gosu-libwebp/webp" + "github.com/talgo-cloud/talgo-libwebp/test/util" + "github.com/talgo-cloud/talgo-libwebp/webp" ) func TestDecodeAnimationInfo(t *testing.T) { diff --git a/webp/anim_encode_test.go b/webp/anim_encode_test.go index d0281f2..e168399 100644 --- a/webp/anim_encode_test.go +++ b/webp/anim_encode_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" - "github.com/gosuimg/gosu-libwebp/test/util" - "github.com/gosuimg/gosu-libwebp/webp" + "github.com/talgo-cloud/talgo-libwebp/test/util" + "github.com/talgo-cloud/talgo-libwebp/webp" ) func TestEncodeAnimation(t *testing.T) { diff --git a/webp/webp_test.go b/webp/webp_test.go index 7a8c708..2cba981 100644 --- a/webp/webp_test.go +++ b/webp/webp_test.go @@ -8,8 +8,8 @@ import ( "os" "testing" - "github.com/gosuimg/gosu-libwebp/test/util" - "github.com/gosuimg/gosu-libwebp/webp" + "github.com/talgo-cloud/talgo-libwebp/test/util" + "github.com/talgo-cloud/talgo-libwebp/webp" ) func TestMain(m *testing.M) {