mirror of
https://github.com/hassio-addons/repository-beta.git
synced 2025-05-05 11:31:28 +00:00
🎉 Release of add-on ADB - Android Debug Bridge 0.8.0
This commit is contained in:
parent
abc3653eb7
commit
4231e5a823
5 changed files with 71 additions and 13 deletions
|
@ -729,10 +729,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.7.0
|
[addon-adb]: https://github.com/hassio-addons/addon-adb/tree/v0.8.0
|
||||||
[addon-doc-adb]: https://github.com/hassio-addons/addon-adb/blob/v0.7.0/README.md
|
[addon-doc-adb]: https://github.com/hassio-addons/addon-adb/blob/v0.8.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.7.0-blue.svg
|
[adb-version-shield]: https://img.shields.io/badge/version-v0.8.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,12 +1,39 @@
|
||||||
## What’s changed
|
## What’s changed
|
||||||
|
|
||||||
## 🧰 Maintenance
|
⚠️ **This add-on is in a deprecated state!**
|
||||||
|
|
||||||
- Cleanup repository @frenck (#29)
|
This add-on was created at the time, that the best solution for communicating
|
||||||
- Happy New Year @frenck (#30)
|
with an Android device from Home Assistant, was using an Android Debug Bridge.
|
||||||
- Upgrade Code of Conduct @frenck (#31)
|
|
||||||
- Add new repository workflow @frenck (#32)
|
However, times have changed. Right now, the Home Assistant project recommends
|
||||||
|
using built-in Python implementation, which renders this add-on obsolete.
|
||||||
|
|
||||||
|
Additionally, this add-on will become problematic to maintain in the future,
|
||||||
|
as the packages used are stalled.
|
||||||
|
|
||||||
|
Therefore, this add-on is now deprecated.
|
||||||
|
|
||||||
|
## 🚨 Breaking changes
|
||||||
|
|
||||||
|
- Deprecate add-on @frenck (#51)
|
||||||
|
|
||||||
|
## 📚 Documentation
|
||||||
|
|
||||||
|
- Update project badges to show deprecated stage @frenck (#52)
|
||||||
|
|
||||||
## ⬆️ Dependency updates
|
## ⬆️ Dependency updates
|
||||||
|
|
||||||
- Upgrade add-on base image to 6.1.0 @frenck (#33)
|
- ⬆️ Bump frenck/action-addon-linter from v1.3.1 to v1.4 @dependabot (#35)
|
||||||
|
- ⬆️ Bump actions/stale from v3.0.14 to v3.0.15 @dependabot (#34)
|
||||||
|
- ⬆️ Bump frenck/action-yamllint from v1.0.2 to v1.1 @dependabot (#36)
|
||||||
|
- ⬆️ Bump actionshub/markdownlint from 2.0.0 to 2.0.2 @dependabot (#38)
|
||||||
|
- ⬆️ Bump actions/cache from v2.1.3 to v2.1.4 @dependabot (#39)
|
||||||
|
- ⬆️ Bump actions/stale from v3.0.15 to v3.0.16 @dependabot (#40)
|
||||||
|
- ⬆️ Bump frenck/action-addon-linter from v1.4 to v2 @dependabot (#41)
|
||||||
|
- ⬆️ Bump release-drafter/release-drafter from v5.13.0 to v5.14.0 @dependabot (#42)
|
||||||
|
- ⬆️ Bump docker/build-push-action from v2.2.2 to v2.3.0 @dependabot (#43)
|
||||||
|
- ⬆️ Bump actions/stale from v3.0.16 to v3.0.17 @dependabot (#44)
|
||||||
|
- ⬆️ Bump actions/stale from v3.0.17 to v3.0.18 @dependabot (#46)
|
||||||
|
- ⬆️ Bump release-drafter/release-drafter from v5.14.0 to v5.15.0 @dependabot (#48)
|
||||||
|
- ⬆️ Bump ludeeus/action-shellcheck from 1.0.0 to 1.1.0 @dependabot (#49)
|
||||||
|
- ⬆️ Upgrades add-on base image to v6.1.4 @frenck (#50)
|
||||||
|
|
15
adb/DOCS.md
15
adb/DOCS.md
|
@ -4,6 +4,21 @@ The Android Debug Bridge (ADB) is a client-server program used in Android
|
||||||
application development. This add-on provides the server program and can be
|
application development. This add-on provides the server program and can be
|
||||||
used to get full local control over your Android (TV) devices.
|
used to get full local control over your Android (TV) devices.
|
||||||
|
|
||||||
|
## Deprecation warning
|
||||||
|
|
||||||
|
**This add-on is in a deprecated state!**
|
||||||
|
|
||||||
|
This add-on was created at the time, that the best solution for communicating
|
||||||
|
with an Android device from Home Assistant, was using an Android Debug Bridge.
|
||||||
|
|
||||||
|
However, the time has changed. Right now, the Home Assistant project recommends
|
||||||
|
using built-in Python implementation, which renders this add-on obsolete.
|
||||||
|
|
||||||
|
Additionally, this add-on will become problematic to maintain in the future,
|
||||||
|
as the packages used are stalled.
|
||||||
|
|
||||||
|
Therefore, this add-on is now deprecated.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
The installation of this add-on is pretty straightforward and not different in
|
The installation of this add-on is pretty straightforward and not different in
|
||||||
|
|
|
@ -10,6 +10,21 @@
|
||||||
|
|
||||||
The Android Debug Bridge server program.
|
The Android Debug Bridge server program.
|
||||||
|
|
||||||
|
## Deprecation warning
|
||||||
|
|
||||||
|
**This add-on is in a deprecated state!**
|
||||||
|
|
||||||
|
This add-on was created at the time, that the best solution for communicating
|
||||||
|
with an Android device from Home Assistant, was using an Android Debug Bridge.
|
||||||
|
|
||||||
|
However, the time has changed. Right now, the Home Assistant project recommends
|
||||||
|
using built-in Python implementation, which renders this add-on obsolete.
|
||||||
|
|
||||||
|
Additionally, this add-on will become problematic to maintain in the future,
|
||||||
|
as the packages used are stalled.
|
||||||
|
|
||||||
|
Therefore, this add-on is now deprecated.
|
||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
||||||
The Android Debug Bridge (ADB) is a client-server program used in Android
|
The Android Debug Bridge (ADB) is a client-server program used in Android
|
||||||
|
@ -41,6 +56,6 @@ If you are more interested in stable releases of our add-ons:
|
||||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2021.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-%20!%20DEPRECATED%20%20%20!-ff0000.svg
|
||||||
[release-shield]: https://img.shields.io/badge/version-v0.7.0-blue.svg
|
[release-shield]: https://img.shields.io/badge/version-v0.8.0-blue.svg
|
||||||
[release]: https://github.com/hassio-addons/addon-adb/tree/v0.7.0
|
[release]: https://github.com/hassio-addons/addon-adb/tree/v0.8.0
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "ADB - Android Debug Bridge",
|
"name": "ADB - Android Debug Bridge",
|
||||||
"version": "0.7.0",
|
"stage": "deprecated",
|
||||||
|
"version": "0.8.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",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue