diff options
| author | Christian Cleberg <[email protected]> | 2026-08-02 01:51:22 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-08-02 08:30:01 -0500 |
| commit | 4178e3893f310425e76f6d4515af9e7d0ea36a0a (patch) | |
| tree | 0c5e576120e5f9554dd0a3dc3563f5f6a094c823 | |
| parent | 4dd5fd4f747c95cb258ab9a634d48f3eb8f19491 (diff) | |
| download | skunky-art-4178e3893f310425e76f6d4515af9e7d0ea36a0a.tar.gz skunky-art-4178e3893f310425e76f6d4515af9e7d0ea36a0a.tar.bz2 skunky-art-4178e3893f310425e76f6d4515af9e7d0ea36a0a.zip | |
update org name
| -rwxr-xr-x | INSTANCES.md | 4 | ||||
| -rwxr-xr-x | README.md | 2 | ||||
| -rwxr-xr-x | app/api.go | 2 | ||||
| -rwxr-xr-x | app/cli.go | 4 | ||||
| -rwxr-xr-x | app/config.go | 2 | ||||
| -rwxr-xr-x | app/parsers.go | 2 | ||||
| -rwxr-xr-x | app/util.go | 4 | ||||
| -rwxr-xr-x | app/wrapper.go | 2 | ||||
| -rwxr-xr-x | compose.example.yaml | 2 | ||||
| -rw-r--r-- | compose.vpn_example.yml | 2 | ||||
| -rw-r--r-- | go.mod | 2 | ||||
| -rw-r--r-- | go.sum | 4 | ||||
| -rwxr-xr-x | instances.json | 4 | ||||
| -rwxr-xr-x | main.go | 2 | ||||
| -rwxr-xr-x | static/html/about.htm | 4 | ||||
| -rwxr-xr-x | static/html/index.htm | 2 |
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 | @@ -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 @@ -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 @@ -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" @@ -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 ) @@ -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, @@ -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> |
