├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── pypi-publish.yml │ └── test.yml ├── .gitignore ├── .gitlint ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── Pipfile ├── README.md ├── gitea_auto_update ├── __init__.py ├── lib │ ├── __init__.py │ ├── build.py │ ├── download.py │ ├── test_version.py │ └── version.py └── update.py ├── settings.ini └── setup.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/.github/workflows/pypi-publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/.gitlint -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/Pipfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/README.md -------------------------------------------------------------------------------- /gitea_auto_update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gitea_auto_update/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gitea_auto_update/lib/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/gitea_auto_update/lib/build.py -------------------------------------------------------------------------------- /gitea_auto_update/lib/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/gitea_auto_update/lib/download.py -------------------------------------------------------------------------------- /gitea_auto_update/lib/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/gitea_auto_update/lib/test_version.py -------------------------------------------------------------------------------- /gitea_auto_update/lib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/gitea_auto_update/lib/version.py -------------------------------------------------------------------------------- /gitea_auto_update/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/gitea_auto_update/update.py -------------------------------------------------------------------------------- /settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/settings.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMiksche/gitea-auto-update/HEAD/setup.py --------------------------------------------------------------------------------