Skip to content

Commit 7c066e9

Browse files
authored
chore: lowercase GitHub organisation name (#507)
1 parent 8e1ad9c commit 7c066e9

36 files changed

+317
-317
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ jobs:
116116
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 #v3.0.0
117117
with:
118118
token: ${{ secrets.REPO_ACCESS_TOKEN }}
119-
repository: TibiaData/tibiadata-argocd-app-of-apps
119+
repository: tibiadata/tibiadata-argocd-app-of-apps
120120
event-type: bump-tibiadata-api-go-image-sha
121121
client-payload: '{"docker_digest": "${{ needs.build.outputs.docker_build_digest }}", "subdomain": "${{ steps.determine_deployment.outputs.subdomain }}"}'
122122

@@ -131,6 +131,6 @@ jobs:
131131
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 #v3.0.0
132132
with:
133133
token: ${{ secrets.REPO_ACCESS_TOKEN }}
134-
repository: TibiaData/tibiadata-helm-charts
134+
repository: tibiadata/tibiadata-helm-charts
135135
event-type: bump-helm-chart-release
136136
client-payload: '{"chart_name": "${{ github.event.repository.name }}", "release_version": "${{ needs.build.outputs.docker_meta_version }}"}'

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ jobs:
4444
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0 #v3.0.0
4545
with:
4646
token: ${{ secrets.REPO_ACCESS_TOKEN }}
47-
repository: TibiaData/tibiadata-api-docs
47+
repository: tibiadata/tibiadata-api-docs
4848
event-type: tibiadata-api-docs-release-update
4949
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "tag_name": "${{ github.event.release.tag_name }}"}'

CHANGELOG.md

