|
1 | 1 | #!/usr/bin/with-contenv bashio |
2 | 2 | # shellcheck shell=bash |
3 | 3 | # ============================================================================== |
4 | | -# Home Assistant Community Add-on: Base Images |
5 | | -# Displays a simple add-on banner on startup |
| 4 | +# Home Assistant Community App: Base Images |
| 5 | +# Displays a simple app banner on startup |
6 | 6 | # ============================================================================== |
7 | 7 | if bashio::supervisor.ping; then |
8 | 8 | bashio::log.blue \ |
9 | 9 | '-----------------------------------------------------------' |
10 | | - bashio::log.blue " Add-on: $(bashio::addon.name)" |
| 10 | + bashio::log.blue " App: $(bashio::addon.name)" |
11 | 11 | bashio::log.blue " $(bashio::addon.description)" |
12 | 12 | bashio::log.blue \ |
13 | 13 | '-----------------------------------------------------------' |
14 | 14 |
|
15 | | - bashio::log.blue " Add-on version: $(bashio::addon.version)" |
| 15 | + bashio::log.blue " App version: $(bashio::addon.version)" |
16 | 16 | if bashio::var.true "$(bashio::addon.update_available)"; then |
17 | | - bashio::log.magenta ' There is an update available for this add-on!' |
| 17 | + bashio::log.magenta ' There is an update available for this app!' |
18 | 18 | bashio::log.magenta \ |
19 | | - " Latest add-on version: $(bashio::addon.version_latest)" |
| 19 | + " Latest app version: $(bashio::addon.version_latest)" |
20 | 20 | bashio::log.magenta ' Please consider upgrading as soon as possible.' |
21 | 21 | else |
22 | | - bashio::log.green ' You are running the latest version of this add-on.' |
| 22 | + bashio::log.green ' You are running the latest version of this app.' |
23 | 23 | fi |
24 | 24 |
|
25 | 25 | bashio::log.blue " System: $(bashio::info.operating_system)" \ |
|
0 commit comments