no message

This commit is contained in:
kjeld Schouten-Lebbing 2022-01-16 16:15:58 +01:00
parent 9f46c428d0
commit 86f8f54c70
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
3 changed files with 21 additions and 2 deletions

View File

@ -1,2 +1,21 @@
# trueupdate
A TrueCharts automatic and bulk update utility
## How to install
run `pip install trueupdate`
Please be aware you will need to reinstall after every SCALE update
## How to Update
run `pip install --upgrade trueupdate`
## How to use
Just run `trueupdate` in the shell of your TrueNAS SCALE machine, to have it process Patch and Minor version updates for all Apps
Additional options are available:
- `trueupdate CATALOG` where CATALOG is the name of the catalog you want to process in caps
- `trueupdate Semver` where semver is the highest semver version you want to process. options: `patch`, `minor` and `major`

View File

@ -7,7 +7,7 @@ README_MD = open(join(dirname(abspath(__file__)), "README.md")).read()
setup(
name="trueupdate",
version="1.0.2",
version="1.0.3",
# The packages that constitute your project.
# For my project, I have only one - "pydash".

View File

@ -1,4 +1,4 @@
import trueupdate
def main():
print trueupdate.run()
trueupdate.run()