diff --git a/README.md b/README.md index 04d8de4dd..c1cb75500 100644 --- a/README.md +++ b/README.md @@ -773,10 +773,10 @@ SOFTWARE. [ftp-armhf-shield]: https://img.shields.io/badge/armhf-yes-green.svg [ftp-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg [ftp-i386-shield]: https://img.shields.io/badge/i386-yes-green.svg -[addon-foldingathome]: https://github.com/hassio-addons/addon-foldingathome/tree/6e6aa48 -[addon-doc-foldingathome]: https://github.com/hassio-addons/addon-foldingathome/blob/6e6aa48/README.md +[addon-foldingathome]: https://github.com/hassio-addons/addon-foldingathome/tree/3b45d80 +[addon-doc-foldingathome]: https://github.com/hassio-addons/addon-foldingathome/blob/3b45d80/README.md [foldingathome-issue]: https://github.com/hassio-addons/addon-foldingathome/issues -[foldingathome-version-shield]: https://img.shields.io/badge/version-6e6aa48-blue.svg +[foldingathome-version-shield]: https://img.shields.io/badge/version-3b45d80-blue.svg [foldingathome-aarch64-shield]: https://img.shields.io/badge/aarch64-no-red.svg [foldingathome-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg [foldingathome-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg diff --git a/foldingathome/CHANGELOG.md b/foldingathome/CHANGELOG.md index 7472fd7c4..65681d972 100644 --- a/foldingathome/CHANGELOG.md +++ b/foldingathome/CHANGELOG.md @@ -1,4 +1,6 @@ # Changelog since v0.3.0 +- Migrate JSON config to YAML (#33) +- Switch to centralized GitHub Action Workflows (#32) - ⬆️ Bump actions/checkout from 2.3.4 to 2.3.5 (#28) Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 2.3.5. @@ -17,7 +19,7 @@ Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> - ⬆️ Upgrades add-on base image to 5.1.1 (#27) -- ⬆ Upgrade lock-threads workflow to 3.0.0 (#26) +- ⬆️ Upgrade lock-threads workflow to 3.0.0 (#26) - ⬆️ Bump frenck/action-addon-linter from 2.3 to 2.4.1 (#25) Bumps [frenck/action-addon-linter](https://github.com/frenck/action-addon-linter) from 2.3 to 2.4.1. diff --git a/foldingathome/README.md b/foldingathome/README.md index 725ea2309..2543cd1ab 100644 --- a/foldingathome/README.md +++ b/foldingathome/README.md @@ -52,6 +52,6 @@ If you are more interested in stable releases of our add-ons: [patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png [patreon]: https://www.patreon.com/frenck [project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg -[release-shield]: https://img.shields.io/badge/version-6e6aa48-blue.svg -[release]: https://github.com/hassio-addons/addon-foldingathome/tree/6e6aa48 +[release-shield]: https://img.shields.io/badge/version-3b45d80-blue.svg +[release]: https://github.com/hassio-addons/addon-foldingathome/tree/3b45d80 [screenshot]: https://github.com/hassio-addons/addon-foldingathome/raw/main/images/screenshot.png \ No newline at end of file diff --git a/foldingathome/config.json b/foldingathome/config.json deleted file mode 100644 index 73e74719e..000000000 --- a/foldingathome/config.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "name": "Folding@home", - "version": "6e6aa48", - "slug": "foldingathome", - "description": "Fighting disease with a world wide distributed super computer", - "url": "https://github.com/hassio-addons/addon-foldingathome", - "webui": "http://[HOST]:[PORT:7396]", - "arch": [ - "amd64" - ], - "init": false, - "hassio_api": true, - "video": true, - "ports": { - "7396/tcp": 7396, - "36330/tcp": null - }, - "ports_description": { - "7396/tcp": "Web interface", - "36330/tcp": "Remote command interface" - }, - "image": "ghcr.io/hassio-addons/foldingathome/{arch}" -} \ No newline at end of file diff --git a/foldingathome/config.yaml b/foldingathome/config.yaml new file mode 100644 index 000000000..6fb7f6abf --- /dev/null +++ b/foldingathome/config.yaml @@ -0,0 +1,18 @@ +arch: +- amd64 +description: Fighting disease with a world wide distributed super computer +hassio_api: true +image: ghcr.io/hassio-addons/foldingathome/{arch} +init: false +name: Folding@home +ports: + 36330/tcp: null + 7396/tcp: 7396 +ports_description: + 36330/tcp: Remote command interface + 7396/tcp: Web interface +slug: foldingathome +url: https://github.com/hassio-addons/addon-foldingathome +version: 3b45d80 +video: true +webui: http://[HOST]:[PORT:7396]