Lines changed: 266 additions & 266 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ Search for the chart
6262
helm repo search tibiadata
6363
```
6464

65-
The charts-repository is located in [tibiadata-helm-charts](https://github.com/TibiaData/tibiadata-helm-charts).
65+
The charts-repository is located in [tibiadata-helm-charts](https://github.com/tibiadata/tibiadata-helm-charts).
6666

6767
### Docker
6868

69-
Our images are available on both [GitHub Container Registry](https://github.com/TibiaData/tibiadata-api-go/pkgs/container/tibiadata-api-go) and [Docker Hub](https://hub.docker.com/r/tibiadata/tibiadata-api-go).
69+
Our images are available on both [GitHub Container Registry](https://github.com/tibiadata/tibiadata-api-go/pkgs/container/tibiadata-api-go) and [Docker Hub](https://hub.docker.com/r/tibiadata/tibiadata-api-go).
7070

71-
This is how to pull and run the _latest_ release of TibiaData from [GHCR](https://github.com/TibiaData/tibiadata-api-go/pkgs/container/tibiadata-api-go):
71+
This is how to pull and run the _latest_ release of TibiaData from [GHCR](https://github.com/tibiadata/tibiadata-api-go/pkgs/container/tibiadata-api-go):
7272

7373
```console
7474
docker pull ghcr.io/tibiadata/tibiadata-api-go:latest
@@ -124,7 +124,7 @@ We do so at least by using [Kong](https://github.com/Kong/kong) API Gateway, whi
124124

125125
The hosted API documentation for our [api.tibiadata.com](https://api.tibiadata.com) service can be viewd at [docs.tibiadata.com](https://docs.tibiadata.com).
126126

127-
There is a swagger-generated documentation available for download on the [GitHub Release](https://github.com/TibiaData/tibiadata-api-go/releases) of the version you are looking for.
127+
There is a swagger-generated documentation available for download on the [GitHub Release](https://github.com/tibiadata/tibiadata-api-go/releases) of the version you are looking for.
128128

129129
### Available endpoints
130130

@@ -174,5 +174,5 @@ Tibia is a registered trademark of [CipSoft GmbH](https://www.cipsoft.com/en/).
174174

175175
## Credits
176176

177-
- Authors: [Tobias Lindberg](https://github.com/tobiasehlert)[List of contributors](https://github.com/TibiaData/tibiadata-api-go/graphs/contributors)
177+
- Authors: [Tobias Lindberg](https://github.com/tobiasehlert)[List of contributors](https://github.com/tibiadata/tibiadata-api-go/graphs/contributors)
178178
- Distributed under [MIT License](LICENSE)

go.mod

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
module github.com/TibiaData/tibiadata-api-go
1+
module github.com/tibiadata/tibiadata-api-go
22

33
go 1.25.0
44

5-
replace github.com/TibiaData/tibiadata-api-go/src/tibiamapping => ./src/tibiamapping
5+
replace github.com/tibiadata/tibiadata-api-go/src/tibiamapping => ./src/tibiamapping
66

7-
replace github.com/TibiaData/tibiadata-api-go/src/static => ./src/static
7+
replace github.com/tibiadata/tibiadata-api-go/src/static => ./src/static
88

9-
replace github.com/TibiaData/tibiadata-api-go/src/validation => ./src/validation
9+
replace github.com/tibiadata/tibiadata-api-go/src/validation => ./src/validation
1010

1111
require (
1212
github.com/PuerkitoBio/goquery v1.10.3
13-
github.com/TibiaData/tibiadata-api-go/src/static v0.0.0-20250818132205-2b0f4da1df36
14-
github.com/TibiaData/tibiadata-api-go/src/validation v0.0.0-20250811185450-4b0728b940bf
13+
github.com/tibiadata/tibiadata-api-go/src/static v0.0.0-20250818132205-2b0f4da1df36
14+
github.com/tibiadata/tibiadata-api-go/src/validation v0.0.0-20250811185450-4b0728b940bf
1515
github.com/gin-contrib/gzip v1.2.3
1616
github.com/gin-gonic/gin v1.10.1
1717
github.com/go-resty/resty/v2 v2.16.5
@@ -21,7 +21,7 @@ require (
2121
)
2222

2323
require (
24-
github.com/TibiaData/tibiadata-api-go/src/tibiamapping v0.0.0-20250818132205-2b0f4da1df36 // indirect
24+
github.com/tibiadata/tibiadata-api-go/src/tibiamapping v0.0.0-20250818132205-2b0f4da1df36 // indirect
2525
github.com/andybalholm/cascadia v1.3.3 // indirect
2626
github.com/bytedance/sonic v1.14.0 // indirect
2727
github.com/bytedance/sonic/loader v0.3.0 // indirect

src/TibiaBoostableBossesOverview.go

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

8-
"github.com/TibiaData/tibiadata-api-go/src/validation"
8+
"github.com/tibiadata/tibiadata-api-go/src/validation"
99
)
1010

1111
// Child of BoostableBoss (used for list of boostable bosses and boosted boss section)

src/TibiaBoostableBossesOverview_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"io"
55
"testing"
66

7-
"github.com/TibiaData/tibiadata-api-go/src/static"
87
"github.com/stretchr/testify/assert"
8+
"github.com/tibiadata/tibiadata-api-go/src/static"
99
)
1010

1111
func TestBoostableBossesOverview(t *testing.T) {

src/TibiaCharactersCharacter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"unicode/utf8"
1212

1313
"github.com/PuerkitoBio/goquery"
14-
"github.com/TibiaData/tibiadata-api-go/src/validation"
14+
"github.com/tibiadata/tibiadata-api-go/src/validation"
1515
//"time"
1616
)
1717

src/TibiaCharactersCharacter_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"reflect"
99
"testing"
1010

11-
"github.com/TibiaData/tibiadata-api-go/src/static"
12-
"github.com/TibiaData/tibiadata-api-go/src/validation"
1311
"github.com/gin-gonic/gin"
1412
"github.com/stretchr/testify/assert"
13+
"github.com/tibiadata/tibiadata-api-go/src/static"
14+
"github.com/tibiadata/tibiadata-api-go/src/validation"
1515
)
1616

1717
func TestNumber1(t *testing.T) {

src/TibiaCreaturesCreature.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"strings"
99

1010
"github.com/PuerkitoBio/goquery"
11-
"github.com/TibiaData/tibiadata-api-go/src/validation"
11+
"github.com/tibiadata/tibiadata-api-go/src/validation"
1212
)
1313

1414
// Child of JSONData

0 commit comments

Comments
 (0)