diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..78bfdb1 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,25 @@ +name: Deploy Sphinx documentation + +on: + push: + branches: [master] + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install -y python3 python3-pip + pip install -r requirements.txt + - name: Build documentation + working-directory: docs + run: make html + - name: Deploy to GitHub Pages + uses: actions/deploy-pages@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + source: "docs/_build/html" + branch: gh-pages diff --git a/.gitignore b/.gitignore index 0974d9e..562f402 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,6 @@ node_modules _book + +# Sphinx +.venv +_build diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 4d6cc88..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,11 +0,0 @@ - -stages: - - build - -book: - stage: build - tags: - - linux - script: - - npm ci --no-audit - - node release/ci-book.js diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..45f6f78 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "yaml.schemas": { + "https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml", + "https://json.schemastore.org/github-workflow.json": "file:///c%3A/Users/Dennis/Projects/itch-docs/.github/workflows/deploy.yml" + } +} diff --git a/README.md b/README.md index 073dadd..0c219d1 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # The itch book + + This book is a living documentation for [the itch.io app](https://itch.io/app). Its intended audience includes: @@ -13,16 +15,10 @@ Its intended audience includes: If you find a typo, a factual inaccuracy, or an important caveat not covered in this book, feel free to submit a pull request to the [GitHub repository](https://github.com/itchio/itch-docs). + -## Note to developer - -This book is build using the opensource -[Gitbook](https://github.com/GitbookIO/gitbook-cli) tool. Sadly it's abandoned -so building this file currently involves a little patch. See -`release/ci-book.js` - -If you about to change something about the build process, make a new tag and -push that first so we have a backup of the compiled output incase we need to -roll back quickly. Tagged releases are pushed to separate folder on the docs -bucket. +## Note to developers +This documentation is built using [Sphinx](https://github.com/sphinx-doc/sphinx) which is using python. +Activate a virtual environment with `.venv/Scripts/activate` and install the dependencies with `pip install -r requirements.txt`. +Creating the compiled output then is as simple as running `make html` in the `docs` directory. diff --git a/SUMMARY.md b/SUMMARY.md deleted file mode 100644 index ae6b590..0000000 --- a/SUMMARY.md +++ /dev/null @@ -1,56 +0,0 @@ -# Summary - -* [Introduction](README.md) -* [User guide](using/README.md) - * [Installing](installing/README.md) - * [Installing on Windows](installing/windows.md) - * [Installing on macOS](installing/macos.md) - * [Installing on Linux](installing/linux/README.md) - * [Installing on Ubuntu & Debian](installing/linux/ubuntu-and-debian.md) - * [Installing on Fedora](installing/linux/fedora.md) - * [Installing on ArchLinux](installing/linux/archlinux.md) - * [Installing on Gentoo](installing/linux/gentoo.md) - * [Logging in](using/login.md) - * [Using the app offline](using/offline.md) - * [Preferences](using/preferences.md) - * [The sandbox](using/sandbox.md) - * [Windows sandboxing](using/sandbox/windows.md) - * [macOS sandboxing](using/sandbox/macos.md) - * [Linux sandboxing](using/sandbox/linux.md) - * [Using a proxy](using/proxy.md) - * [Downloading games](using/downloading.md) - * [Install locations](using/install-locations.md) - * [Collections](using/collections.md) - * [Known Issues](installing/known-issues.md) -* [Game developer guide](integrating/README.md) - * [Quick start](integrating/quickstart.md) - * [Windows builds](integrating/platforms/windows.md) - * [macOS builds](integrating/platforms/macos.md) - * [Linux builds](integrating/platforms/linux.md) - * [Web builds](integrating/platforms/web.md) - * [Validating builds and manifests](integrating/manifest/validating-your-manifest.md) - * [How updates work](integrating/updates.md) - * [App manifests](integrating/manifest.md) - * [Manifest actions](integrating/manifest-actions.md) - * [Prerequisites](integrating/prereqs/README.md) - * [Visual C++ Runtime](integrating/prereqs/vc.md) - * [.NET Framework](integrating/prereqs/dotnet.md) - * [XNA Framework](integrating/prereqs/xna.md) - * [DirectX](integrating/prereqs/dx.md) - * [API integration](integrating/api/README.md) - * [Compatibility policy](integrating/compatibility-policy.md) - * [Troubleshooting](integrating/troubleshooting-guide.md) -* [Contributor guide](developing/README.md) - * [How you can help](developing/help.md) - * [Getting started with the codebase](developing/getting-started.md) - * [Unit Tests](developing/unit-tests.md) - * [Integration Tests](developing/integration-tests.md) - * [Environment variables](developing/environment-variables.md) - * [Performance hacking](developing/performance.md) - * [Behind the scenes](developing/behind-the-scenes.md) - * [Continuous deployment](developing/continuous-deployment.md) - * [Dependencies \(broth\)](installing/dependencies.md) -* [Appendix](appendix/README.md) - * [Acknowledgements](appendix/acknowledgements.md) - * [Building Linux software into a prefix](appendix/building-into-a-prefix.md) - diff --git a/book.json b/book.json deleted file mode 100644 index b16e0ea..0000000 --- a/book.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "title": "The itch.io app book", - "description": "A complete guide to the itch app, both for players and tinkerers", - "author": "Amos Wenger", - "language": "en", - "gitbook": "3.2.3" -} diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..d4bb2cb --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = . +BUILDDIR = _build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/appendix/README.md b/docs/appendix/README.md similarity index 88% rename from appendix/README.md rename to docs/appendix/README.md index 417fa55..5a199bc 100644 --- a/appendix/README.md +++ b/docs/appendix/README.md @@ -7,5 +7,9 @@ While this book is focused on the itch app, we felt like some subjects slightly * [Acknowledgements](./acknowledgements.md) * [Building Linux software into a prefix](./building-into-a-prefix.md) +```{toctree} +:hidden: - +acknowledgements +building-into-a-prefix +``` diff --git a/appendix/acknowledgements.md b/docs/appendix/acknowledgements.md similarity index 100% rename from appendix/acknowledgements.md rename to docs/appendix/acknowledgements.md diff --git a/appendix/building-into-a-prefix.md b/docs/appendix/building-into-a-prefix.md similarity index 100% rename from appendix/building-into-a-prefix.md rename to docs/appendix/building-into-a-prefix.md diff --git a/assets/avast.png b/docs/assets/avast.png similarity index 100% rename from assets/avast.png rename to docs/assets/avast.png diff --git a/assets/cant-launch.png b/docs/assets/cant-launch.png similarity index 100% rename from assets/cant-launch.png rename to docs/assets/cant-launch.png diff --git a/assets/changelog.png b/docs/assets/changelog.png similarity index 100% rename from assets/changelog.png rename to docs/assets/changelog.png diff --git a/assets/collections.png b/docs/assets/collections.png similarity index 100% rename from assets/collections.png rename to docs/assets/collections.png diff --git a/assets/game-tab.png b/docs/assets/game-tab.png similarity index 100% rename from assets/game-tab.png rename to docs/assets/game-tab.png diff --git a/assets/html5-devtools.png b/docs/assets/html5-devtools.png similarity index 100% rename from assets/html5-devtools.png rename to docs/assets/html5-devtools.png diff --git a/assets/install-location-add.png b/docs/assets/install-location-add.png similarity index 100% rename from assets/install-location-add.png rename to docs/assets/install-location-add.png diff --git a/assets/install-location-set-default.png b/docs/assets/install-location-set-default.png similarity index 100% rename from assets/install-location-set-default.png rename to docs/assets/install-location-set-default.png diff --git a/assets/install-locations-contents.png b/docs/assets/install-locations-contents.png similarity index 100% rename from assets/install-locations-contents.png rename to docs/assets/install-locations-contents.png diff --git a/assets/itch-dmg.png b/docs/assets/itch-dmg.png similarity index 100% rename from assets/itch-dmg.png rename to docs/assets/itch-dmg.png diff --git a/assets/itchio-website.png b/docs/assets/itchio-website.png similarity index 100% rename from assets/itchio-website.png rename to docs/assets/itchio-website.png diff --git a/assets/itchsetup-certs.png b/docs/assets/itchsetup-certs.png similarity index 100% rename from assets/itchsetup-certs.png rename to docs/assets/itchsetup-certs.png diff --git a/assets/login.png b/docs/assets/login.png similarity index 100% rename from assets/login.png rename to docs/assets/login.png diff --git a/assets/multiprofile.png b/docs/assets/multiprofile.png similarity index 100% rename from assets/multiprofile.png rename to docs/assets/multiprofile.png diff --git a/assets/plan-install.png b/docs/assets/plan-install.png similarity index 100% rename from assets/plan-install.png rename to docs/assets/plan-install.png diff --git a/assets/preferences.png b/docs/assets/preferences.png similarity index 100% rename from assets/preferences.png rename to docs/assets/preferences.png diff --git a/assets/profile-react.png b/docs/assets/profile-react.png similarity index 100% rename from assets/profile-react.png rename to docs/assets/profile-react.png diff --git a/assets/react-devtools.png b/docs/assets/react-devtools.png similarity index 100% rename from assets/react-devtools.png rename to docs/assets/react-devtools.png diff --git a/assets/tfa.png b/docs/assets/tfa.png similarity index 100% rename from assets/tfa.png rename to docs/assets/tfa.png diff --git a/assets/universal-navigation.gif b/docs/assets/universal-navigation.gif similarity index 100% rename from assets/universal-navigation.gif rename to docs/assets/universal-navigation.gif diff --git a/assets/win10-uninstall.png b/docs/assets/win10-uninstall.png similarity index 100% rename from assets/win10-uninstall.png rename to docs/assets/win10-uninstall.png diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 0000000..ca0b359 --- /dev/null +++ b/docs/conf.py @@ -0,0 +1,41 @@ +# Configuration file for the Sphinx documentation builder. +# +# For the full list of built-in configuration values, see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Project information ----------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information + +project = "Itch.io App" +copyright = ( + "2024, Amos Wenger, leafo and the community on GitHub" +) +author = "Amos Wenger, leafo and the community on GitHub" +release = "0.1" + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = ["myst_parser", "sphinx_tippy", "sphinx.ext.githubpages"] + +templates_path = ["_templates"] +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] + + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = "furo" +html_static_path = ["_static"] +html_title = "Itch.io App" + +html_theme_options = { + "light_css_variables": { + "color-brand-primary": "#8E3737", + "color-brand-content": "#8E3737", + }, + "dark_css_variables": { + "color-brand-primary": "#ea4d4d", + "color-brand-content": "#ea4d4d", + }, +} diff --git a/developing/README.md b/docs/developing/README.md similarity index 75% rename from developing/README.md rename to docs/developing/README.md index a38145e..285cbcf 100644 --- a/developing/README.md +++ b/docs/developing/README.md @@ -1,5 +1,11 @@ - # Contributor guide Since itch is open-source, and we maintain it actively, anyone can contribute to it in various ways! This chapter describes how. + +```{toctree} +:hidden: + +help +behind-the-scenes +``` diff --git a/developing/behind-the-scenes.md b/docs/developing/behind-the-scenes.md similarity index 75% rename from developing/behind-the-scenes.md rename to docs/developing/behind-the-scenes.md index f15e091..9cb7977 100644 --- a/developing/behind-the-scenes.md +++ b/docs/developing/behind-the-scenes.md @@ -2,3 +2,9 @@ This section describes a few things that are done behind the curtain so that the app can function. You don't need to learn about them to use the app or contribute to it, but it's cool to have somewhere canonical where it's documented. +```{toctree} +:hidden: + +continuous-deployment +../using/installing/dependencies +``` diff --git a/developing/continuous-deployment.md b/docs/developing/continuous-deployment.md similarity index 100% rename from developing/continuous-deployment.md rename to docs/developing/continuous-deployment.md diff --git a/developing/data-flow.md b/docs/developing/data-flow.md similarity index 99% rename from developing/data-flow.md rename to docs/developing/data-flow.md index 624e4f2..f4d0a82 100644 --- a/developing/data-flow.md +++ b/docs/developing/data-flow.md @@ -1,3 +1,8 @@ +--- +orphan: true +--- +# Data Flow + itch follows the [Redux](http://redux.js.org/index.html) design pattern — to understand the rest of this page, you need to be familiar with it. The basics are as follows: @@ -91,6 +96,3 @@ interact with | || | render to || things that cross it are JSON || payloads sent asynchronously via IPC ``` - - - diff --git a/developing/diego.md b/docs/developing/diego.md similarity index 97% rename from developing/diego.md rename to docs/developing/diego.md index cec9f9d..f45ab6b 100644 --- a/developing/diego.md +++ b/docs/developing/diego.md @@ -1,11 +1,13 @@ - +--- +orphan: true +--- # diego diego is our diagnostics mercenary: it attempts to dump information about the Operating System, CPU and Graphics Card to a log file when someone tries to install a game. -You can [read its source](../app/util/diego.js), or look at these example outputs +You can read its source (`app/util/diego.js`), or look at these example outputs ## Example outputs diff --git a/developing/environment-variables.md b/docs/developing/environment-variables.md similarity index 97% rename from developing/environment-variables.md rename to docs/developing/environment-variables.md index 3f854c5..29b7c92 100644 --- a/developing/environment-variables.md +++ b/docs/developing/environment-variables.md @@ -1,3 +1,5 @@ +# Environment Variables + These environment variables will change the behavior of the app: * `DEVTOOLS=1` — start with Chromium Devtools open — useful when something goes @@ -12,4 +14,3 @@ These environment variables will change the behavior of the app: * `ITCH_EMULATE_OFFLINE=1` - simulate a network outage. This only affects itch, not butler. See the [Performance hacking](/developing/performance.md) section for other environment variables that impact the app. - diff --git a/developing/getting-started.md b/docs/developing/getting-started.md similarity index 94% rename from developing/getting-started.md rename to docs/developing/getting-started.md index 4be2a90..be7b3b0 100644 --- a/developing/getting-started.md +++ b/docs/developing/getting-started.md @@ -1,12 +1,14 @@ -## Setting up itch for development +# Setting up itch for development itch is built in TypeScript and runs inside of Electron. To get started, install the latest [node.js](https://nodejs.org/) -> Linux distributions tend to ship outdated node.js versions -> -> Use the nodesource [binary distributions](https://github.com/nodesource/distributions/) to get an up-to-date one. +```{caution} +Linux distributions tend to ship outdated node.js versions + +Use the nodesource [binary distributions](https://github.com/nodesource/distributions/) to get an up-to-date one. +``` Then, clone the [https://github.com/itchio/itch](https://github.com/itchio/itch) repository somewhere. @@ -16,7 +18,9 @@ Install the javascript dependencies by running this command from within the `itc $ npm install ``` -> For native modules, you'll need a compiler toolchain: Visual Studio 2015 on Windows, gcc/clang on Linux/macOS. See the [node-gyp](https://github.com/nodejs/node-gyp) page for more information on this. +```{note} +For native modules, you'll need a compiler toolchain: Visual Studio 2015 on Windows, gcc/clang on Linux/macOS. See the [node-gyp](https://github.com/nodejs/node-gyp) page for more information on this. +``` Finally, start the app! @@ -179,4 +183,3 @@ We check the quality of the app's code by two kinds of tests: * [Integration Tests](integration-tests.md), which test interactions Check out the pages linked above to learn more about what their purpose is, when and how they're run, and how they're written. - diff --git a/developing/help.md b/docs/developing/help.md similarity index 96% rename from developing/help.md rename to docs/developing/help.md index a2426f4..4134280 100644 --- a/developing/help.md +++ b/docs/developing/help.md @@ -1,5 +1,15 @@ # What you can do to help +```{toctree} +:hidden: + +getting-started +unit-tests +integration-tests +environment-variables +performance +``` + If you like our work and want to help us make it even better, here are things you can do. ## Test games with the app diff --git a/developing/integration-tests.md b/docs/developing/integration-tests.md similarity index 94% rename from developing/integration-tests.md rename to docs/developing/integration-tests.md index 7ce014d..2ed9034 100644 --- a/developing/integration-tests.md +++ b/docs/developing/integration-tests.md @@ -8,7 +8,7 @@ They make sure that all of the code, together, makes meaningful interactions hap The app is tested as a whole using a homegrown golang runner that speaks webdriver to the app. -### Running integration tests +## Running integration tests It looks deceptively simple: @@ -22,7 +22,7 @@ If you're an itch.io employee, poke Amos about it to get set up. If you're not, We'll take care of that part! -### Writing an integration test +## Writing an integration test Scenarios live in `integration-tests`, along with some support code that makes it all tick. They're also explicitly listed in `integration-tests/main.go`. @@ -30,6 +30,3 @@ These resources can be useful: * The [webdriver API docs](http://webdriver.io/api.html) * Existing tests! - - - diff --git a/developing/itch-canary.png b/docs/developing/itch-canary.png similarity index 100% rename from developing/itch-canary.png rename to docs/developing/itch-canary.png diff --git a/developing/performance.md b/docs/developing/performance.md similarity index 99% rename from developing/performance.md rename to docs/developing/performance.md index fd33370..6a6ec48 100644 --- a/developing/performance.md +++ b/docs/developing/performance.md @@ -67,4 +67,3 @@ export GoodComponent extends React.PureComponent { ``` More details in [this medium article](https://medium.com/@esamatti/react-js-pure-render-performance-anti-pattern-fb88c101332f) - diff --git a/developing/unit-tests.md b/docs/developing/unit-tests.md similarity index 99% rename from developing/unit-tests.md rename to docs/developing/unit-tests.md index 87cc917..8781e20 100644 --- a/developing/unit-tests.md +++ b/docs/developing/unit-tests.md @@ -1,4 +1,3 @@ - # Unit tests Unit tests are for checking that a specific, well-isolated bit of code does what diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 0000000..e703190 --- /dev/null +++ b/docs/index.md @@ -0,0 +1,19 @@ +--- +hide-toc: true +--- + +# Itch.io App Documentation + +```{include} ../README.md +:start-after: +:end-before: +``` + +```{toctree} +:hidden: + +using/README.md +integrating/README.md +developing/README +appendix/README.md +``` diff --git a/docs/integrating/README.md b/docs/integrating/README.md new file mode 100644 index 0000000..4035d51 --- /dev/null +++ b/docs/integrating/README.md @@ -0,0 +1,26 @@ +# Game developer guide + +This chapter describes how to distribute software that can be installed +and ran with the itch app. + +Often, you'll find it disappointingly simple (most things should work out +of the box). Nevertheless, this chapter is useful for special cases, or +for creators willing to go the extra mile when integrating with it. + +```{note} +Even though the word 'game' is used throughout this guide, it applies equally to other kinds of software. Games just happen to be the most popular kind of software installed with the app! +``` + +```{toctree} +:hidden: + +quickstart +manifest/validating-your-manifest +updates +manifest +manifest-actions +prereqs/README +api/README +compatibility-policy +troubleshooting-guide +``` diff --git a/integrating/api/README.md b/docs/integrating/api/README.md similarity index 99% rename from integrating/api/README.md rename to docs/integrating/api/README.md index e142d93..d8c4cb8 100644 --- a/integrating/api/README.md +++ b/docs/integrating/api/README.md @@ -19,4 +19,3 @@ by users who have purchased a legitimate copy of your game, and to all press use ## Getting started For more information, refer to the **API key** part of the [Manifest actions](/integrating/manifest-actions.md) page. - diff --git a/integrating/compatibility-policy.md b/docs/integrating/compatibility-policy.md similarity index 66% rename from integrating/compatibility-policy.md rename to docs/integrating/compatibility-policy.md index 693d27f..20bff55 100644 --- a/integrating/compatibility-policy.md +++ b/docs/integrating/compatibility-policy.md @@ -25,7 +25,7 @@ Builds pushed with [butler](https://itch.io/docs/butler) are **Platinum tier**, * Installing games **can be paused and resumed** \(again, without using extra disk space\). * An **integrity check** can be performed on installed games with minimal network usage. * **Corrupted files can be healed** with minimal network usage. -* Upgrading an installation uses **binary patch files** which are small, beautiful, and efficient.[^3] +* Upgrading an installation uses **binary patch files** which are small, beautiful, and efficient.[^#3] * Uninstalls are near-instantaneous. All you have to do for _all this_ to work is simply to **use **[**butler**](https://itch.io/docs/butler)** to push your builds**. @@ -38,14 +38,14 @@ That's what Big Installer wants you to think. But in reality: -* itch.io app users get the [Platinum tier](#platinum-tier) experience +* itch.io app users get the [Platinum tier](#platinum\ tier) experience * power users may download directly from the web, and that's okay! They can handle a .zip file. ## Gold tier All tiers below platinum have the following inconvenients: -* **No automatic upgrades**. With different uploads, there's no way for the itch app to tell _for sure_ what needs to be upgraded to what, so it just doesn't update at all.[^4] +* **No automatic upgrades**. With different uploads, there's no way for the itch app to tell _for sure_ what needs to be upgraded to what, so it just doesn't update at all.[^#4] * **No integrity check** - it's reinstall or nothing. However, installs still don't require additional disk space, or administrator privileges, and uninstalls are instant. @@ -59,14 +59,14 @@ The itch.io app achieves this level of support by: Install pause/resume support is poorer for some of these: resuming might restart from the beginning of an entry rather than where it left off. -### .zip archives \([Gold tier](#gold-tier)\) +### .zip archives \([Gold tier](#gold\ tier)\) Everyone loves to hate the .zip file format, sometimes with reason. Folks prefer .rar, or .7z, or maybe .xz because they compress smaller. They prefer custom formats, because .zip files have been around for a _long_ time and there's a lot of cruft in the [spec](https://pkware.cachefly.net/webdocs/casestudies/APPNOTE.TXT). -We however, like[^5] the .zip file format because it: +We however, like[^#5] the .zip file format because it: -* Can be decompressed out-of-the-box on Windows, macOS and reasonable Linux distributions[^1] -* Allows extracting individual items without reading the whole file[^2] +* Can be decompressed out-of-the-box on Windows, macOS and reasonable Linux distributions[^#1] +* Allows extracting individual items without reading the whole file[^#2] * Includes checksums \(CRC32\) mandated by the spec * Has a smaller, beautiful version [standardized by ISO](https://www.iso.org/standard/60101.html) @@ -74,7 +74,7 @@ In fact, we like it so much it's the de-facto storage format for builds pushed w We support everything in ISO/IEC 21320-1:2015, along with some extensions: -* LZMA-compressed entries[^7] +* LZMA-compressed entries[^#7] If the app encounters .zip files with characters that are: @@ -83,21 +83,21 @@ If the app encounters .zip files with characters that are: ...then it'll refuse to install the .zip. -### .rar archives \([Gold tier](#gold-tier)\) +### .rar archives \([Gold tier](#gold\ tier)\) -There's a lot to dislike about the RAR file format - the licensing terms, the file structure, etc.[^6] +There's a lot to dislike about the RAR file format - the licensing terms, the file structure, etc.[^#6] However, as of version 25.x of the application, they're gold tier, because 7-zip has great support for them. > Note: Installs from .rar files have a significant warm-up time before progress is visible, because the entries are organized differently from .zip files. -### .tar, .tar.gz, .tar.bz2 archives \([Gold tier](#gold-tier)\) +### .tar, .tar.gz, .tar.bz2 archives \([Gold tier](#gold\ tier)\) -TAR is a funny beast[^9]. It was designed for backing data on tapes, so it's a linear format. It doesn't specify compression, so the entire stream is compressed with something else. +TAR is a funny beast[^#9]. It was designed for backing data on tapes, so it's a linear format. It doesn't specify compression, so the entire stream is compressed with something else. -For .tar \(uncompressed\), .tar.gz \(gzip, a variant of DEFLATE\), and .tar.bz2 \(bzip2, an odd format in itself[^8]\), the installation can be paused anywhere, because we have custom decompression engines for gzip and bzip2. +For .tar \(uncompressed\), .tar.gz \(gzip, a variant of DEFLATE\), and .tar.bz2 \(bzip2, an odd format in itself[^#8]\), the installation can be paused anywhere, because we have custom decompression engines for gzip and bzip2. -### .dmg \([Gold tier](#gold-tier)\) +### .dmg \([Gold tier](#gold\ tier)\) Okay, all formats have some flavor of strange somewhere. But DMG files somehow take the cake, as they're: @@ -111,7 +111,7 @@ And yet, 7-zip lets us extract any item we want easily, so they're gold tier. > Note: if your DMG file contains a dialog with a EULA in it, it's not going to be shown during installation -### MojoSetup \([Gold tier](#gold-tier)\) +### MojoSetup \([Gold tier](#gold\ tier)\) [MojoSetup](https://www.icculus.org/mojosetup/) installers are basically a Linux binary concatenated with a .zip archive. @@ -122,7 +122,7 @@ However, **we do not support**: * Specifying a removable installation medium \(DVD, etc.\) or a network installation source \(FTP, HTTP etc.\) * Many other custom Mojosetup features. -### Self-extracting InstallShield archives \([Gold tier](#gold-tier)\) +### Self-extracting InstallShield archives \([Gold tier](#gold\ tier)\) Looks like an .exe, is actually a .cab. We identify those and extract them without storing them on disk first. We've only seen one in the wild so far, but hey, better safe than sorry. @@ -130,17 +130,17 @@ Still, please use .zip instead of doing that. ## Silver tier -This tier is very similar to [gold tier](#gold-tier), but they have a separate **download** and **install** phase, and use temporary storage during installation. +This tier is very similar to [gold tier](#gold\ tier), but they have a separate **download** and **install** phase, and use temporary storage during installation. > This sounds innocuous, but if you ship a 10GB game as a 4GB setup file, and the user only has 12GB disk space, they won't be able to install it. -### .7z archives \([Silver tier](#silver-tier)\) +### .7z archives \([Silver tier](#silver\ tier)\) The 7z format has wonderful properties, but no entry directory. It handles entries "as a whole" rather than invidiually \(what .zip does\) to achieve better compression, and as a result, it's not feasible to pause/resume compression without having to redownload and re-decompress large portions of the source file. -As a result, we force downloading .7z files to disk before extracting them, and it's silver tier. Sorry Igor[^10] +As a result, we force downloading .7z files to disk before extracting them, and it's silver tier. Sorry Igor[^#10] -### tar.xz archives \([Silver tier](#silver-tier)\) +### tar.xz archives \([Silver tier](#silver\ tier)\) XZ is also a container format \(like .zip\), but in .tar.xz's case it's just used as an excuse to use LZMA2. We don't have a custom LZMA2 engine \(we use 7-zip for that\), so we download them to disk first. @@ -150,19 +150,19 @@ This is a tier that really tests our commitment to supporting older builds of ga They might install files outside the install folder, they might just plain old don't work, they make users wait because of their typically long install times, etc. -### .msi packages \([Bronze tier](#bronze-tier)\) +### .msi packages \([Bronze tier](#bronze\ tier)\) Most MSI files can be installed fine, as long as you don't do anything funky in the install scripts. So don't! **Please **don't use those - bronze tier is not a good tier. -### InnoSetup installers \([Bronze tier](#bronze-tier)\) +### InnoSetup installers \([Bronze tier](#bronze\ tier)\) Installation is performed silently and to the correct install folder. Uninstallation is handled properly as well. Still, **please **don't use those - bronze tier is not a good tier. -### Nullsoft / NSIS installers \([Bronze tier](#bronze-tier)\) +### Nullsoft / NSIS installers \([Bronze tier](#bronze\ tier)\) Installation is performed silently and to the correct install folder. Uninstallation is handled properly as well. @@ -178,19 +178,19 @@ We don't plan to support these because of one or more of the following reasons: * The format cannot be installed to a single folder in a portable manner * The format is a sin -### .deb and .rpm packages \([Oh no tier](#oh-no-tier)\) +### .deb and .rpm packages \([Oh no tier](#oh-no\ tier)\) These are ignored when looking for uploads - it'll appear as if your app wasn't available on Linux at all. **Do not use these.** -### .pkg packages \([Oh no tier](#oh-no-tier)\) +### .pkg packages \([Oh no tier](#oh-no\ tier)\) These are dialog-based, can have scripts, can ask for your password, don't let you specify install folders. **Do not use these.** -### Literally any other installer type \([Oh no tier](#oh-no-tier)\) +### Literally any other installer type \([Oh no tier](#oh-no\ tier)\) Here's a non-exhaustive list of installer creators we don't support: @@ -200,27 +200,26 @@ Here's a non-exhaustive list of installer creators we don't support: * Wise \(Wise Solutions, Inc.\) * Makeself -**Do not use these**, and for the love of all that is holy, **do not make your own installer.**[^11] +**Do not use these**, and for the love of all that is holy, **do not make your own installer.**[^#11] -[^1]: Extractors on Linux & macOS tend to forget about file permissions \(notably, the executable bit\), but that's 100% on them. +[^#1]: Extractors on Linux & macOS tend to forget about file permissions \(notably, the executable bit\), but that's 100% on them. -[^2]: It's not trivial - you have to read the end of the file first. But that's what HTTP range requests are for. +[^#2]: It's not trivial - you have to read the end of the file first. But that's what HTTP range requests are for. -[^3]: There's a whole book to be written about our patching system - and it would be a good book, too! For now, let's stay humble and just mention that it routinely outperforms commercial patching solutions. +[^#3]: There's a whole book to be written about our patching system - and it would be a good book, too! For now, let's stay humble and just mention that it routinely outperforms commercial patching solutions. -[^4]: Versions of the itch.io app up to 23.x used to take guesses as to non-butler-uploads updates. It caused more problems than it solved, so that's no longer the case. +[^#4]: Versions of the itch.io app up to 23.x used to take guesses as to non-butler-uploads updates. It caused more problems than it solved, so that's no longer the case. -[^5]: The actual sentiment is more along the lines of "everything else has significant drawbacks and no amount of GitHub comments would convince us otherwise at this point in time", but that doesn't roll off the tongue quite as easily. +[^#5]: The actual sentiment is more along the lines of "everything else has significant drawbacks and no amount of GitHub comments would convince us otherwise at this point in time", but that doesn't roll off the tongue quite as easily. -[^6]: The fact that malware authors love it, the amount of password-protected archives out there, the fact that at least 3 major versions are in use in the wild \(Rar2, Rar3, Rar5\), and that it reminds one about the golden age of Rare, the one from Twycross Leicestershire. +[^#6]: The fact that malware authors love it, the amount of password-protected archives out there, the fact that at least 3 major versions are in use in the wild \(Rar2, Rar3, Rar5\), and that it reminds one about the golden age of Rare, the one from Twycross Leicestershire. -[^7]: LZMA entries are indeed smaller, but if installation is paused in the middle of one of those, it'll have to start over at the beginning of the entry. As opposed to DEFLATE, which we support mid-entry checkpoints for. +[^#7]: LZMA entries are indeed smaller, but if installation is paused in the middle of one of those, it'll have to start over at the beginning of the entry. As opposed to DEFLATE, which we support mid-entry checkpoints for. -[^8]: Only mainstream format to use [Burrows-Wheeler](https://en.wikipedia.org/wiki/Burrows–Wheeler_transform), typically has low compression \_and \_decompression speeds? The world was weird before LZMA. +[^#8]: Only mainstream format to use [Burrows-Wheeler](https://en.wikipedia.org/wiki/Burrows–Wheeler_transform), typically has low compression \_and \_decompression speeds? The world was weird before LZMA. -[^9]: A quick note to .zip haters: TAR has also had [an eventful childhood](https://en.wikipedia.org/wiki/Tar_%28computing%29), and as a result, is just as messy. This is just another of those "ignorance is bliss" subjects, so maybe don't follow that link. +[^#9]: A quick note to .zip haters: TAR has also had [an eventful childhood](https://en.wikipedia.org/wiki/Tar_%28computing%29), and as a result, is just as messy. This is just another of those "ignorance is bliss" subjects, so maybe don't follow that link. -[^10]: Igor Pavlov is the driving force behind 7-zip. Reading the [release notes](https://www.7-zip.org/history.txt) is nothing short of awe-inspiring. I feel like we all have a collective debt towards Igor. - -[^11]: This is not "don't become a standup comedian!" advice. This is "don't make it a career to repeatedly bang your head with multiple very large rocks over and over and over and over" advice. Still, this is just advice. Don't make your own desktop client for an open indie marketplace either but, hey, here we are. +[^#10]: Igor Pavlov is the driving force behind 7-zip. Reading the [release notes](https://www.7-zip.org/history.txt) is nothing short of awe-inspiring. I feel like we all have a collective debt towards Igor. +[^#11]: This is not "don't become a standup comedian!" advice. This is "don't make it a career to repeatedly bang your head with multiple very large rocks over and over and over and over" advice. Still, this is just advice. Don't make your own desktop client for an open indie marketplace either but, hey, here we are. diff --git a/integrating/manifest-actions.md b/docs/integrating/manifest-actions.md similarity index 95% rename from integrating/manifest-actions.md rename to docs/integrating/manifest-actions.md index 588d4ba..908c6f2 100644 --- a/integrating/manifest-actions.md +++ b/docs/integrating/manifest-actions.md @@ -17,9 +17,7 @@ name = "play" path = "Overland.exe" ``` -### - -### Names +## Names A few well-known names are supported: @@ -48,7 +46,7 @@ name = "Gehen wir bereits!" _Note: the example manifest above describes just a single action, in three languages._ -### Paths +## Paths Paths can either be: @@ -77,7 +75,7 @@ name = "Discussion forum" path = "https://foo.itch.io/bar/community" ``` -### Arguments +## Arguments The `args` field can be used to specify an array of arguments to pass to native executables. @@ -92,7 +90,7 @@ args = ["--that", "--is", "--a", "lot=of-arguments"] For HTML5 games, arguments are available as `Itch.args` \(`Itch` being added to the global scope, usually `window` \). -### Platforms +## Platforms The `platform` field can be used to limit a manifest entry to apply only to a specific operating system. This feature is quite useful in conjunction with `args`, due to Windows and Unix using different conventions for command-line arguments. Valid values are "`windows`" for Windows, "`osx`" for OS X / macOS, "`linux`" for Linux, and "`unknown`" if the platform cannot be determined. @@ -118,7 +116,7 @@ platform = "linux" args = ["--that", "--is", "--a", "lot=of-arguments"] ``` -### API key & scoping +## API key & scoping Games can ask for an itch.io API key by setting the `scope` parameter. @@ -141,7 +139,7 @@ When the `scope` parameter is set, the itch.io app sets the following **environm * `ITCHIO_API_KEY :`a game-specific, session-specific API key * `ITCHIO_API_KEY_EXPIRES_AT` the expiration date of the key, in iso-8601 format. -#### Making requests with the API key +### Making requests with the API key The itch.io API key provided to the game should be the value of an HTTP header named `Authorization`. @@ -159,7 +157,7 @@ needle.get('https://itch.io/api/1/jwt/me', opts, function (error, response) { }) ``` -#### Accessing the API key in HTML5 games +### Accessing the API key in HTML5 games The HTML5 environment doesn't grant access to environment variables by design, so the itch app injects a global object named `Itch` into the JavaScript runtime. @@ -177,7 +175,7 @@ if (typeof Itch === 'undefined') { XHR requests are normally limited to the host that served the javascript: in the case of the itch.io app, HTML5 games are served from a custom protocol, and _the same-origin policy is disabled_ so that your HTML5 game can make requests to the itch.io server or to your own server somewhere else. -### Sandbox opt-in +## Sandbox opt-in Adding `sandbox = true` to an action opts into [the itch.io sandbox](../using/sandbox.md). @@ -194,7 +192,7 @@ path = "ProceduralChaos.exe" sandbox = true ``` -### Console / text-mode applications +## Console / text-mode applications By default, the itch app redirects the standard output and standard error to a log file on disk, which helps debugging when reports are sent. @@ -211,9 +209,6 @@ console = true On Windows, it'll also open a new command line window to display the game into. -> `console` is not yet supported on Linux and macOS - - - - - +```{attention} +`console` is not yet supported on Linux and macOS +``` diff --git a/integrating/manifest.md b/docs/integrating/manifest.md similarity index 95% rename from integrating/manifest.md rename to docs/integrating/manifest.md index 6605490..9e8ccee 100644 --- a/integrating/manifest.md +++ b/docs/integrating/manifest.md @@ -39,8 +39,6 @@ The contents of the file must be valid [TOML markup](https://github.com/toml-lan Before you push a build with your manifest file, you can validate with the [butler](https://itch.io/docs/butler) `validate` command. -Read the [Validating your manifest](#validating-your-manifest) section for more information. - ## Prerequisites The itch.io app can ensure that certain libraries are installed before your app is launched. @@ -77,7 +75,4 @@ args = ["--editor"] Read the [manifest actions](/integrating/manifest-actions.md) page to learn more about what you can do with those. -### - [^1]: Keep it simple, you don't want players to have to scroll all the way down to pick the right action. - diff --git a/integrating/manifest/validating-your-manifest.md b/docs/integrating/manifest/validating-your-manifest.md similarity index 99% rename from integrating/manifest/validating-your-manifest.md rename to docs/integrating/manifest/validating-your-manifest.md index 9a96f70..54ea81d 100644 --- a/integrating/manifest/validating-your-manifest.md +++ b/docs/integrating/manifest/validating-your-manifest.md @@ -158,6 +158,3 @@ error: Decoding error: * 'Actions[1].Sandbox' expected type 'bool', got unconvertible type 'int64' ``` - - - diff --git a/integrating/platforms/linux.md b/docs/integrating/platforms/linux.md similarity index 99% rename from integrating/platforms/linux.md rename to docs/integrating/platforms/linux.md index 89aae80..c6b1e44 100644 --- a/integrating/platforms/linux.md +++ b/docs/integrating/platforms/linux.md @@ -205,4 +205,3 @@ _Special thanks to Ethan Lee for proofreading this page and contributing advice. See the Acknowledgements section of this book for a full list of contributors._ [^1]: If they can't, get a better publisher. - diff --git a/integrating/platforms/macos.md b/docs/integrating/platforms/macos.md similarity index 97% rename from integrating/platforms/macos.md rename to docs/integrating/platforms/macos.md index a5f366f..de211e0 100644 --- a/integrating/platforms/macos.md +++ b/docs/integrating/platforms/macos.md @@ -10,7 +10,7 @@ If you need an [app manifest](/integrating/manifest.md), put your .app and the m > If you really _really_ want to do something else, read the [Compatibility policy](/integrating/compatibility-policy.md) page. -### ...but I don't have an app bundle +## ...but I don't have an app bundle App bundles are directories with a standardized structure and some metadata in an `Info.plist` file. @@ -38,4 +38,3 @@ We've taken several measures to ensure this works properly: For players that are **not **using the itch.io app, you might get reports of your app being "Damaged and can't be opened" and that it should "be moved to the trash". Player who do use the itch.io app do not encounter these issues, so you may want to encourage them to use it. - diff --git a/integrating/platforms/unity-linux-export.png b/docs/integrating/platforms/unity-linux-export.png similarity index 100% rename from integrating/platforms/unity-linux-export.png rename to docs/integrating/platforms/unity-linux-export.png diff --git a/integrating/platforms/web.md b/docs/integrating/platforms/web.md similarity index 92% rename from integrating/platforms/web.md rename to docs/integrating/platforms/web.md index b54af47..3d76ae5 100644 --- a/integrating/platforms/web.md +++ b/docs/integrating/platforms/web.md @@ -14,19 +14,18 @@ Like the website, it will look for an `index.html` file \(or a top-level `.html` You can use `Shift+F12` to open the developer toosl, see [Troubleshooting](/integrating/troubleshooting-guide.md) for more details. -### Fullscreen support +## Fullscreen support HTML5 games launched with the app can be switched to fullscreen and their window can be resized, so make sure your CSS handles that properly. -### Java applets +## Java applets Java applets are not supported by the itch.io app. -### Flash games +## Flash games Flash games are not supported by the itch.io app. -### Legacy Unity plug-in games +## Legacy Unity plug-in games Legacy Unity plug-in games are not supported by the itch.io app. Use the **WebGL export** option instead. - diff --git a/integrating/platforms/windows.md b/docs/integrating/platforms/windows.md similarity index 99% rename from integrating/platforms/windows.md rename to docs/integrating/platforms/windows.md index 68f5aae..b461054 100644 --- a/integrating/platforms/windows.md +++ b/docs/integrating/platforms/windows.md @@ -29,4 +29,3 @@ However, you'll also have to figure out exactly what libraries you need to ship. Tools like [Dependency Walker](http://www.dependencywalker.com/) or [Process Monitor](https://docs.microsoft.com/en-us/sysinternals/downloads/procmon) can help.[^1] [^1]: In fact, anything from [Sysinternals](https://docs.microsoft.com/en-us/sysinternals/downloads/process-utilities) is heartily recommended. If you're not using them, you should be. Nevermind what for - download first, justify second. - diff --git a/integrating/prereqs/README.md b/docs/integrating/prereqs/README.md similarity index 97% rename from integrating/prereqs/README.md rename to docs/integrating/prereqs/README.md index c69a76e..9e66668 100644 --- a/integrating/prereqs/README.md +++ b/docs/integrating/prereqs/README.md @@ -1,5 +1,14 @@ # Prerequisites +```{toctree} +:hidden: + +vc +dotnet +xna +dx +``` + Since we encourage developers to ship [portable builds](../platforms/windows.md), the app supports installing frameworks or libraries your game might depend on. Here's how it looks for users: @@ -48,4 +57,3 @@ Each category of prerequisite has its own page: If your game needs a prerequisite that's not on the list, please [open an issue](https://github.com/itchio/itch/issues/new) so we can add it to our repository. Please consult the list of [requested prerequisites](https://github.com/itchio/itch/labels/prereqs) first to avoid opening duplicate requests! - diff --git a/integrating/prereqs/dotnet.md b/docs/integrating/prereqs/dotnet.md similarity index 99% rename from integrating/prereqs/dotnet.md rename to docs/integrating/prereqs/dotnet.md index d0e644d..4dd677c 100644 --- a/integrating/prereqs/dotnet.md +++ b/docs/integrating/prereqs/dotnet.md @@ -1,4 +1,3 @@ - # .NET Framework * `net-4.6.2`: Microsoft .NET Framework 4.6.2 diff --git a/integrating/prereqs/dx.md b/docs/integrating/prereqs/dx.md similarity index 75% rename from integrating/prereqs/dx.md rename to docs/integrating/prereqs/dx.md index 2de3517..4cc9ccd 100644 --- a/integrating/prereqs/dx.md +++ b/docs/integrating/prereqs/dx.md @@ -1,8 +1,7 @@ - # DirectX -### June 2010 +## June 2010 * `dx-june-2010`: DirectX End-User Runtime (June 2010) -*See the global [Prerequisites documentation](./README.md) to learn how to add prerequisites to your game and what to do if the prerequisites or version you need isn't listed.* \ No newline at end of file +*See the global [Prerequisites documentation](./README.md) to learn how to add prerequisites to your game and what to do if the prerequisites or version you need isn't listed.* diff --git a/integrating/prereqs/user-flow.gif b/docs/integrating/prereqs/user-flow.gif similarity index 100% rename from integrating/prereqs/user-flow.gif rename to docs/integrating/prereqs/user-flow.gif diff --git a/integrating/prereqs/vc.md b/docs/integrating/prereqs/vc.md similarity index 99% rename from integrating/prereqs/vc.md rename to docs/integrating/prereqs/vc.md index e4e2be9..716e288 100644 --- a/integrating/prereqs/vc.md +++ b/docs/integrating/prereqs/vc.md @@ -1,4 +1,3 @@ - # Visual C++ Runtime The following versions of the Visual C++ Runtime are available: diff --git a/integrating/prereqs/xna.md b/docs/integrating/prereqs/xna.md similarity index 84% rename from integrating/prereqs/xna.md rename to docs/integrating/prereqs/xna.md index fa3e82f..ecdd44c 100644 --- a/integrating/prereqs/xna.md +++ b/docs/integrating/prereqs/xna.md @@ -1,8 +1,7 @@ - # XNA Framework The following versions of the XNA Framework are available: * `xna-4.0`: Microsoft XNA Freamwork Redistributable 4.0 Refresh -*See the global [Prerequisites documentation](./README.md) to learn how to add prerequisites to your game and what to do if the prerequisites or version you need isn't listed.* \ No newline at end of file +*See the global [Prerequisites documentation](./README.md) to learn how to add prerequisites to your game and what to do if the prerequisites or version you need isn't listed.* diff --git a/integrating/quickstart.md b/docs/integrating/quickstart.md similarity index 96% rename from integrating/quickstart.md rename to docs/integrating/quickstart.md index d7bb10d..ecdc87e 100644 --- a/integrating/quickstart.md +++ b/docs/integrating/quickstart.md @@ -1,5 +1,14 @@ # Game developer quick start +```{toctree} +:hidden: + +platforms/windows +platforms/macos +platforms/linux +platforms/web +``` + Chances are, your software already works with [the itch.io app](https://itch.io/app). But **keep reading!** This page also contains best practices. diff --git a/integrating/sandbox.md b/docs/integrating/sandbox.md similarity index 81% rename from integrating/sandbox.md rename to docs/integrating/sandbox.md index 60e5732..f25a755 100644 --- a/integrating/sandbox.md +++ b/docs/integrating/sandbox.md @@ -1,4 +1,6 @@ - +--- +orphan: true +--- # The itch.io sandbox (for game developers) The itch.io sandbox tries to prevent several typical attacks @@ -10,7 +12,7 @@ will: * On Linux, be more permissive about writes, but redirect them to a safe, per-game folder * On Windows, run games as a different, less-privileged user -### Additional notes +## Additional notes It shouldn't be possible to escape the sandbox by forking/spawning/execing. @@ -21,10 +23,10 @@ The sandbox makes no attempts to protect against: It's not the answer to everything, but running games via the sandbox is much safer than not doing so. -### Implementation +## Implementation For implementation details, please refer to the following platform-specific pages: - * [Windows sandboxing](sandbox/windows.md) - * [macOS sandboxing](sandbox/macos.md) - * [Linux sandboxing](sandbox/linux.md) + * [Windows sandboxing](../using/sandbox/windows.md) + * [macOS sandboxing](../using/sandbox/macos.md) + * [Linux sandboxing](../using/sandbox/linux.md) diff --git a/integrating/tags.png b/docs/integrating/tags.png similarity index 100% rename from integrating/tags.png rename to docs/integrating/tags.png diff --git a/integrating/troubleshooting-guide.md b/docs/integrating/troubleshooting-guide.md similarity index 91% rename from integrating/troubleshooting-guide.md rename to docs/integrating/troubleshooting-guide.md index 443e474..3b38e24 100644 --- a/integrating/troubleshooting-guide.md +++ b/docs/integrating/troubleshooting-guide.md @@ -2,7 +2,7 @@ Here's a list of common situations and how to solve them. -### "Game is not available on this platform" +## "Game is not available on this platform" If you're seeing this, your uploads are not tagged properly. @@ -14,7 +14,7 @@ If you [push your builds using butler](https://itch.io/docs/butler), then just c > Using [butler](https://itchio/docs/butler) to push your builds is **strongly recommended**. Learn more about the benefits by reading the [Compatibility policy](/integrating/compatibility-policy.md) page. -### The wrong thing is launched +## The wrong thing is launched There's two ways to fix this. @@ -22,7 +22,7 @@ The first is to **simplify your directory structure**. Your app might need other The second is to [**ship an app manifest**](/integrating/manifest.md) that explicitly lists what needs to be launched. A manifest also lets you specify **prerequisites** \(VC++, DirectX, XNA, OpenAL etc.\) that your game needs, so even if you have a single launch target, read the docs anyway.[^1] -### The game / application crashes +## The game / application crashes As of itch 25.x, any crash will show you a modal with very useful info. @@ -37,7 +37,7 @@ This should let you evaluate whether it's more likely that: * The itch.io app is at fault * In which case don't untick the checkbox, we'll take a look at your report! -### Something's wrong with my HTML5 game +## Something's wrong with my HTML5 game Press `Shift+F12` to open up the Chrome Developer Tools, and see what went wrong. @@ -45,11 +45,10 @@ Enter `navigator.appVersion` then press Enter in the Console to check what versi ![](/assets/html5-devtools.png) -### It says it's still running, but I closed the game / application! +## It says it's still running, but I closed the game / application! On Windows 8 and up, the itch app will wait for the entire process tree to quit. If it says it's still running, _something_ hasn't exited yet. You can use force close to kill it, but with great power comes great responsibility. [^1]: Speaking of, you're reading docs right now. Big up to you! We appreciate it a lot. [^2]: If you happen to be developing the game/application in question, save valuable time by skipping the "contacting yourself" phase, going straight to "fixing the bug". - diff --git a/integrating/updates.md b/docs/integrating/updates.md similarity index 100% rename from integrating/updates.md rename to docs/integrating/updates.md diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 0000000..954237b --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=. +set BUILDDIR=_build + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +if "%1" == "" goto help + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/using/README.md b/docs/using/README.md similarity index 58% rename from using/README.md rename to docs/using/README.md index c364767..8a27838 100644 --- a/using/README.md +++ b/docs/using/README.md @@ -4,3 +4,13 @@ This chapter describes how to use the itch app. It only tries to describes the parts that are non-obvious from the interface. + +```{toctree} +:hidden: + +installing/README +login +preferences +downloading +installing/known-issues +``` diff --git a/using/collections.md b/docs/using/collections.md similarity index 99% rename from using/collections.md rename to docs/using/collections.md index da5559c..0262b19 100644 --- a/using/collections.md +++ b/docs/using/collections.md @@ -7,4 +7,3 @@ In the **Collections** tab, you can see a list of your collections, which can be ## Editing collections from within the app ...is not yet possible. Although, you can click the **Add to collection **button from the in-game browser \(if the window is wide enough\), and you can access the [https://itch.io/my-collections](https://itch.io/my-collections) page. - diff --git a/using/downloading.md b/docs/using/downloading.md similarity index 95% rename from using/downloading.md rename to docs/using/downloading.md index 7c9d374..c7e2f05 100644 --- a/using/downloading.md +++ b/docs/using/downloading.md @@ -1,5 +1,12 @@ # Downloading games +```{toctree} +:hidden: + +install-locations +collections +``` + You can find games by using the in-app browser: it lets you access the entire itch.io website. ![](/assets/itchio-website.png) diff --git a/using/install-locations.md b/docs/using/install-locations.md similarity index 69% rename from using/install-locations.md rename to docs/using/install-locations.md index 442e35e..696d846 100644 --- a/using/install-locations.md +++ b/docs/using/install-locations.md @@ -2,7 +2,9 @@ Install locations are folders that the itch app installs games to. The initial install location is in a folder your user has write access to without requiring administrator rights. -_That's why games aren't installed to _`Program Files`_ on Windows. As a rule, the app can be installed and used without ever asking for Administrator privileges, except for _[_sandbox setup_](sandbox.md)_ or third-party installers._ +```{hint} +That's why games aren't installed to _`Program Files`_ on Windows. As a rule, the app can be installed and used without ever asking for Administrator privileges, except for _[_sandbox setup_](sandbox.md)_ or third-party installers. +``` ## Adding another install location diff --git a/installing/README.md b/docs/using/installing/README.md similarity index 83% rename from installing/README.md rename to docs/using/installing/README.md index b5617a3..4bc4346 100644 --- a/installing/README.md +++ b/docs/using/installing/README.md @@ -1,14 +1,22 @@ # Installing itch +```{toctree} +:hidden: + +windows +macos +linux/README.md +``` + You can download the latest version of the app from [https://itch.io/app](https://itch.io/app). Additionally, there are .deb and .rpm repositories, and AUR packages. To learn more, refer to: -* [Installing on Windows](windows.md) -* [Installing on macOS](macos.md) -* [Installing on Linux](linux/README.md) +* [Installing on Windows](windows) +* [Installing on macOS](macos) +* [Installing on Linux](linux/README) Release notes for all versions are available [on GitHub](https://github.com/itchio/itch/releases). diff --git a/installing/canary.md b/docs/using/installing/canary.md similarity index 64% rename from installing/canary.md rename to docs/using/installing/canary.md index d63f73e..c3e7e6b 100644 --- a/installing/canary.md +++ b/docs/using/installing/canary.md @@ -1,9 +1,10 @@ - +--- +orphan: true +--- # The canary version If you're interested in helping us kill bugs before they even reach the stable -version, you can check out [the canary -channel](../developing/continuous-deployment.md#the-canary-channel). +version, you can check out [the canary channel](../../developing/continuous-deployment.md#the canary channel). It's a bleeding-edge, often-updated version of the app with *no guarantee of stability* that you can install in parallel with the stable app. diff --git a/installing/dependencies.md b/docs/using/installing/dependencies.md similarity index 100% rename from installing/dependencies.md rename to docs/using/installing/dependencies.md diff --git a/installing/known-issues.md b/docs/using/installing/known-issues.md similarity index 81% rename from installing/known-issues.md rename to docs/using/installing/known-issues.md index bb6cfdc..be454bf 100644 --- a/installing/known-issues.md +++ b/docs/using/installing/known-issues.md @@ -2,7 +2,7 @@ Here's a list of issues we know about, that you may be experiencing. -### Installer for macOS fails to launch the first time +## Installer for macOS fails to launch the first time When launching the installer on macOS for the first time, you'll get the "This file has been downloaded from the internet" prompt. @@ -10,7 +10,7 @@ When launching the installer on macOS for the first time, you'll get the Pressing "OK" is remembered, but the first launch doesn't do anything. Opening "Install itch.app" a second time does work. -### Overriding the default directory in installer-based games causes issues on computers with multiple user accounts. +## Overriding the default directory in installer-based games causes issues on computers with multiple user accounts. The details of this issue can be found at https://github.com/itchio/itch/issues/1279 diff --git a/installing/linux/README.md b/docs/using/installing/linux/README.md similarity index 95% rename from installing/linux/README.md rename to docs/using/installing/linux/README.md index ddf1f58..1198fc4 100644 --- a/installing/linux/README.md +++ b/docs/using/installing/linux/README.md @@ -1,5 +1,14 @@ # Installing on Linux +```{toctree} +:hidden: + +ubuntu-and-debian +fedora +archlinux +gentoo +``` + These instructions apply to itch v25 and up. > If you have an older version of the app installed, uninstall it before @@ -39,4 +48,3 @@ Run `~/.itch/itch-setup --uninstall` to uninstall itch from your system. > along with any additional install locations you have added from the app. > > If you really want to uninstall everything, you'll have to take care of that folder as well. - diff --git a/installing/linux/archlinux.md b/docs/using/installing/linux/archlinux.md similarity index 52% rename from installing/linux/archlinux.md rename to docs/using/installing/linux/archlinux.md index b6faa01..9c99a4a 100644 --- a/installing/linux/archlinux.md +++ b/docs/using/installing/linux/archlinux.md @@ -2,5 +2,4 @@ As of v25, itch comes with its own installer and self-updater. -For more information, see the [Installing on linux](/installing/linux/README.md) page. - +For more information, see the [Installing on linux](README) page. diff --git a/installing/linux/fedora.md b/docs/using/installing/linux/fedora.md similarity index 51% rename from installing/linux/fedora.md rename to docs/using/installing/linux/fedora.md index c0f95e5..6107447 100644 --- a/installing/linux/fedora.md +++ b/docs/using/installing/linux/fedora.md @@ -2,4 +2,4 @@ As of v25, itch comes with its own installer and self-updater. -For more information, see the [Installing on linux](/installing/linux/README.md) page. +For more information, see the [Installing on linux](README) page. diff --git a/installing/linux/gentoo.md b/docs/using/installing/linux/gentoo.md similarity index 51% rename from installing/linux/gentoo.md rename to docs/using/installing/linux/gentoo.md index 2d38162..3f20f45 100644 --- a/installing/linux/gentoo.md +++ b/docs/using/installing/linux/gentoo.md @@ -2,4 +2,4 @@ As of v25, itch comes with its own installer and self-updater. -For more information, see the [Installing on linux](/installing/linux/README.md) page. +For more information, see the [Installing on linux](README) page. diff --git a/installing/linux/ubuntu-and-debian.md b/docs/using/installing/linux/ubuntu-and-debian.md similarity index 53% rename from installing/linux/ubuntu-and-debian.md rename to docs/using/installing/linux/ubuntu-and-debian.md index e09b0c7..6227dbf 100644 --- a/installing/linux/ubuntu-and-debian.md +++ b/docs/using/installing/linux/ubuntu-and-debian.md @@ -2,4 +2,4 @@ As of v25, itch comes with its own installer and self-updater. -For more information, see the [Installing on linux](/installing/linux/README.md) page. +For more information, see the [Installing on linux](README) page. diff --git a/installing/macos.md b/docs/using/installing/macos.md similarity index 98% rename from installing/macos.md rename to docs/using/installing/macos.md index 351d468..97f2ce3 100644 --- a/installing/macos.md +++ b/docs/using/installing/macos.md @@ -10,7 +10,7 @@ Note: before v25, itch used to install in `/Applications/itch.app`. It now insta per-user, in `~/Applications/itch.app`. You might want to remove the former before (or after) installing itch v25. -### Verifying the app +## Verifying the app All our OSX binaries are signed by a Developer ID certificate to the name of [Amos Wenger](https://github.com/fasterthanlime), and you can verify them by running the following command in a terminal: diff --git a/installing/osx-dmg.png b/docs/using/installing/osx-dmg.png similarity index 100% rename from installing/osx-dmg.png rename to docs/using/installing/osx-dmg.png diff --git a/installing/update-dialog.png b/docs/using/installing/update-dialog.png similarity index 100% rename from installing/update-dialog.png rename to docs/using/installing/update-dialog.png diff --git a/installing/win10-security-warning.png b/docs/using/installing/win10-security-warning.png similarity index 100% rename from installing/win10-security-warning.png rename to docs/using/installing/win10-security-warning.png diff --git a/installing/win10-uninstall.png b/docs/using/installing/win10-uninstall.png similarity index 100% rename from installing/win10-uninstall.png rename to docs/using/installing/win10-uninstall.png diff --git a/installing/windows-code-signature.png b/docs/using/installing/windows-code-signature.png similarity index 100% rename from installing/windows-code-signature.png rename to docs/using/installing/windows-code-signature.png diff --git a/installing/windows-uninstall.png b/docs/using/installing/windows-uninstall.png similarity index 100% rename from installing/windows-uninstall.png rename to docs/using/installing/windows-uninstall.png diff --git a/installing/windows.md b/docs/using/installing/windows.md similarity index 97% rename from installing/windows.md rename to docs/using/installing/windows.md index 6b8f069..5adcbee 100644 --- a/installing/windows.md +++ b/docs/using/installing/windows.md @@ -5,7 +5,7 @@ If you encounter any problems installing the app, get in touch with [itch.io support](https://itch.io/support). -### Verifying the installer +## Verifying the installer All our installers, along with the application itself, are digitally signed with a certificate to the name of **itch corp**. @@ -17,7 +17,7 @@ _Open this dialog by right-clicking the installer, and choosing 'Properties'._ > > \(Even the [canary version](./canary.md) is digitally signed with the same certificate.\) -### Antivirus software +## Antivirus software We often release new version of the itch.io app or the components it depends on. @@ -53,6 +53,3 @@ For older Windows versions, use the Control Panel as usual. > Note: uninstalling the itch.io app does not wipe the `%APPDATA%\itch` folder, which contains all your installed games, local database, web session data and cache, and so on. > > If you really want to delete it all, you'll need to take care of that folder too. - - - diff --git a/using/login.md b/docs/using/login.md similarity index 65% rename from using/login.md rename to docs/using/login.md index 5ad6833..9596cc1 100644 --- a/using/login.md +++ b/docs/using/login.md @@ -1,19 +1,28 @@ # Logging in +```{toctree} +:hidden: + +offline +``` + The first time the app starts, it will ask you for your itch.io username \(or e-mail\) and password. ![](/assets/login.png) -_Note: It is not possible to use the app anonymously at the moment, although downloading -or even purchasing is possible on the _[https://itch.io](https://itch.io)_ website without an account._ +```{note} +It is not possible to use the app anonymously at the moment, although downloading or even purchasing is possible on the _[https://itch.io](https://itch.io)_ website without an account. +``` ## Captcha You may have to fill in a captcha to complete the login procedure. This helps us keep the spammers at bay. -> We're as annoyed by this as you are. Sorry :\( -> -> We know you're not a robot. Robots don't read the docs! +```{note} +We're as annoyed by this as you are. Sorry 😞. + +We know you're not a robot. Robots don't read the docs! +``` ## Two-factor authentication @@ -28,4 +37,3 @@ You can log in with multiple user accounts from the itch app. Each profile has i ![](/assets/multiprofile.png) However, downloads and installed games are shared between all profiles. - diff --git a/using/offline.md b/docs/using/offline.md similarity index 99% rename from using/offline.md rename to docs/using/offline.md index 1974118..50e9949 100644 --- a/using/offline.md +++ b/docs/using/offline.md @@ -5,4 +5,3 @@ It is possible to use the itch app offline. If you've logged in at least once su If you just lose your network access while the app is running, it'll keep launching games, showing your collections, and searching your local library. _Note: when offline, the main search bar won't display online results for reasons that are hopefully self-explanatory._ - diff --git a/using/preferences.md b/docs/using/preferences.md similarity index 90% rename from using/preferences.md rename to docs/using/preferences.md index 884b79b..d14fbe2 100644 --- a/using/preferences.md +++ b/docs/using/preferences.md @@ -1,8 +1,14 @@ # User preferences +```{toctree} +:hidden: + +sandbox +proxy +``` + User preferences can be accessed from the user menu, or by using the keyboard shortcut `Ctrl+,` \(`Command+,` on macOS\). ![](/assets/preferences.png) Preferences apply to a particular install of itch on a machine, for all itch.io sessions using it: sessions share languages, install locations, and so on. They're distinct from [itch.io user settings](https://itch.io/user/settings). - diff --git a/using/proxy.md b/docs/using/proxy.md similarity index 84% rename from using/proxy.md rename to docs/using/proxy.md index af93286..3d1fb34 100644 --- a/using/proxy.md +++ b/docs/using/proxy.md @@ -6,7 +6,8 @@ The app will attempt to detect your system settings \(Windows, Linux, macOS, etc For example, if your HTTP\(S\) proxy is running locally, on port 8081, you would set the value of `HTTP_PROXY` to `localhost:8081`. -_Here's a guide to to _[_setting an environment variable on Windows_](http://www.computerhope.com/issues/ch000549.htm) +```{hint} +Here's a guide to [setting an environment variable on Windows](http://www.computerhope.com/issues/ch000549.htm) +``` The preferences tab will show if any proxy settings are active, and where it got them from \(system or environment\). When setting an environment variable, you need to restart the app \(`Ctrl+Q`, `Command+Q` on macOS, then relaunch\) for it to take effect. - diff --git a/using/sandbox.md b/docs/using/sandbox.md similarity index 92% rename from using/sandbox.md rename to docs/using/sandbox.md index 12f36ba..b27b4e9 100644 --- a/using/sandbox.md +++ b/docs/using/sandbox.md @@ -1,5 +1,13 @@ # The itch.io sandbox +```{toctree} +:hidden: + +sandbox/windows +sandbox/macos +sandbox/linux +``` + The itch.io sandbox tries to prevent several typical attacks a malicious game could run on a computer. For example, the sandbox will: @@ -11,7 +19,7 @@ For example, the sandbox will: ## Scope -Attacks that the itch.io sandbox try to prevent include: +Attacks that the itch.io sandbox tries to prevent include: ### Stealing your itch.io credentials @@ -41,6 +49,3 @@ For implementation details, please refer to the following platform-specific page * [Windows sandboxing](sandbox/windows.md) * [macOS sandboxing](sandbox/macos.md) * [Linux sandboxing](sandbox/linux.md) - - - diff --git a/using/sandbox/linux.md b/docs/using/sandbox/linux.md similarity index 100% rename from using/sandbox/linux.md rename to docs/using/sandbox/linux.md diff --git a/using/sandbox/macos.md b/docs/using/sandbox/macos.md similarity index 99% rename from using/sandbox/macos.md rename to docs/using/sandbox/macos.md index 1f69449..0ae8aee 100644 --- a/using/sandbox/macos.md +++ b/docs/using/sandbox/macos.md @@ -1,4 +1,3 @@ - # macOS sandboxing The itch.io sandbox uses built-in macOS facility `sandbox-exec`. diff --git a/using/sandbox/windows.md b/docs/using/sandbox/windows.md similarity index 99% rename from using/sandbox/windows.md rename to docs/using/sandbox/windows.md index 5e28d4f..972a80f 100644 --- a/using/sandbox/windows.md +++ b/docs/using/sandbox/windows.md @@ -1,4 +1,3 @@ - # Windows sandboxing ## One-time setup diff --git a/integrating/README.md b/integrating/README.md deleted file mode 100644 index 677c03b..0000000 --- a/integrating/README.md +++ /dev/null @@ -1,13 +0,0 @@ - -# Game developer guide - -This chapter describes how to distribute software that can be installed -and ran with the itch app. - -Often, you'll find it disappointingly simple (most things should work out -of the box). Nevertheless, this chapter is useful for special cases, or -for creators willing to go the extra mile when integrating with it. - -*Note: even though the word 'game' is used throughout this guide, it applies -equally to other kinds of software. Games just happen to be the most popular -kind of software installed with the app!* diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index f23a080..0000000 --- a/package-lock.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "name": "itch-docs", - "version": "1.0.0", - "lockfileVersion": 2, - "requires": true, - "packages": { - "": { - "name": "itch-docs", - "version": "1.0.0", - "dependencies": { - "@itchio/bob": "^2.1.0" - } - }, - "node_modules/@itchio/bob": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@itchio/bob/-/bob-2.1.0.tgz", - "integrity": "sha512-R6WgCYp49xBNEIEFJ+tnkDdNcpKhne9tJMM17CLfA5crq4F8/c0r2O0yQOBJWgPuORkhIQOq9E887JHL3tuWmA==" - } - }, - "dependencies": { - "@itchio/bob": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@itchio/bob/-/bob-2.1.0.tgz", - "integrity": "sha512-R6WgCYp49xBNEIEFJ+tnkDdNcpKhne9tJMM17CLfA5crq4F8/c0r2O0yQOBJWgPuORkhIQOq9E887JHL3tuWmA==" - } - } -} diff --git a/package.json b/package.json deleted file mode 100644 index 30f13ae..0000000 --- a/package.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "itch-docs", - "version": "1.0.0", - "description": "The complete manual to the itch app", - "main": "index.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "author": "", - "dependencies": { - "@itchio/bob": "^2.1.0" - } -} diff --git a/release/ci-book.js b/release/ci-book.js deleted file mode 100644 index 0fe0563..0000000 --- a/release/ci-book.js +++ /dev/null @@ -1,31 +0,0 @@ -//@ts-check -"use strict"; - -const { cd, $, $$ } = require("@itchio/bob"); - -async function main() { - $(`npm version`); - $(`npm install -g gitbook-cli`); - - if (process.env.CI) { - // cf. https://github.com/GitbookIO/gitbook-cli/issues/110#issuecomment-669640662 - let npm_prefix = $$(`npm config get prefix`).trim(); - await cd( - `${npm_prefix}/lib/node_modules/gitbook-cli/node_modules/npm/node_modules`, - async () => { - $(`npm install graceful-fs@4.1.4 --save`); - } - ); - } - - $(`gitbook install`); - $(`gitbook build`); - - if (process.env.CI_BUILD_REF_NAME) { - $(`gsutil -m cp -r -a public-read _book/* gs://docs.itch.ovh/itch/${process.env.CI_BUILD_REF_NAME}/`); - } else { - console.warn("Skipping uploading book, no CI_BUILD_REF_NAME environment variable set") - } -} - -main(); diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..07969c7 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,34 @@ +alabaster==0.7.16 +Babel==2.14.0 +beautifulsoup4==4.12.3 +certifi==2024.2.2 +charset-normalizer==3.3.2 +colorama==0.4.6 +docutils==0.20.1 +furo==2024.1.29 +idna==3.6 +imagesize==1.4.1 +Jinja2==3.1.3 +markdown-it-py==3.0.0 +MarkupSafe==2.1.5 +mdit-py-plugins==0.4.0 +mdurl==0.1.2 +myst-parser==2.0.0 +packaging==23.2 +Pygments==2.17.2 +PyYAML==6.0.1 +requests==2.31.0 +snowballstemmer==2.2.0 +soupsieve==2.5 +Sphinx==7.2.6 +sphinx-basic-ng==1.0.0b2 +sphinx-rtd-theme==2.0.0 +sphinx_tippy==0.4.1 +sphinxcontrib-applehelp==1.0.8 +sphinxcontrib-devhelp==1.0.6 +sphinxcontrib-htmlhelp==2.0.5 +sphinxcontrib-jquery==4.1 +sphinxcontrib-jsmath==1.0.1 +sphinxcontrib-qthelp==1.0.7 +sphinxcontrib-serializinghtml==1.1.10 +urllib3==2.2.1