mirror of
https://github.com/hassio-addons/repository-beta.git
synced 2025-05-05 19:41:27 +00:00
🎉 Release of add-on ADB - Android Debug Bridge 0.7.0
This commit is contained in:
parent
df5dac95fa
commit
f3b31f0db4
5 changed files with 24 additions and 28 deletions
|
@ -715,10 +715,10 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
|
|
||||||
[addon-adb]: https://github.com/hassio-addons/addon-adb/tree/v0.6.3
|
[addon-adb]: https://github.com/hassio-addons/addon-adb/tree/v0.7.0
|
||||||
[addon-doc-adb]: https://github.com/hassio-addons/addon-adb/blob/v0.6.3/README.md
|
[addon-doc-adb]: https://github.com/hassio-addons/addon-adb/blob/v0.7.0/README.md
|
||||||
[adb-issue]: https://github.com/hassio-addons/addon-adb/issues
|
[adb-issue]: https://github.com/hassio-addons/addon-adb/issues
|
||||||
[adb-version-shield]: https://img.shields.io/badge/version-v0.6.3-blue.svg
|
[adb-version-shield]: https://img.shields.io/badge/version-v0.7.0-blue.svg
|
||||||
[adb-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
[adb-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
||||||
[adb-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
[adb-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||||
[adb-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
|
[adb-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
[Full Changelog][changelog]
|
## What’s changed
|
||||||
|
|
||||||
### 🔨 Changes
|
## 🧰 Maintenance
|
||||||
|
|
||||||
- ⬆ Upgrades add-on base image to v5.2.2
|
- Cleanup repository @frenck (#29)
|
||||||
|
- Happy New Year @frenck (#30)
|
||||||
|
- Upgrade Code of Conduct @frenck (#31)
|
||||||
|
- Add new repository workflow @frenck (#32)
|
||||||
|
|
||||||
[changelog]: https://github.com/hassio-addons/addon-adb/compare/v0.6.2...v0.6.3
|
## ⬆️ Dependency updates
|
||||||
|
|
||||||
Questions? Join our Discord server! https://discord.me/hassioaddons
|
- Upgrade add-on base image to 6.1.0 @frenck (#33)
|
||||||
Enjoying my add-ons? Consider supporting my work:
|
|
||||||
https://github.com/sponsors/frenck or https://patreon.com/frenck
|
|
||||||
|
|
18
adb/DOCS.md
18
adb/DOCS.md
|
@ -58,7 +58,7 @@ dealing with an unknown issue. Possible values are:
|
||||||
- `debug`: Shows detailed debug information.
|
- `debug`: Shows detailed debug information.
|
||||||
- `info`: Normal (usually) interesting events.
|
- `info`: Normal (usually) interesting events.
|
||||||
- `warning`: Exceptional occurrences that are not errors.
|
- `warning`: Exceptional occurrences that are not errors.
|
||||||
- `error`: Runtime errors that do not require immediate action.
|
- `error`: Runtime errors that do not require immediate action.
|
||||||
- `fatal`: Something went terribly wrong. Add-on becomes unusable.
|
- `fatal`: Something went terribly wrong. Add-on becomes unusable.
|
||||||
|
|
||||||
Please note that each level automatically includes log messages from a
|
Please note that each level automatically includes log messages from a
|
||||||
|
@ -76,7 +76,7 @@ and store a key pair for you internally.
|
||||||
If the provided directory is empty, the add-on will create
|
If the provided directory is empty, the add-on will create
|
||||||
a new (fresh) key pair in the specified location.
|
a new (fresh) key pair in the specified location.
|
||||||
You can also provide your own key pair, which **must** be named
|
You can also provide your own key pair, which **must** be named
|
||||||
`adbkey` and `adbkey.pub` (and stored in the specified location).
|
`adbkey` and `adbkey.pub` (and stored in the specified location).
|
||||||
|
|
||||||
The `keys_path` path must be in either `/ssl`, `/config` or `/share`, subfolders
|
The `keys_path` path must be in either `/ssl`, `/config` or `/share`, subfolders
|
||||||
are allowed (e.g., `/config/adb/mykeys`).
|
are allowed (e.g., `/config/adb/mykeys`).
|
||||||
|
@ -140,16 +140,15 @@ media_player:
|
||||||
## Changelog & Releases
|
## Changelog & Releases
|
||||||
|
|
||||||
This repository keeps a change log using [GitHub's releases][releases]
|
This repository keeps a change log using [GitHub's releases][releases]
|
||||||
functionality. The format of the log is based on
|
functionality.
|
||||||
[Keep a Changelog][keepchangelog].
|
|
||||||
|
|
||||||
Releases are based on [Semantic Versioning][semver], and use the format
|
Releases are based on [Semantic Versioning][semver], and use the format
|
||||||
of ``MAJOR.MINOR.PATCH``. In a nutshell, the version will be incremented
|
of `MAJOR.MINOR.PATCH`. In a nutshell, the version will be incremented
|
||||||
based on the following:
|
based on the following:
|
||||||
|
|
||||||
- ``MAJOR``: Incompatible or major changes.
|
- `MAJOR`: Incompatible or major changes.
|
||||||
- ``MINOR``: Backwards-compatible new features and enhancements.
|
- `MINOR`: Backwards-compatible new features and enhancements.
|
||||||
- ``PATCH``: Backwards-compatible bugfixes and package updates.
|
- `PATCH`: Backwards-compatible bugfixes and package updates.
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
|
@ -177,7 +176,7 @@ check [the contributor's page][contributors].
|
||||||
|
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2019-2020 Franck Nijhof
|
Copyright (c) 2019-2021 Franck Nijhof
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
@ -205,7 +204,6 @@ SOFTWARE.
|
||||||
[forum]: https://community.home-assistant.io/t/home-assistant-community-add-ons-adb-android-debug-bridge/96375?u=frenck
|
[forum]: https://community.home-assistant.io/t/home-assistant-community-add-ons-adb-android-debug-bridge/96375?u=frenck
|
||||||
[frenck]: https://github.com/frenck
|
[frenck]: https://github.com/frenck
|
||||||
[issue]: https://github.com/hassio-addons/addon-adb/issues
|
[issue]: https://github.com/hassio-addons/addon-adb/issues
|
||||||
[keepchangelog]: http://keepachangelog.com/en/1.0.0/
|
|
||||||
[mcfrojd]: https://gist.github.com/mcfrojd/9e6875e1db5c089b1e3ddeb7dba0f304
|
[mcfrojd]: https://gist.github.com/mcfrojd/9e6875e1db5c089b1e3ddeb7dba0f304
|
||||||
[reddit]: https://reddit.com/r/homeassistant
|
[reddit]: https://reddit.com/r/homeassistant
|
||||||
[semver]: http://semver.org/spec/v2.0.0.htm
|
[semver]: http://semver.org/spec/v2.0.0.htm
|
||||||
|
|
|
@ -38,9 +38,9 @@ If you are more interested in stable releases of our add-ons:
|
||||||
[forum]: https://community.home-assistant.io/t/home-assistant-community-add-ons-adb-android-debug-bridge/96375?u=frenck
|
[forum]: https://community.home-assistant.io/t/home-assistant-community-add-ons-adb-android-debug-bridge/96375?u=frenck
|
||||||
[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png
|
[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png
|
||||||
[github-sponsors]: https://github.com/sponsors/frenck
|
[github-sponsors]: https://github.com/sponsors/frenck
|
||||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2020.svg
|
[maintenance-shield]: https://img.shields.io/maintenance/yes/2021.svg
|
||||||
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
|
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
|
||||||
[patreon]: https://www.patreon.com/frenck
|
[patreon]: https://www.patreon.com/frenck
|
||||||
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
|
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
|
||||||
[release-shield]: https://img.shields.io/badge/version-v0.6.3-blue.svg
|
[release-shield]: https://img.shields.io/badge/version-v0.7.0-blue.svg
|
||||||
[release]: https://github.com/hassio-addons/addon-adb/tree/v0.6.3
|
[release]: https://github.com/hassio-addons/addon-adb/tree/v0.7.0
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "ADB - Android Debug Bridge",
|
"name": "ADB - Android Debug Bridge",
|
||||||
"version": "0.6.3",
|
"version": "0.7.0",
|
||||||
"slug": "adb",
|
"slug": "adb",
|
||||||
"description": "The Android Debug Bridge server program",
|
"description": "The Android Debug Bridge server program",
|
||||||
"url": "https://github.com/hassio-addons/addon-adb",
|
"url": "https://github.com/hassio-addons/addon-adb",
|
||||||
|
@ -23,9 +23,6 @@
|
||||||
"share:rw",
|
"share:rw",
|
||||||
"ssl:rw"
|
"ssl:rw"
|
||||||
],
|
],
|
||||||
"boot": "auto",
|
|
||||||
"hassio_api": true,
|
|
||||||
"hassio_role": "default",
|
|
||||||
"options": {
|
"options": {
|
||||||
"devices": [],
|
"devices": [],
|
||||||
"reconnect_timeout": 90
|
"reconnect_timeout": 90
|
||||||
|
@ -38,5 +35,5 @@
|
||||||
],
|
],
|
||||||
"reconnect_timeout": "int"
|
"reconnect_timeout": "int"
|
||||||
},
|
},
|
||||||
"image": "hassioaddons/adb-{arch}"
|
"image": "ghcr.io/hassio-addons/adb/{arch}"
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue