X Tutup
Skip to content

Commit 2437ab3

Browse files
Use all the new small projects previously entrenched deep into butler's codebase
1 parent fc8c27e commit 2437ab3

File tree

242 files changed

+11369
-2327
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

242 files changed

+11369
-2327
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ butler is released under the MIT License. See the [LICENSE](LICENSE) file for de
4444
While butler built from source is fully MIT-licensed, some components it can use at runtime
4545
(if present) have other licenses:
4646

47-
* The 7-zip decompression engine (the `github.com/itchio/butler/archive/szextractor` package) opens
47+
* The 7-zip decompression engine (the `github.com/itchio/boar/szextractor` package) opens
4848
dynamic libraries for [libc7zip][], and [7-zip][], which have components licensed under the LGPL 2.1 license
4949
and the MPL 2.0 license, along with specific terms for the RAR extraction code.
5050

archive/clean_test.go

Lines changed: 0 additions & 80 deletions
This file was deleted.

archive/probe_test.go

Lines changed: 0 additions & 96 deletions
This file was deleted.

archive/proto.zip

-449 Bytes
Binary file not shown.

archive/szextractor/formulas/formulas.go

Lines changed: 0 additions & 8 deletions
This file was deleted.

archive/szextractor/szextractor_test.go

Lines changed: 0 additions & 121 deletions
This file was deleted.

butlerd/generous/docsgen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ func (bc *GenerousContext) GenerateDocs() error {
1515
scope := newScope(bc)
1616
must(scope.Assimilate("github.com/itchio/butler/butlerd", "types.go"))
1717
must(scope.Assimilate("github.com/itchio/go-itchio", "types.go"))
18-
must(scope.Assimilate("github.com/itchio/butler/configurator", "types.go"))
18+
must(scope.Assimilate("github.com/itchio/dash", "types.go"))
1919
must(scope.Assimilate("github.com/itchio/butler/installer/bfs", "receipt.go"))
2020

2121
dumpStruct := func(header string, entry *Entry, showDesc bool) {

butlerd/generous/specgen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func (gc *GenerousContext) GenerateSpec() error {
1818
scope := newScope(gc)
1919
must(scope.Assimilate("github.com/itchio/butler/butlerd", "types.go"))
2020
must(scope.Assimilate("github.com/itchio/go-itchio", "types.go"))
21-
must(scope.Assimilate("github.com/itchio/butler/configurator", "types.go"))
21+
must(scope.Assimilate("github.com/itchio/dash", "types.go"))
2222
must(scope.Assimilate("github.com/itchio/butler/installer/bfs", "receipt.go"))
2323

2424
encodeStruct := func(entry *Entry) []*spec.FieldSpec {

butlerd/generous/tscodegen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func (gc *GenerousContext) GenerateTsCode(outPath string) error {
1919
scope := newScope(gc)
2020
must(scope.Assimilate("github.com/itchio/butler/butlerd", "types.go"))
2121
must(scope.Assimilate("github.com/itchio/go-itchio", "types.go"))
22-
must(scope.Assimilate("github.com/itchio/butler/configurator", "types.go"))
22+
must(scope.Assimilate("github.com/itchio/dash", "types.go"))
2323
must(scope.Assimilate("github.com/itchio/butler/installer/bfs", "receipt.go"))
2424

2525
bindType := func(entry *Entry) {

cmd/auditzip/auditzip.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515

1616
humanize "github.com/dustin/go-humanize"
1717

18-
"github.com/itchio/butler/archive"
18+
"github.com/itchio/boar"
1919
"github.com/itchio/butler/comm"
2020
"github.com/itchio/butler/mansion"
2121
"github.com/itchio/wharf/eos"
@@ -242,7 +242,7 @@ func Do(consumer *state.Consumer, file string, upstream bool) error {
242242
comm.StartProgress()
243243
started = true
244244
}
245-
path := archive.CleanFileName(name)
245+
path := boar.CleanFileName(name)
246246

247247
comm.Progress(float64(index) / float64(numEntries))
248248
comm.ProgressLabel(path)

0 commit comments

Comments
 (0)
X Tutup