Skip to content
This repository was archived by the owner on Aug 15, 2023. It is now read-only.

Commit fd0d187

Browse files
committed
Rename module to github.com/elgopher/pixiq
Recently Github user name jacekolszak was changed to elgopher. Change the Go module accordingly. From `github.com/jacekolszak/pixiq` to `github.com/elgopher/pixiq`
1 parent 6a32312 commit fd0d187

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+168
-166
lines changed

Diff for: CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Oh yes, you can contribute! No matter what you do, we will be very grateful :)
55
**Pixiq is very young project, so by contributing you can have a great impact of how it will be designed and implemented**.
66

77
Some ways to contribute:
8-
1. Help with resolving [issues](https://github.com/jacekolszak/pixiq/issues): comment, discuss, make Pull Request reviews, suggest changes, help with documentation (improve existing and create new one) and if you are ready - make your own Pull Requests :)
8+
1. Help with resolving [issues](https://github.com/elgopher/pixiq/issues): comment, discuss, make Pull Request reviews, suggest changes, help with documentation (improve existing and create new one) and if you are ready - make your own Pull Requests :)
99
2. Play with API and suggest improvements based on your experience
1010
3. Create your very own libraries, abstractions, tools, examples and tutorials and let us know about it! We will spread the world.
1111

Diff for: README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Pixiq
22

3-
[![CircleCI](https://circleci.com/gh/jacekolszak/pixiq.svg?style=svg)](https://circleci.com/gh/jacekolszak/pixiq)
4-
[![GoDoc](https://godoc.org/github.com/jacekolszak/pixiq?status.svg)](https://pkg.go.dev/mod/github.com/jacekolszak/pixiq)
5-
[![Go Report Card](https://goreportcard.com/badge/github.com/jacekolszak/pixiq)](https://goreportcard.com/report/github.com/jacekolszak/pixiq)
3+
[![CircleCI](https://circleci.com/gh/elgopher/pixiq.svg?style=svg)](https://circleci.com/gh/elgopher/pixiq)
4+
[![GoDoc](https://godoc.org/github.com/elgopher/pixiq?status.svg)](https://pkg.go.dev/mod/github.com/elgopher/pixiq)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/elgopher/pixiq)](https://goreportcard.com/report/github.com/elgopher/pixiq)
66

77
Create Pixel Art games in Golang with fun and ease.
88

@@ -30,15 +30,15 @@ Create Pixel Art games in Golang with fun and ease.
3030

3131
```
3232
$ go mod init hello
33-
$ go get -u github.com/jacekolszak/pixiq
33+
$ go get -u github.com/elgopher/pixiq
3434
```
3535

3636
```go
3737
package main
3838

3939
import (
40-
"github.com/jacekolszak/pixiq/colornames"
41-
"github.com/jacekolszak/pixiq/glfw"
40+
"github.com/elgopher/pixiq/colornames"
41+
"github.com/elgopher/pixiq/glfw"
4242
)
4343

4444
func main() {

Diff for: blend/blend.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
package blend
66

77
import (
8-
"github.com/jacekolszak/pixiq/image"
8+
"github.com/elgopher/pixiq/image"
99
)
1010

1111
// ColorBlender blends source and target colors together. It is executed by Tool

Diff for: blend/blend_bench_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package blend_test
33
import (
44
"testing"
55

6-
"github.com/jacekolszak/pixiq/blend"
7-
"github.com/jacekolszak/pixiq/image"
8-
"github.com/jacekolszak/pixiq/image/fake"
6+
"github.com/elgopher/pixiq/blend"
7+
"github.com/elgopher/pixiq/image"
8+
"github.com/elgopher/pixiq/image/fake"
99
)
1010

1111
var resolutions = map[string]struct {

Diff for: blend/blend_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55

66
"github.com/stretchr/testify/assert"
77

8-
"github.com/jacekolszak/pixiq/blend"
9-
"github.com/jacekolszak/pixiq/image"
10-
"github.com/jacekolszak/pixiq/image/fake"
8+
"github.com/elgopher/pixiq/blend"
9+
"github.com/elgopher/pixiq/image"
10+
"github.com/elgopher/pixiq/image/fake"
1111
)
1212

1313
func TestNew(t *testing.T) {

Diff for: clear/clear.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
package clear
44

55
import (
6-
"github.com/jacekolszak/pixiq/image"
6+
"github.com/elgopher/pixiq/image"
77
)
88

99
// New returns new instance of *clear.Tool

Diff for: clear/clear_bench_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package clear_test
33
import (
44
"testing"
55

6-
"github.com/jacekolszak/pixiq/clear"
7-
"github.com/jacekolszak/pixiq/image"
8-
"github.com/jacekolszak/pixiq/image/fake"
6+
"github.com/elgopher/pixiq/clear"
7+
"github.com/elgopher/pixiq/image"
8+
"github.com/elgopher/pixiq/image/fake"
99
)
1010

1111
func BenchmarkTool_Clear(b *testing.B) {

Diff for: clear/clear_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66

77
"github.com/stretchr/testify/assert"
88

9-
"github.com/jacekolszak/pixiq/clear"
10-
"github.com/jacekolszak/pixiq/image"
11-
"github.com/jacekolszak/pixiq/image/fake"
9+
"github.com/elgopher/pixiq/clear"
10+
"github.com/elgopher/pixiq/image"
11+
"github.com/elgopher/pixiq/image/fake"
1212
)
1313

1414
func TestNew(t *testing.T) {

Diff for: colornames/colornames.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
package colornames
77

88
import (
9-
"github.com/jacekolszak/pixiq/image"
9+
"github.com/elgopher/pixiq/image"
1010
)
1111

1212
var (

Diff for: colornames/colornames_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55

66
"github.com/stretchr/testify/assert"
77

8-
"github.com/jacekolszak/pixiq/image"
8+
"github.com/elgopher/pixiq/image"
99
)
1010

1111
func Test(t *testing.T) {

Diff for: decoder/decoder.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
_ "image/png" // Register PNG decoder
99
"os"
1010

11-
"github.com/jacekolszak/pixiq/image"
11+
"github.com/elgopher/pixiq/image"
1212
)
1313

1414
// ImageFactory creates a new image with given dimensions.

Diff for: decoder/decoder_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import (
1212
"github.com/stretchr/testify/assert"
1313
"github.com/stretchr/testify/require"
1414

15-
"github.com/jacekolszak/pixiq/colornames"
16-
"github.com/jacekolszak/pixiq/decoder"
17-
"github.com/jacekolszak/pixiq/image"
18-
"github.com/jacekolszak/pixiq/image/fake"
15+
"github.com/elgopher/pixiq/colornames"
16+
"github.com/elgopher/pixiq/decoder"
17+
"github.com/elgopher/pixiq/image"
18+
"github.com/elgopher/pixiq/image/fake"
1919
)
2020

2121
func TestNew(t *testing.T) {

Diff for: docs/architecture.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Why there is no abstraction for opening windows?
4646

4747
> Because it is really hard to design such abstraction. There are way too many
4848
platforms varying in possibilities (PCs, Macs, mobile devices etc.). But we are
49-
open for [proposals](https://github.com/jacekolszak/pixiq/issues). There is
49+
open for [proposals](https://github.com/elgopher/pixiq/issues). There is
5050
a chance that it will be feasible to create such abstraction just for PCs
5151
(Win, Mac and Linux).
5252

@@ -57,8 +57,8 @@ for example it does not allow to change the look of the cursor or to set
5757
the window transparency. Why?
5858

5959
> Because we haven't had time to do it yet. If something is really important
60-
for you then propably it is time to submit an [Issue](https://github.com/jacekolszak/pixiq/issues)
61-
or maybe even make a change by submitting a [Pull Request](https://github.com/jacekolszak/pixiq/pulls).
60+
for you then propably it is time to submit an [Issue](https://github.com/elgopher/pixiq/issues)
61+
or maybe even make a change by submitting a [Pull Request](https://github.com/elgopher/pixiq/pulls).
6262
The `glfw.OpenGL` struct does not need to implement any abstractions
6363
for opening windows, therefore it may be extended freely.
6464

Diff for: docs/testing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010

1111
* unfortunetly it is not possible to have only automated tests.
1212
* some tests require manual work.
13-
* before merging each PR it should be tested manually using all [examples](https://github.com/jacekolszak/pixiq/tree/master/examples)
13+
* before merging each PR it should be tested manually using all [examples](https://github.com/elgopher/pixiq/tree/master/examples)

Diff for: examples/blend/main.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package main
22

33
import (
4-
"github.com/jacekolszak/pixiq/blend"
5-
"github.com/jacekolszak/pixiq/clear"
6-
"github.com/jacekolszak/pixiq/colornames"
7-
"github.com/jacekolszak/pixiq/glblend"
8-
"github.com/jacekolszak/pixiq/glfw"
9-
"github.com/jacekolszak/pixiq/image"
4+
"github.com/elgopher/pixiq/blend"
5+
"github.com/elgopher/pixiq/clear"
6+
"github.com/elgopher/pixiq/colornames"
7+
"github.com/elgopher/pixiq/glblend"
8+
"github.com/elgopher/pixiq/glfw"
9+
"github.com/elgopher/pixiq/image"
1010
)
1111

1212
func main() {

Diff for: examples/clear/main.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
package main
22

33
import (
4-
"github.com/jacekolszak/pixiq/clear"
5-
"github.com/jacekolszak/pixiq/colornames"
6-
"github.com/jacekolszak/pixiq/glclear"
7-
"github.com/jacekolszak/pixiq/glfw"
8-
"github.com/jacekolszak/pixiq/image"
9-
"github.com/jacekolszak/pixiq/keyboard"
4+
"github.com/elgopher/pixiq/clear"
5+
"github.com/elgopher/pixiq/colornames"
6+
"github.com/elgopher/pixiq/glclear"
7+
"github.com/elgopher/pixiq/glfw"
8+
"github.com/elgopher/pixiq/image"
9+
"github.com/elgopher/pixiq/keyboard"
1010
)
1111

1212
type clearTool interface {

Diff for: examples/cursor/main.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package main
33
import (
44
"log"
55

6-
"github.com/jacekolszak/pixiq/colornames"
7-
"github.com/jacekolszak/pixiq/glfw"
8-
"github.com/jacekolszak/pixiq/image"
9-
"github.com/jacekolszak/pixiq/mouse"
6+
"github.com/elgopher/pixiq/colornames"
7+
"github.com/elgopher/pixiq/glfw"
8+
"github.com/elgopher/pixiq/image"
9+
"github.com/elgopher/pixiq/mouse"
1010
)
1111

1212
func main() {

Diff for: examples/decoder/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package main
22

33
import (
4-
"github.com/jacekolszak/pixiq/blend"
5-
"github.com/jacekolszak/pixiq/decoder"
6-
"github.com/jacekolszak/pixiq/glfw"
4+
"github.com/elgopher/pixiq/blend"
5+
"github.com/elgopher/pixiq/decoder"
6+
"github.com/elgopher/pixiq/glfw"
77
)
88

99
func main() {

Diff for: examples/goimage/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package main
33
import (
44
"image"
55

6-
"github.com/jacekolszak/pixiq/glfw"
7-
"github.com/jacekolszak/pixiq/goimage"
6+
"github.com/elgopher/pixiq/glfw"
7+
"github.com/elgopher/pixiq/goimage"
88
)
99

1010
func main() {

Diff for: examples/hello-world/main.go

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

33
import (
4-
"github.com/jacekolszak/pixiq/colornames"
5-
"github.com/jacekolszak/pixiq/glfw"
4+
"github.com/elgopher/pixiq/colornames"
5+
"github.com/elgopher/pixiq/glfw"
66
)
77

88
func main() {

Diff for: examples/image/lines/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package main
33
import (
44
"log"
55

6-
"github.com/jacekolszak/pixiq/glfw"
7-
"github.com/jacekolszak/pixiq/image"
6+
"github.com/elgopher/pixiq/glfw"
7+
"github.com/elgopher/pixiq/image"
88
)
99

1010
// This example shows how to set all pixels using Lines

Diff for: examples/image/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"fmt"
55
"log"
66

7-
"github.com/jacekolszak/pixiq/colornames"
8-
"github.com/jacekolszak/pixiq/glfw"
7+
"github.com/elgopher/pixiq/colornames"
8+
"github.com/elgopher/pixiq/glfw"
99
)
1010

1111
// This program shows how to create an Image and manipulate its pixels.

Diff for: examples/image/modify/opengl/draw/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"log"
55
"time"
66

7-
"github.com/jacekolszak/pixiq/gl"
8-
"github.com/jacekolszak/pixiq/glfw"
9-
"github.com/jacekolszak/pixiq/image"
7+
"github.com/elgopher/pixiq/gl"
8+
"github.com/elgopher/pixiq/glfw"
9+
"github.com/elgopher/pixiq/image"
1010
)
1111

1212
func main() {

Diff for: examples/image/modify/opengl/selection/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package main
33
import (
44
"log"
55

6-
"github.com/jacekolszak/pixiq/gl"
7-
"github.com/jacekolszak/pixiq/glfw"
8-
"github.com/jacekolszak/pixiq/image"
6+
"github.com/elgopher/pixiq/gl"
7+
"github.com/elgopher/pixiq/glfw"
8+
"github.com/elgopher/pixiq/image"
99
)
1010

1111
func main() {

Diff for: examples/keyboard/justpressed/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package main
33
import (
44
"log"
55

6-
"github.com/jacekolszak/pixiq/colornames"
7-
"github.com/jacekolszak/pixiq/glfw"
8-
"github.com/jacekolszak/pixiq/keyboard"
6+
"github.com/elgopher/pixiq/colornames"
7+
"github.com/elgopher/pixiq/glfw"
8+
"github.com/elgopher/pixiq/keyboard"
99
)
1010

1111
func main() {

Diff for: examples/keyboard/pressed/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package main
33
import (
44
"log"
55

6-
"github.com/jacekolszak/pixiq/colornames"
7-
"github.com/jacekolszak/pixiq/glfw"
8-
"github.com/jacekolszak/pixiq/keyboard"
6+
"github.com/elgopher/pixiq/colornames"
7+
"github.com/elgopher/pixiq/glfw"
8+
"github.com/elgopher/pixiq/keyboard"
99
)
1010

1111
func main() {

Diff for: examples/keyboard/pressedkeys/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"fmt"
55
"log"
66

7-
"github.com/jacekolszak/pixiq/glfw"
8-
"github.com/jacekolszak/pixiq/keyboard"
7+
"github.com/elgopher/pixiq/glfw"
8+
"github.com/elgopher/pixiq/keyboard"
99
)
1010

1111
func main() {

Diff for: examples/mouse/position/main.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package main
33
import (
44
"log"
55

6-
"github.com/jacekolszak/pixiq/clear"
7-
"github.com/jacekolszak/pixiq/colornames"
8-
"github.com/jacekolszak/pixiq/glfw"
9-
"github.com/jacekolszak/pixiq/image"
10-
"github.com/jacekolszak/pixiq/mouse"
6+
"github.com/elgopher/pixiq/clear"
7+
"github.com/elgopher/pixiq/colornames"
8+
"github.com/elgopher/pixiq/glfw"
9+
"github.com/elgopher/pixiq/image"
10+
"github.com/elgopher/pixiq/mouse"
1111
)
1212

1313
func main() {

Diff for: examples/mouse/pressed/main.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package main
33
import (
44
"log"
55

6-
"github.com/jacekolszak/pixiq/colornames"
7-
"github.com/jacekolszak/pixiq/glfw"
8-
"github.com/jacekolszak/pixiq/image"
9-
"github.com/jacekolszak/pixiq/mouse"
6+
"github.com/elgopher/pixiq/colornames"
7+
"github.com/elgopher/pixiq/glfw"
8+
"github.com/elgopher/pixiq/image"
9+
"github.com/elgopher/pixiq/mouse"
1010
)
1111

1212
func main() {

Diff for: examples/mouse/scroll/main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package main
33
import (
44
"log"
55

6-
"github.com/jacekolszak/pixiq/colornames"
7-
"github.com/jacekolszak/pixiq/glfw"
8-
"github.com/jacekolszak/pixiq/mouse"
6+
"github.com/elgopher/pixiq/colornames"
7+
"github.com/elgopher/pixiq/glfw"
8+
"github.com/elgopher/pixiq/mouse"
99
)
1010

1111
func main() {

0 commit comments

Comments
 (0)