This utility provides an alternative to the Twitch/Curse client for management and updating of addons for World of Warcraft. The Twitch/Curse client is rather bloated and buggy, and comes with many features that most users will not ever use in the first place. This utility, however, is lightweight and makes it very easy to manage which addons are being updated, and to update them just by running a python script.
Supporting retail, classic, tbc, and wrath addons!
The best way to get the latest stable code is to head to the Latest Releases page, or checking out the master
branch.
If you're feeling adventurous, you can also download the latest (possibly unstable) develop
branch.
You should already have pip
included with your Python installation.
This is the default package manager for Python.
You can check by running pip --version
on the command line.
If it's not there, download the latest version of Python for your platform, and check the box during installation to include pip
.
It's recommended you manage the dependencies with pipenv
. All you need to do is run the following on the command line to install pipenv
and the dependencies:
cd wow-addon-updater/
pip install pipenv
pipenv install
The packages will be automagically installed by pipenv
to a local virtual environment.
If the utility reports that there are updates available from this repo, simply extract the new version into the directory where you store the previous version. Be careful not to stomp on any input or configuration files that you would like to save (e.g. config.ini
, addons.txt
, or installed.ini
)
After performing the setup steps, you can run the executable scripts by clicking either:
run_Windows.bat
for Windows or run_MacLinux.sh
for other platforms.To run directly from the command line, use pipenv run
:
pipenv run python -m updater [-c FILE]
Alternatively you can install the python module and have a command named wow-addon-updater
available:
pipenv install
pipenv shell
# Make sure you're in a virtual environment! pipenv shell should place you in the venv
# created by `pipenv install` but to be sure you can check with `which python` and
# verify that it's $VIRTUAL_ENV/bin/python
# Either using the distutils method
python setup.py install
# Or using pip
pip install .
# Make sure the command is where we expect
which wow-addon-updater
# This should output $VIRTUAL_ENV/bin/wow-addon-updater
More advanced usage includes optionally specifying a configuration file, which is detailed in the next section.
Occasionally, this utility may fail to download files from sites. This is generally caused by an update to Cloudflare's anti-bot page, and can be fixed by updating the cloudscraper module.
To update this module from the command line, use pipenv update
:
cd wow-addon-updater/
pipenv update
After updating, re-run the utility to attempt updating the affected addons.
The config.ini
file is used by default to find where to install the addons to, and where to get the list of addons from.
It requires that some properties be set, if you do not want to use the defaults such as:
WoW Addon Location
/Applications/World of Warcraft/Interface/AddOns
)= C:\Program Files (x86)\World of Warcraft\_retail_\Interface\AddOns
)Addon List File
addons.txt
in the same directory as the utility.= addons.txt
)Installed Versions File
= installed.ini
)Game Version
retail
, classic
, tbc
, or wrath) that you would like to target for addons = retail
)GitHub
SectionTo support a higher API request limit, you can add your own personal GitHub access token to the configuration. The tool will use the token when making requests to GitHub, reducing the chance of you being rate-limited.
To use, uncomment the section in the config.ini
, and populate the token
with a value.
The module supports a command-line configuration for maintaining multiple set of addons. For example, a set of addons for retail, and a different set of addons for classic.
To use a different configuration file, specify it with the --config
flag (or -c
) e.g.
pipenv run python -m updater -c my-custom-config.ini
The following hosts are supported as download targets. The URL specified should be to the main page of the addon, or in the case of GitHub, to the root of the repository.
Retail | Classic | |
---|---|---|
Curse | ✅ | ✅ |
WoWAce | ✅ | ✅ |
WoWInterface | ✅ | ✅ |
GitHub | ✅ | ✅ |
Tukui | ✅ | ✅ |
Whatever file you use for your list of addons needs to be formatted in a particular way. Each line corresponds to an addon, and the line just needs to contain the link to the page for the addon. For example:
https://www.curseforge.com/wow/addons/world-quest-tracker
https://www.curseforge.com/wow/addons/deadly-boss-mods
https://www.curseforge.com/wow/addons/auctionator
https://www.wowinterface.com/downloads/info24005-RavenousMounts.html
https://www.github.com/some-user/some-addon-repo
https://www.tukui.org/classic-addons.php?id=2
Each link needs to be the main page for the addon, as shown above.
NOTE: Tukui addon URLs should point to the standard download page, and not the git repo. i.e. https://www.tukui.org/classic-addons.php?id=2 and not https://git.tukui.org/elvui/elvui|ElvUI
If you want to extract a subfolder from the default downloaded folder, add a pipe character (|
) and the name of the subfolder at the end of the line. For example, the ElvUI addon can be added as follows:
https://www.github.com/some-user/some-addon-repo|AddOn
If you are running a beta or PTR version of the game or are simply interested in testing out the latest features of an addon, you may want to update as
alpha or beta versions are released. You can specify which version releases you would like to follow by including alpha
or beta
after a space following the addon URL, see below:
https://www.curseforge.com/wow/addons/deadly-boss-mods beta
https://www.curseforge.com/wow/addons/auctionator alpha
The updater will follow a hierarchy of release versions, meaning that tracking the "alpha" releases will pull more recent beta or full releases. Likewise, following beta will pull newer full release versions while ignoring alpha releases.
Omitting the release option or incorrectly specifying it will automatically fall back on tracking the offical release track.
Bring up the dev pipenv
with:
pipenv install --dev
Run tests with:
pipenv run python -m unittest -v
or tests with coverage:
pipenv run coverage run --source=updater -m unittest -v
pipenv run coverage report
Updating deps in setup.py:
pipenv-setup sync -d
This is only available to the repo owner.
VERSION
fileCHANGELOG.md
Shout out to GitHub user kuhnertdm
for establishing the original base of this utility, and giving people an alternative to the wasteland of mainstream clients.