summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xINSTANCES.md4
-rwxr-xr-xREADME.md2
-rwxr-xr-xapp/api.go2
-rwxr-xr-xapp/cli.go4
-rwxr-xr-xapp/config.go2
-rwxr-xr-xapp/parsers.go2
-rwxr-xr-xapp/util.go4
-rwxr-xr-xapp/wrapper.go2
-rwxr-xr-xcompose.example.yaml2
-rw-r--r--compose.vpn_example.yml2
-rw-r--r--go.mod2
-rw-r--r--go.sum4
-rwxr-xr-xinstances.json4
-rwxr-xr-xmain.go2
-rwxr-xr-xstatic/html/about.htm4
-rwxr-xr-xstatic/html/index.htm2
16 files changed, 22 insertions, 22 deletions
diff --git a/INSTANCES.md b/INSTANCES.md
index 964c6fb..b47d1b8 100755
--- a/INSTANCES.md
+++ b/INSTANCES.md
@@ -1,6 +1,6 @@
JSON variant should be used from main:
-[instances.json](https://github.com/zerolabsco/skunky-art/blob/main/instances.json)
+[instances.json](https://github.com/krazywarez/skunky-art/blob/main/instances.json)
|Instance|Yggdrasil|I2P|Tor|NSFW|Proxifying|Modified Sources|Country|
|:------:|:-------:|:-:|:-:|:--:|:--------:|:--------------:|:-----:|
-|[zerolabs.sh](https://art.zerolabs.sh)|No|No|[Yes](http://mplqs2jxkjd5wxak3zjv55oxyadf4vwzx6ksgj4ztftndjl6elgsf4qd.onion)| Yes | Yes | No | United States |
+|[krz.sh](https://art.krz.sh)|No|No|[Yes](http://mplqs2jxkjd5wxak3zjv55oxyadf4vwzx6ksgj4ztftndjl6elgsf4qd.onion)| Yes | Yes | No | United States |
diff --git a/README.md b/README.md
index 4126803..205fe36 100755
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ workflow does from the git tag, add `-X main.version=<version>` to the ldflags.
Prebuilt multi-arch images (`linux/amd64`, `linux/arm64`) are published to GHCR
on every release tag:
-`docker pull ghcr.io/zerolabsco/skunky-art:latest`
+`docker pull ghcr.io/krazywarez/skunky-art:latest`
Each release is tagged `1.3.3`, `1.3`, `1` and `latest`; pin an exact version if
you want reproducible upgrades. `compose.example.yaml` uses this image by
diff --git a/app/api.go b/app/api.go
index 59d045f..5b23668 100755
--- a/app/api.go
+++ b/app/api.go
@@ -6,7 +6,7 @@ import (
"strconv"
"strings"
- "github.com/zerolabsco/devianter"
+ "github.com/krazywarez/devianter"
)
// API serves the JSON endpoints under /api, backed by the request its main
diff --git a/app/cli.go b/app/cli.go
index c4c9f23..f023036 100755
--- a/app/cli.go
+++ b/app/cli.go
@@ -20,7 +20,7 @@ Usage:
- [-h|--help] | returns this message
Example:
./skunkyart -c config.json
-Copyright lost+skunk and zerolabs, X11. https://github.com/zerolabsco/skunky-art/releases/tag/v{{.Version}}`
+Copyright lost+skunk and zerolabs, X11. https://github.com/krazywarez/skunky-art/releases/tag/v{{.Version}}`
a := os.Args[1:]
for n, x := range a {
@@ -175,5 +175,5 @@ func addInstance() {
}
time.Sleep(500 * time.Millisecond)
}
- exit("Done! Now add the files 'instances.json' and 'INSTANCES.md' to the 'main' branch in the repository https://github.com/zerolabsco/skunky-art", 0)
+ exit("Done! Now add the files 'instances.json' and 'INSTANCES.md' to the 'main' branch in the repository https://github.com/krazywarez/skunky-art", 0)
}
diff --git a/app/config.go b/app/config.go
index 74c01f7..2faa69d 100755
--- a/app/config.go
+++ b/app/config.go
@@ -8,7 +8,7 @@ import (
"strconv"
"time"
- "github.com/zerolabsco/devianter"
+ "github.com/krazywarez/devianter"
)
// Release carries the build's version and description, set at link time and
diff --git a/app/parsers.go b/app/parsers.go
index e5fd0d1..68fdbe4 100755
--- a/app/parsers.go
+++ b/app/parsers.go
@@ -5,7 +5,7 @@ import (
"strconv"
"strings"
- "github.com/zerolabsco/devianter"
+ "github.com/krazywarez/devianter"
"golang.org/x/net/html"
)
diff --git a/app/util.go b/app/util.go
index 520dfbd..205ed7a 100755
--- a/app/util.go
+++ b/app/util.go
@@ -14,7 +14,7 @@ import (
"text/template"
"time"
- "github.com/zerolabsco/devianter"
+ "github.com/krazywarez/devianter"
"golang.org/x/net/html"
)
@@ -61,7 +61,7 @@ func RefreshInstances() {
for {
func() {
defer restore()
- instances = Download("https://raw.githubusercontent.com/zerolabsco/skunky-art/main/instances.json").Body
+ instances = Download("https://raw.githubusercontent.com/krazywarez/skunky-art/main/instances.json").Body
try(json.Unmarshal(instances, &About))
}()
time.Sleep(1 * time.Hour)
diff --git a/app/wrapper.go b/app/wrapper.go
index 7465062..3666185 100755
--- a/app/wrapper.go
+++ b/app/wrapper.go
@@ -6,7 +6,7 @@ import (
"strings"
"time"
- "github.com/zerolabsco/devianter"
+ "github.com/krazywarez/devianter"
"golang.org/x/net/html"
)
diff --git a/compose.example.yaml b/compose.example.yaml
index d7c20ea..74e9416 100755
--- a/compose.example.yaml
+++ b/compose.example.yaml
@@ -4,7 +4,7 @@ services:
restart: unless-stopped
# Published multi-arch image (linux/amd64, linux/arm64). Pin a release tag
# (e.g. :1.3.3) instead of :latest if you want reproducible upgrades.
- image: ghcr.io/zerolabsco/skunky-art:latest
+ image: ghcr.io/krazywarez/skunky-art:latest
# To build from this checkout instead, comment out `image:` above and
# uncomment the line below, then `docker compose up -d --build`.
#build: .
diff --git a/compose.vpn_example.yml b/compose.vpn_example.yml
index a89262c..d9522e4 100644
--- a/compose.vpn_example.yml
+++ b/compose.vpn_example.yml
@@ -51,7 +51,7 @@ services:
# Published multi-arch image; pin a release tag (e.g. :1.3.3) for
# reproducible upgrades. To build from this checkout instead, comment out
# `image:` and uncomment `build:`, then `docker compose up -d --build`.
- image: ghcr.io/zerolabsco/skunky-art:latest
+ image: ghcr.io/krazywarez/skunky-art:latest
#build: .
ports:
- "127.0.0.1:3003:3003"
diff --git a/go.mod b/go.mod
index d75ea30..4104eef 100644
--- a/go.mod
+++ b/go.mod
@@ -3,6 +3,6 @@ module skunkyart
go 1.25.0
require (
- github.com/zerolabsco/devianter v0.3.3
+ github.com/krazywarez/devianter v0.3.3
golang.org/x/net v0.57.0
)
diff --git a/go.sum b/go.sum
index 6e6924c..e25a7ef 100644
--- a/go.sum
+++ b/go.sum
@@ -1,4 +1,4 @@
-github.com/zerolabsco/devianter v0.3.3 h1:GEORYqc0H3th05r7pYKGTR7v2muH0eYWrNaKGAIwSQ4=
-github.com/zerolabsco/devianter v0.3.3/go.mod h1:3su99kASJEhNcJpLMO35Si2qDGTZ3bfKLOK/ymitneM=
+github.com/krazywarez/devianter v0.3.3 h1:GEORYqc0H3th05r7pYKGTR7v2muH0eYWrNaKGAIwSQ4=
+github.com/krazywarez/devianter v0.3.3/go.mod h1:3su99kASJEhNcJpLMO35Si2qDGTZ3bfKLOK/ymitneM=
golang.org/x/net v0.57.0 h1:K5+3DljvIuDG9/Jv9rvyMywYNFCQ9RSUY6OOTTkT+tE=
golang.org/x/net v0.57.0/go.mod h1:KpXc8iv+r3XplLAG/f7Jsf9RPszJzdR0f58q9vGOuEU=
diff --git a/instances.json b/instances.json
index 2c44c41..30cf3fc 100755
--- a/instances.json
+++ b/instances.json
@@ -1,11 +1,11 @@
{
"instances": [
{
- "title": "zerolabs.sh",
+ "title": "krz.sh",
"country": "United States",
"urls": {
"tor": "http://mplqs2jxkjd5wxak3zjv55oxyadf4vwzx6ksgj4ztftndjl6elgsf4qd.onion",
- "clearnet": "https://art.zerolabs.sh"
+ "clearnet": "https://art.krz.sh"
},
"settings": {
"proxy": true,
diff --git a/main.go b/main.go
index 0d7f1f8..d913dcf 100755
--- a/main.go
+++ b/main.go
@@ -5,7 +5,7 @@ import (
"skunkyart/static"
"time"
- "github.com/zerolabsco/devianter"
+ "github.com/krazywarez/devianter"
)
// version is the release this binary was built from. The release workflow links
diff --git a/static/html/about.htm b/static/html/about.htm
index c94151b..e582424 100755
--- a/static/html/about.htm
+++ b/static/html/about.htm
@@ -6,7 +6,7 @@
<p>
SkunkyArt is an alternative frontend for deviantart.com, written in Go.
</p>
- <h3><a href="https://github.com/zerolabsco/skunky-art/issues" target="_blank">Report an issue</a></h3>
+ <h3><a href="https://github.com/krazywarez/skunky-art/issues" target="_blank">Report an issue</a></h3>
<b>Instance settings:</b>
<ul>
<li><b>NSFW</b>: <span class="about-{{.Templates.About.Nsfw}}">{{if .Templates.About.Nsfw}}YES{{else}}NO{{end}}</span></li>
@@ -44,6 +44,6 @@
{{end}}
</ul>
</details>
- <p>Copyright <a href="https://git.macaw.me/skunky/SkunkyArt" target="_blank">lost+skunk</a> and <a href="https://github.com/zerolabsco" target="_blank">zerolabs</a>, X11. <a href="https://github.com/zerolabsco/skunky-art/releases/tag/v{{.Version}}" target="_blank">SkunkyArt v{{.Version}}</a></p>
+ <p>Copyright <a href="https://git.macaw.me/skunky/SkunkyArt" target="_blank">lost+skunk</a> and <a href="https://github.com/krazywarez" target="_blank">zerolabs</a>, X11. <a href="https://github.com/krazywarez/skunky-art/releases/tag/v{{.Version}}" target="_blank">SkunkyArt v{{.Version}}</a></p>
</main>
</html>
diff --git a/static/html/index.htm b/static/html/index.htm
index 25879c8..f6a1699 100755
--- a/static/html/index.htm
+++ b/static/html/index.htm
@@ -83,7 +83,7 @@
<button type="submit">Search!</button>
</form>
<h1 style="margin-top: 5%; font-size: 200%; text-align: center;">
- <a href="https://github.com/zerolabsco/skunky-art" target="_blank" title="Source Code">SkunkyArt</a>
+ <a href="https://github.com/krazywarez/skunky-art" target="_blank" title="Source Code">SkunkyArt</a>
</h1>
</div>
</main>