1
0
mirror of https://github.com/hughrun/ephemetoot synced 2025-02-11 08:50:51 +01:00
Hugh Rundle 0ce796c87e add --retry-mins option
This commit adds a --retry-mins option to enable users to choose how many minutes pass
between attempts to retry a toot deletion when there is an error.

Also re-organises documentation and bumps version to 2.6.
2020-08-23 16:53:03 +10:00

37 lines
939 B
Markdown

# Upgrade or uninstall
## Upgrading
### Upgrading with git
To upgrade to a new version using git, run the following from inside the `ephemetoot` directory:
```shell
git fetch --tags
git checkout [tagname]
pip install .
```
### Upgrading with a ZIP file
To upgrade without using git:
* put your config file somewhere safe
* download and unzip the zip file into your `ephemetoot` directory over the top of your existing installation
* move your config file back in to the ephemetoot directory
* run `pip install .` from within the directory
## Uninstalling
Uninstall using pip:
```shell
pip uninstall ephemetoot
```
If you scheduled a `launchd` job on MacOS using `--schedule`, you will also need to unload and remove the scheduling file:
```shell
launchctl unload ~/Library/LaunchAgents/ephemetoot.scheduler.plist
rm ~/Library/LaunchAgents/ephemetoot.scheduler.plist
```
---
* [Installation](./install.md)
* [Options](./options.md)