-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.README.j2
109 lines (76 loc) · 4.38 KB
/
.README.j2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# Poeschl Home Assistant Supervisor Add-ons (Bloody edge)
![Project Stage][project-stage-badge]
![GitHub commit activity][commit-badge]
![Licence][licence-badge]
[![Installation Statistics][statistics-badge]][statistics-url]
[![Donate][donation-badge]][donation-url]
## ⚠ WARNING! THIS IS AN EDGE REPOSITORY
This Home Assistant Add-ons repository contains edge builds of my add-ons. Edge
builds add-ons are based upon the latest development version.
- They may not work at all.
- They might stop working at any time.
- They could have a negative impact on your system.
For the stable version of the add-ons: [Stable-Repository]
## Addons available
{% for addon in addons %}
{% if not 'deprecated' in addon.description | lower %}
### 🧩 [{{ addon.name }}][{{ addon.slug }}-files]
![Latest Version][{{ addon.slug }}-version-badge]
![Supports aarch64 Architecture][{{ addon.slug }}-aarch64-badge]
![Supports amd64 Architecture][{{ addon.slug }}-amd64-badge]
![Supports armhf Architecture][{{ addon.slug }}-armhf-badge]
![Supports armv7 Architecture][{{ addon.slug }}-armv7-badge]
![Supports i386 Architecture][{{ addon.slug }}-i386-badge]
{{ addon.description }}
[![{{ addon.name }} add-on documentation][addon-docs-badge]][{{ addon.slug }}-doc]
{% endif %}
{% endfor %}
## Deprecated Addons
These addons will not be updated anymore. Feel free to fork them.
{% for addon in addons %}
{% if 'deprecated' in addon.description | lower %}
### 🕸 [{{ addon.name }}][{{ addon.slug }}-files]
![Latest Version][{{ addon.slug }}-version-badge]
{{ addon.description }}
[![{{ addon.name }} add-on documentation][addon-docs-badge]][{{ addon.slug }}-doc]
{% endif %}
{% endfor %}
## Installation
To install any of the add-ons offered in this repository, you must first add its repository URL to your Home Assistant instance. To do so, click the following button:
[![Add repository to your Home Assistant instance.][repository-badge]][repository-url]
or manually add the following repository URL in the Home Assistant add-on store:
`{{ repo }}`
Then search for any of the add-ons in our addon store (button below) to install them.
[![Open your Home Assistant instance and show the Supervisor add-on store.][addon-store-badge]][addon-store-url]
You can also install them over the buttons in the Readmes of the addon folders.
## Support
If you are here, seeking help, please look at the issues of the specific addon.
{% for addon in addons %}
- [Issues of {{ addon.name }}][{{ addon.slug }}-issue]
{% endfor %}
[project-stage-badge]: https://img.shields.io/badge/project%20stage-🧪%20experimental-yellow.svg
[commit-badge]: https://img.shields.io/github/commit-activity/m/Poeschl-HomeAssistant-Addons/repository-edge
[licence-badge]: https://img.shields.io/github/license/Poeschl-HomeAssistant-Addons/repository-edge
[Stable-Repository]: https://github.com/Poeschl-HomeAssistant-Addons/repository
[statistics-badge]: https://img.shields.io/badge/-usage_statistics-41BDF5.svg?style=for-the-badge
[statistics-url]: https://addonstats.poeschl.xyz?filter=5da6a583
[donation-badge]: https://img.shields.io/badge/Buy%20me%20a%20coffee-%23d32f2f?logo=buy-me-a-coffee&style=for-the-badge&logoColor=white
[donation-url]: https://www.buymeacoffee.com/Poeschl
[repository-badge]: https://img.shields.io/badge/Add_addon_repository_to_my-Home%20Assistant-41BDF5?logo=home-assistant&style=for-the-badge
[repository-url]: https://my.home-assistant.io/redirect/supervisor_add_addon_repository/?repository_url={{ repo | urlencode }}
[addon-store-url]: https://my.home-assistant.io/redirect/supervisor_store/
[addon-store-badge]: https://img.shields.io/badge/Open_Addon_store_on_my-Home%20Assistant-41BDF5?logo=home-assistant&style=for-the-badge
[addon-docs-badge]: https://img.shields.io/badge/Documentation-41BDF5?style=for-the-badge
{% for addon in addons %}
[{{ addon.slug }}-files]: {{ addon.repo }}/tree/{{ addon.version }}
[{{ addon.slug }}-doc]: {{ addon.repo }}/blob/{{ addon.version }}/README.md
[{{ addon.slug }}-issue]: {{ addon.repo }}/issues
[{{ addon.slug }}-version-badge]: https://img.shields.io/badge/version-{{ addon.version }}-blue.svg
{% for arch in ['aarch64', 'amd64', 'armhf', 'armv7', 'i386'] %}
{% if arch in addon.archs %}
[{{ addon.slug }}-{{ arch }}-badge]: https://img.shields.io/badge/{{ arch }}-yes-green.svg
{% else %}
[{{ addon.slug }}-{{ arch }}-badge]: https://img.shields.io/badge/{{ arch }}-no-red.svg
{% endif %}
{% endfor %}
{% endfor %}