├── .github └── workflows │ └── go.yml ├── .gitignore ├── README.md ├── bin └── .gitignore ├── cmd ├── json2xbs.go ├── root.go ├── server.go └── xbs2json.go ├── go.mod ├── hub ├── api │ ├── convert.go │ └── server.go ├── hub.go └── templates │ └── index.tmpl ├── main.go ├── makefile ├── testdata └── 1.1.xbs └── xbstools └── xbstools.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | go.sum 2 | .DS_Store 3 | .vscode/ 4 | cache/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/README.md -------------------------------------------------------------------------------- /bin/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmd/json2xbs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/cmd/json2xbs.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/cmd/server.go -------------------------------------------------------------------------------- /cmd/xbs2json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/cmd/xbs2json.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/go.mod -------------------------------------------------------------------------------- /hub/api/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/hub/api/convert.go -------------------------------------------------------------------------------- /hub/api/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/hub/api/server.go -------------------------------------------------------------------------------- /hub/hub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/hub/hub.go -------------------------------------------------------------------------------- /hub/templates/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/hub/templates/index.tmpl -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/main.go -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/makefile -------------------------------------------------------------------------------- /testdata/1.1.xbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/testdata/1.1.xbs -------------------------------------------------------------------------------- /xbstools/xbstools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ne1llee/xbsrebuild/HEAD/xbstools/xbstools.go --------------------------------------------------------------------------------