Skip to content

Commit b65f0ff

Browse files
committed
Fixing repo naming
1 parent a14d7cd commit b65f0ff

File tree

495 files changed

+1348
-1348
lines changed

Some content is hidden

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

495 files changed

+1348
-1348
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Introduction
55

66
[Go](https://en.wikipedia.org/wiki/Go_(programming_language)), also known as Golang, is a programming language designed at Google.
77

8-
[therecipe/qt](https://github.com/therecipe/qt) allows you to write Qt applications entirely in Go or JavaScript.
8+
[therecipe/qt](https://github.com/StarAurryon/qt) allows you to write Qt applications entirely in Go or JavaScript.
99

1010
Beside the language bindings provided, `therecipe/qt` also greatly simplifies the deployment of Qt applications to various software and hardware platforms.
1111

@@ -14,7 +14,7 @@ At the time of writing, almost all Qt functions and classes are accessible from
1414
Impressions
1515
-----------
1616

17-
[Gallery](https://github.com/therecipe/qt/wiki/Gallery) of example applications.
17+
[Gallery](https://github.com/StarAurryon/qt/wiki/Gallery) of example applications.
1818

1919
[JavaScript Demo](https://therecipe.github.io/entry) | *[source](https://github.com/therecipe/entry)*
2020

@@ -23,20 +23,20 @@ Installation
2323

2424
The following instructions assume that you already installed [Go](https://golang.org/dl/) and [Git](https://git-scm.com/downloads)
2525

26-
##### Windows [(more info)](https://github.com/therecipe/qt/wiki/Installation-on-Windows)
26+
##### Windows [(more info)](https://github.com/StarAurryon/qt/wiki/Installation-on-Windows)
2727

2828
```powershell
2929
set GO111MODULE=off
3030
go get -v github.com/StarAurryon/qt/cmd/... && for /f %v in ('go env GOPATH') do %v\bin\qtsetup test && %v\bin\qtsetup -test=false
3131
```
3232

33-
##### macOS [(more info)](https://github.com/therecipe/qt/wiki/Installation-on-macOS)
33+
##### macOS [(more info)](https://github.com/StarAurryon/qt/wiki/Installation-on-macOS)
3434

3535
```bash
36-
export GO111MODULE=off; xcode-select --install; go get -v github.com/therecipe/qt/cmd/... && $(go env GOPATH)/bin/qtsetup test && $(go env GOPATH)/bin/qtsetup -test=false
36+
export GO111MODULE=off; xcode-select --install; go get -v github.com/StarAurryon/qt/cmd/... && $(go env GOPATH)/bin/qtsetup test && $(go env GOPATH)/bin/qtsetup -test=false
3737
```
3838

39-
##### Linux [(more info)](https://github.com/therecipe/qt/wiki/Installation-on-Linux)
39+
##### Linux [(more info)](https://github.com/StarAurryon/qt/wiki/Installation-on-Linux)
4040

4141
```bash
4242
export GO111MODULE=off; go get -v github.com/StarAurryon/qt/cmd/... && $(go env GOPATH)/bin/qtsetup test && $(go env GOPATH)/bin/qtsetup -test=false
@@ -45,11 +45,11 @@ export GO111MODULE=off; go get -v github.com/StarAurryon/qt/cmd/... && $(go env
4545
Resources
4646
---------
4747

48-
- [Installation](https://github.com/therecipe/qt/wiki/Installation)
49-
- [Getting Started](https://github.com/therecipe/qt/wiki/Getting-Started)
50-
- [Wiki](https://github.com/therecipe/qt/wiki)
48+
- [Installation](https://github.com/StarAurryon/qt/wiki/Installation)
49+
- [Getting Started](https://github.com/StarAurryon/qt/wiki/Getting-Started)
50+
- [Wiki](https://github.com/StarAurryon/qt/wiki)
5151
- [Qt Documentation](https://doc.qt.io/qt-5/classes.html)
52-
- [FAQ](https://github.com/therecipe/qt/wiki/FAQ)
52+
- [FAQ](https://github.com/StarAurryon/qt/wiki/FAQ)
5353
- [#qt-binding](https://gophers.slack.com/messages/qt-binding/details) Slack channel ([invite](https://invite.slack.golangbridge.org)\)
5454

5555
Deployment Targets

androidextras/androidextras.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package androidextras
44

55
import (
6-
"github.com/therecipe/qt"
7-
"github.com/therecipe/qt/core"
6+
"github.com/StarAurryon/qt"
7+
"github.com/StarAurryon/qt/core"
88
"strings"
99
"unsafe"
1010
)

androidextras/androidextras_android.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ package androidextras
99
import "C"
1010
import (
1111
"errors"
12-
"github.com/therecipe/qt"
13-
"github.com/therecipe/qt/core"
12+
"github.com/StarAurryon/qt"
13+
"github.com/StarAurryon/qt/core"
1414
"strings"
1515
"unsafe"
1616
)

androidextras/utils-androidextras_android.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
"unsafe"
77

8-
"github.com/therecipe/qt"
8+
"github.com/StarAurryon/qt"
99
)
1010

1111
func assertion(key int, input ...interface{}) (unsafe.Pointer, func()) {

bluetooth/bluetooth.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ package bluetooth
88
//#include "bluetooth.h"
99
import "C"
1010
import (
11-
"github.com/therecipe/qt"
12-
"github.com/therecipe/qt/core"
13-
"github.com/therecipe/qt/network"
11+
"github.com/StarAurryon/qt"
12+
"github.com/StarAurryon/qt/core"
13+
"github.com/StarAurryon/qt/network"
1414
"reflect"
1515
"strings"
1616
"unsafe"

charts/charts.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ package charts
88
//#include "charts.h"
99
import "C"
1010
import (
11-
"github.com/therecipe/qt"
12-
"github.com/therecipe/qt/core"
13-
"github.com/therecipe/qt/gui"
14-
"github.com/therecipe/qt/widgets"
11+
"github.com/StarAurryon/qt"
12+
"github.com/StarAurryon/qt/core"
13+
"github.com/StarAurryon/qt/gui"
14+
"github.com/StarAurryon/qt/widgets"
1515
"strings"
1616
"unsafe"
1717
)

cmd/qtdeploy/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ import (
99
"runtime"
1010
"strings"
1111

12-
"github.com/therecipe/qt/internal/cmd"
13-
"github.com/therecipe/qt/internal/cmd/deploy"
12+
"github.com/StarAurryon/qt/internal/cmd"
13+
"github.com/StarAurryon/qt/internal/cmd/deploy"
1414

15-
"github.com/therecipe/qt/internal/utils"
15+
"github.com/StarAurryon/qt/internal/utils"
1616
)
1717

1818
func main() {

cmd/qtminimal/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"runtime"
99
"strings"
1010

11-
"github.com/therecipe/qt/internal/cmd"
12-
"github.com/therecipe/qt/internal/cmd/minimal"
11+
"github.com/StarAurryon/qt/internal/cmd"
12+
"github.com/StarAurryon/qt/internal/cmd/minimal"
1313

14-
"github.com/therecipe/qt/internal/utils"
14+
"github.com/StarAurryon/qt/internal/utils"
1515
)
1616

1717
func main() {

cmd/qtmoc/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"runtime"
99
"strings"
1010

11-
"github.com/therecipe/qt/internal/cmd"
12-
"github.com/therecipe/qt/internal/cmd/moc"
11+
"github.com/StarAurryon/qt/internal/cmd"
12+
"github.com/StarAurryon/qt/internal/cmd/moc"
1313

14-
"github.com/therecipe/qt/internal/utils"
14+
"github.com/StarAurryon/qt/internal/utils"
1515
)
1616

1717
func main() {

cmd/qtrcc/main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"runtime"
99
"strings"
1010

11-
"github.com/therecipe/qt/internal/cmd"
12-
"github.com/therecipe/qt/internal/cmd/rcc"
11+
"github.com/StarAurryon/qt/internal/cmd"
12+
"github.com/StarAurryon/qt/internal/cmd/rcc"
1313

14-
"github.com/therecipe/qt/internal/utils"
14+
"github.com/StarAurryon/qt/internal/utils"
1515
)
1616

1717
func main() {

0 commit comments

Comments
 (0)