To build from source you have two choices.
- Download bootstrap.ps1 and run as a powershell script
- In the dialog that shows up, select a build directory (should be a clean/new one)
- This script will try to download and install all dependencies, then check out and build vortex
- The dependencies are not installed headless so you have to click through the dialogs but it's only guaranteed to work if you keep the defaults
- Before you can build vortex you need to download and install a couple of dependencies. If any of the download links is no longer valid, try google or a search engine of your choice.
- Download installer from nodejs.org and run the installer
- Version should not matter, the latest LTS version should be fine
- Verify that Node has installed successfully by running
node --version
in your cmd or terminal
- Run
npm install --global yarn
- Verify that Yarn has installed successfully by running
yarn --version
in your cmd or terminal
- Download installer (64-bit) from git-scm.com and run installer
- Verify that Git has installed successfully byb running
git --version
in your cmd or terminal
- Required for one of the build tools (node-gyp). At the time of writing versions 3.7-3.10 are known to work
- Download installer (64-bit) from python.org and run installer
- Make sure to have it added to
PATH
, otherwise defaults are fine.- If you have trouble refer to How to add Python to PATH variable in Windows
- You can disable samples and documentation if you want
- Download installer from visualstudio.microsoft.com
- You may have to google around for this as Microsoft tends to change their sitemap all the bloody time
- In the installer, make sure you enable the build tools themselves, the latest windows SDK (version doesn't actually matter) and ATL headers. Everything else is optional.
- Run
yarn config set msvs_version 2022 --global
- This sets up yarn to use the c++ build tools we just installed, you probably only need to do this if you've also installed other versions of Visual Studio. Can't hurt though
- Create and
cd
to an appropriate directory (i.e. c:\projects) git clone https://github.com/Nexus-Mods/Vortex.git
from the created directory- this should create a new directory vortex in the current working directory (i.e. c:\projects\vortex)
- Go into the vortex directory
cd vortex
- Switch to an appropriate branch, if necessary
git checkout some_branch
- For development
yarn install
to install dependenciesyarn build
to buildyarn start
to run
- For production
- The scripts (electron-builder-oneclick.json and electron-builder-advanced.json) are set up to require code signing with a certificate you don't have so change that
yarn dist
to build (this will take a while)- Find the installer and an already unpacked version in dist
The build tools are unfortunately not particularly robust, so the build may break for various reasons (i.e. network problems, dependencies that changed remotely, ...) and leave the checkout in an inconsistent state. In that case you will have to see if the error is something that needs to be fixed, then restart from the last step that failed.
The automatic variant will skip dependency download and install if the download was installed previously. If a dependency install failed for some reason or you cancelled it, you will have to manually install that package (see the downloads directory).
- see structure.md for an overview of how the project is organized
- see https://nexus-mods.github.io/vortex-api for a description of the extension api
- see https://wiki.nexusmods.com/index.php/Vortex for usage information
Please report issues to the issue tracker on github. Please always include at the very least the following information:
- The exact version of Vortex you're using
- Your operating system
- What you were doing when the bug happened
- What exactly the bug is (crash? error messages? unexpected behaviour?)
- If you get any error message, include the full and exact error message. Do not paraphrase, do not leave out information that looks cryptic or unimportant to you
- The log file (see below)
- Ideally also the application state (see below)
All data the client generates (including settings and logs) are stored at
C:\Users\<username>\AppData\Roaming\Vortex (releases)
or
C:\Users\<username>\AppData\Roaming\vortex_devel (development build)
If you need to report a bug, the following files inside that directory may be useful in addition to the error message displayed on screen:
- vortex.log (logs are rotated at a certain size, this is the latest one)
- state\* except global_account (that one contains keys and passwords so sensitive information)
- <game>\state* (if the bug pertains to a specific game)