Skip to content

Commit

Permalink
clean up a few more outdated references
Browse files Browse the repository at this point in the history
  • Loading branch information
leafo committed Dec 3, 2024
1 parent a48b6ef commit cb37393
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 8 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# butler

[![Build Status](https://git.itch.ovh/itchio/butler/badges/master/build.svg)](https://git.itch.ovh/itchio/butler/builds)
[![codecov](https://codecov.io/gh/itchio/butler/branch/master/graph/badge.svg)](https://codecov.io/gh/itchio/butler)
[![Go Report Card](https://goreportcard.com/badge/github.com/itchio/butler)](https://goreportcard.com/report/github.com/itchio/butler)
![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)
Expand Down
2 changes: 1 addition & 1 deletion butlerd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ using butler for long-running tasks (called operations) or one-off requests.

### Documentation

Comprehensive documentation is available at <http://docs.itch.ovh/butlerd/master/>
Comprehensive documentation is available at <http://docs.itch.zone/butlerd/master/>

2 changes: 1 addition & 1 deletion butlerd/generous/tscodegen.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func (gc *generousContext) generateTsCode(outPath string) error {

doc.line("")
doc.line("// These bindings were generated by generous")
doc.line("// See <https://docs.itch.ovh/butlerd/master/> for a human-friendly documentation")
doc.line("// See <https://docs.itch.zone/butlerd/master/> for a human-friendly documentation")

doc.line("")
doc.line("import { createRequest, createNotification } from %#v;", gc.SupportPath)
Expand Down
2 changes: 1 addition & 1 deletion cmd/daemon/daemon.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func Register(ctx *mansion.Context) {

func do(ctx *mansion.Context) {
if !comm.JsonEnabled() {
comm.Notice("Hello from butler daemon", []string{"We can't do anything interesting without --json, bailing out", "", "Learn more: https://docs.itch.ovh/butlerd/master/"})
comm.Notice("Hello from butler daemon", []string{"We can't do anything interesting without --json, bailing out", "", "Learn more: https://docs.itch.zone/butlerd/master/"})
os.Exit(1)
}

Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ It is also a good showcase of the *Wharf open specification*, using only
openly documented algorithms and file formats, encouraging the development
of compatible tools:

* <https://docs.itch.ovh/wharf>
* <https://docs.itch.zone/wharf>

And is used by [the itch app](https://itch.io/app) for various operations.

Expand Down
4 changes: 2 additions & 2 deletions docs/pushing.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ These are two extreme cases — most of the time, you'll be somewhere in the mid
with maybe 5% to 20% fresh data in a push, saving 80% to 95% (more with compression)
of your data/time/internet bandwidth.

*Note: the first push is a `patch` too (from [the empty container](https://docs.itch.ovh/wharf/master/terminology.html) to the first version
*Note: the first push is a `patch` too (from [the empty container](https://docs.itch.zone/wharf/master/terminology.html) to the first version
of your game). It has savings as well, because butler uploads compressed data: you could be pushing a 300MB build but only sending 120MB over the network.*

Pushing to a new channel will make a corresponding file appear on your game's page:
Expand Down Expand Up @@ -155,7 +155,7 @@ the error 'invalid game', to avoid potentially leaking information about unrelea
* Signature of the previous build (if any) is downloaded
* Files from the local directory/archive are scanned
* Differences between the local (newer) & remote (older) build are
* computed (by comparing hashes, see the [Wharf specification](https://docs.itch.ovh/wharf/))
* computed (by comparing hashes, see the [Wharf specification](https://docs.itch.zone/wharf/))
* ...and compressed (with a fast preset)
* ...and uploaded to [itch.io](https://itch.io)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@itchio/butler",
"version": "1.0.0",
"description": "[![Build Status](https://git.itch.ovh/itchio/butler/badges/master/build.svg)](https://git.itch.ovh/itchio/butler/builds) [![codecov](https://codecov.io/gh/itchio/butler/branch/master/graph/badge.svg)](https://codecov.io/gh/itchio/butler) [![Go Report Card](https://goreportcard.com/badge/github.com/itchio/butler)](https://goreportcard.com/report/github.com/itchio/butler) ![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)",
"description": "The itch.io command line tool",
"main": "index.js",
"directories": {
"doc": "docs"
Expand Down

0 comments on commit cb37393

Please sign in to comment.