Skip to content

Commit

Permalink
unify package names
Browse files Browse the repository at this point in the history
  • Loading branch information
halamix2 committed Oct 3, 2023
1 parent dc6929f commit bfcf430
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .deepsource.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "go"
enabled = true

[analyzers.meta]
import_root = "github.com/StuntKit/stunt_gp_formats"
import_root = "github.com/stuntkit/stunt_gp_tools"

[[analyzers]]
name = "test-coverage"
Expand Down
2 changes: 1 addition & 1 deletion cmd/dir_pack/dir_pack.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"path/filepath"
"strings"

"github.com/halamix2/stunt_gp_tools/pkg/dir"
"github.com/spf13/pflag"
"github.com/stuntkit/stunt_gp_tools/pkg/dir"
)

// flags
Expand Down
2 changes: 1 addition & 1 deletion cmd/dir_unpack/dir_unpack.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"path/filepath"
"strings"

"github.com/halamix2/stunt_gp_tools/pkg/dir"
"github.com/spf13/pflag"
"github.com/stuntkit/stunt_gp_tools/pkg/dir"
)

// flags
Expand Down
2 changes: 1 addition & 1 deletion cmd/pc_pack/pc_pack.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
"path/filepath"
"strings"

"github.com/halamix2/stunt_gp_tools/pkg/texture"
"github.com/spf13/pflag"
"github.com/stuntkit/stunt_gp_tools/pkg/texture"
)

// flags
Expand Down
2 changes: 1 addition & 1 deletion cmd/pc_unpack/pc_unpack.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
"path/filepath"
"strings"

"github.com/halamix2/stunt_gp_tools/pkg/texture"
"github.com/spf13/pflag"
"github.com/stuntkit/stunt_gp_tools/pkg/texture"
)

// flags
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/halamix2/stunt_gp_tools
module github.com/stuntkit/stunt_gp_tools

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion python/speedrun/fast_route.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def main():
print(r" 20 06 02 ")
print()
print(
"See https://github.com/Halamix2/stunt_gp_formats/wiki/Tracks"
"See https://github.com/stuntkit/stunt_gp_tools/wiki/Tracks"
" to see what track names corresponds to each ID"
)

Expand Down
12 changes: 7 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Stunt GP tools
==
# Stunt GP tools

[![a](https://discord.com/api/guilds/749260704447463495/widget.png?style=shield)](https://discord.gg/ykzAWnA)

[![DeepSource](https://deepsource.io/gh/stuntkit/stunt_gp_formats.svg/?label=active+issues&token=xrA_xeEtEOj9PK-TMnSL4ZBU)](https://deepsource.io/gh/stuntkit/stunt_gp_formats/?ref=repository-badge)
[![DeepSource](https://deepsource.io/gh/stuntkit/stunt_gp_tools.svg/?label=active+issues&token=xrA_xeEtEOj9PK-TMnSL4ZBU)](https://deepsource.io/gh/stuntkit/stunt_gp_tools/?ref=repository-badge)

These tools will help you understand, unpack and edit Stunt GP files

Expand All @@ -11,13 +11,16 @@ Original thread: [https://forum.xentax.com/viewtopic.php?f=16&t=16944&p=160266#p
Check out [the wiki](https://sgp.halamix2.pl) for more information about the game and its file formats.

## Compilation:

```
go build cmd/pc_pack/pc_pack.go
go build cmd/pc_unpack/pc_unpack.go
```
Or grab compiled .exe [here](https://github.com/StuntKit/stunt_gp_formats/releases)

Or grab compiled .exe [here](https://github.com/stuntkit/stunt_gp_tools/releases)

## Usage:

You can also drag and drop multiple files on `pc_pack` or `pc_unpack`

```bash
Expand All @@ -34,4 +37,3 @@ You can also drag and drop multiple files on `pc_pack` or `pc_unpack`

./pc_unpack mini.pc -o output.png
```

0 comments on commit bfcf430

Please sign in to comment.