├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── SUMMARY.md ├── algorithms ├── README.md ├── apply.md └── diff.md ├── appendix ├── README.md ├── acknowledgements.md ├── backend-notes.md ├── block-size.md ├── compression.md └── hashes.md ├── book.json ├── design-goals.md ├── file-formats ├── README.md ├── patches.md └── signatures.md ├── package.json ├── scripts └── book.sh └── terminology.md /.gitignore: -------------------------------------------------------------------------------- 1 | _book 2 | node_modules 3 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /algorithms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/algorithms/README.md -------------------------------------------------------------------------------- /algorithms/apply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/algorithms/apply.md -------------------------------------------------------------------------------- /algorithms/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/algorithms/diff.md -------------------------------------------------------------------------------- /appendix/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appendix/acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/appendix/acknowledgements.md -------------------------------------------------------------------------------- /appendix/backend-notes.md: -------------------------------------------------------------------------------- 1 | 2 | # Backend notes 3 | -------------------------------------------------------------------------------- /appendix/block-size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/appendix/block-size.md -------------------------------------------------------------------------------- /appendix/compression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/appendix/compression.md -------------------------------------------------------------------------------- /appendix/hashes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/appendix/hashes.md -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/book.json -------------------------------------------------------------------------------- /design-goals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/design-goals.md -------------------------------------------------------------------------------- /file-formats/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /file-formats/patches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/file-formats/patches.md -------------------------------------------------------------------------------- /file-formats/signatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/file-formats/signatures.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/package.json -------------------------------------------------------------------------------- /scripts/book.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/scripts/book.sh -------------------------------------------------------------------------------- /terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itchio/wharf-spec/HEAD/terminology.md --------------------------------------------------------------------------------