Skip to content

Commit

Permalink
2.0.5
Browse files Browse the repository at this point in the history
Added 'mute activated/deactivated' trigger.
  • Loading branch information
RonnyWinkler committed Jun 26, 2023
1 parent 0b500b8 commit 7426590
Show file tree
Hide file tree
Showing 54 changed files with 3,927 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Homey exclude

node_modules/
env.json

/.homeybuild/
34 changes: 34 additions & 0 deletions .homeychangelog.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"1.1.0": {
"en": "Updating to app SDK 3.0",
"de": "Aktualisiert auf SDK 3.0"
},
"1.1.1": {
"en": "Bugfix for crash on HomeyPro23",
"de": "Korrektur für Crash auf HomeyPro23"
},
"2.0.0": {
"en": "New: volume slider, input mode, flow actions for app start, input selection and IR codes.",
"de": "Neu: Lautstärke-Steuerung, Input-Liste, Flow-Aktionen für App-Start, Input-Selektion und IR-Codes."
},
"2.0.1": {
"en": "Testversion for pair view check.",
"de": "Testversion zur Prüfung des Pair-Dialogs."
},
"2.0.2": {
"en": "Testversion for pair view check.",
"de": "Testversion zur Prüfung des Pair-Dialogs."
},
"2.0.3": {
"en": "Testversion for pair view check.",
"de": "Testversion zur Prüfung des Pair-Dialogs."
},
"2.0.4": {
"en": "Fix for device deletion (stop polling).",
"de": "Korrektur für Löschen von Geräten (Abruf stoppen)."
},
"2.0.5": {
"en": "Added 'mute activated/deactivated' trigger.",
"de": "Trigger für 'Stummschaltung aktiviert/deaktiviert' ergänzt."
}
}
51 changes: 51 additions & 0 deletions .homeycompose/app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"id": "name.ricardoismy.sonybraviaandroidtv",
"version": "2.0.5",
"compatibility": ">=8.1.0",
"sdk": 3,
"name": {
"en": "Sony BRAVIA Android TV"
},
"description": {
"en": "Made to Entertain"
},
"brandColor": "#000000",
"category": ["video"],
"tags": {
"en": [
"sony",
"android",
"android tv",
"bravia"
]
},
"permissions": [],
"images": {
"large": "/assets/images/large.png",
"small": "/assets/images/small.png"
},
"homeyCommunityTopicId": 82523,
"source": "https://github.com/RonnyWinkler/homey.sonybraviaandroidtv",
"bugs": {
"url": "https://github.com/RonnyWinkler/homey.sonybraviaandroidtv/issues"
},
"author": {
"name": "Ronny Winkler",
"email": "[email protected]"
},
"contributors": {
"developers": [
{
"name": "Ricardo Snoek (Homey app initial version)",
"email": "[email protected]"
}
]
},
"contributing": {
"donate": {
"paypal": {
"username": "winklerronny"
}
}
}
}
40 changes: 40 additions & 0 deletions .homeycompose/capabilities/input.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"type": "enum",
"title": {
"en": "Input",
"nl": "Invoer"
},
"getable": true,
"setable": true,
"uiComponent": "picker",
"values": [
{
"id": "tv:dvbs",
"title": "TV DVB-S"
},
{
"id": "tv:dvbc",
"title": "TV DVB-C"
},
{
"id": "tv:dvbt",
"title": "TV DVB-T"
},
{
"id": "extInput:hdmi?port=1",
"title": "HDMI 1"
},
{
"id": "extInput:hdmi?port=2",
"title": "HDMI 2"
},
{
"id": "extInput:hdmi?port=3",
"title": "HDMI 3"
},
{
"id": "extInput:hdmi?port=4",
"title": "HDMI 4"
}
]
}
10 changes: 10 additions & 0 deletions .homeycompose/capabilities/playing_content.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"type": "string",
"title": {
"en": "Playing content",
"nl": "Inhoud afspelen"
},
"getable": true,
"setable": false,
"uiComponent": null
}
14 changes: 14 additions & 0 deletions .homeycompose/flow/actions/EPG.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"deprecated": true,
"title": {
"en": "Open Electronic Program Guide",
"nl": "Elektronische Programma Gids openen"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=sony-bravia-android-tv"
}
]
}
18 changes: 18 additions & 0 deletions .homeycompose/flow/actions/Enter.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"deprecated": true,
"title": {
"en": "Send Enter command",
"nl": "Enter commando versturen"
},
"titleFormatted": {
"en": "Send Enter command",
"nl": "Enter commando versturen"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=sony-bravia-android-tv"
}
]
}
18 changes: 18 additions & 0 deletions .homeycompose/flow/actions/Netflix.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"deprecated": true,
"title": {
"en": "Start Netflix",
"nl": "Open Netflix"
},
"titleFormatted": {
"en": "Start Netflix",
"nl": "Open Netflix"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=sony-bravia-android-tv"
}
]
}
18 changes: 18 additions & 0 deletions .homeycompose/flow/actions/Options.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"deprecated": true,
"title": {
"en": "Open Options",
"nl": "Opties openen"
},
"titleFormatted": {
"en": "Open Options",
"nl": "Opties openen"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=sony-bravia-android-tv"
}
]
}
48 changes: 48 additions & 0 deletions .homeycompose/flow/actions/SetInput.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"deprecated": true,
"title": {
"en": "Set HDMI input",
"nl": "Selecteer HDMI ingang"
},
"titleFormatted": {
"en": "Set HDMI input to [[Input]]",
"nl": "Selecteer HDMI ingang naar [[Input]]"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=sony-bravia-android-tv"
},
{
"name": "Input",
"type": "dropdown",
"values": [
{
"id": "Hdmi1",
"label": {
"en": "HDMI 1"
}
},
{
"id": "Hdmi2",
"label": {
"en": "HDMI 2"
}
},
{
"id": "Hdmi3",
"label": {
"en": "HDMI 3"
}
},
{
"id": "Hdmi4",
"label": {
"en": "HDMI 4"
}
}
]
}
]
}
94 changes: 94 additions & 0 deletions .homeycompose/flow/actions/SetNumber.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
{
"deprecated": true,
"title": {
"en": "Numpad input",
"nl": "Numerieke invoer"
},
"titleFormatted": {
"en": "Numpad input as [[Number]]",
"nl": "Numerieke invoer als [[Number]]"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=sony-bravia-android-tv"
},
{
"name": "Number",
"type": "dropdown",
"values": [
{
"id": "Num1",
"label": {
"en": "Numpad 1",
"nl": "Nummer 1"
}
},
{
"id": "Num2",
"label": {
"en": "Numpad 2",
"nl": "Nummer 2"
}
},
{
"id": "Num3",
"label": {
"en": "Numpad 3",
"nl": "Nummer 3"
}
},
{
"id": "Num4",
"label": {
"en": "Numpad 4",
"nl": "Nummer 4"
}
},
{
"id": "Num5",
"label": {
"en": "Numpad 5",
"nl": "Nummer 5"
}
},
{
"id": "Num6",
"label": {
"en": "Numpad 6",
"nl": "Nummer 6"
}
},
{
"id": "Num7",
"label": {
"en": "Numpad 7",
"nl": "Nummer 7"
}
},
{
"id": "Num8",
"label": {
"en": "Numpad 8",
"nl": "Nummer 8"
}
},
{
"id": "Num9",
"label": {
"en": "Numpad 9",
"nl": "Nummer 9"
}
},
{
"id": "Num0",
"label": {
"en": "Numpad 0",
"nl": "Nummer 0"
}
}
]
}
]
}
29 changes: 29 additions & 0 deletions .homeycompose/flow/actions/app_start.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"title": {
"en": "Start app",
"nl": "App starten"
},
"titleFormatted": {
"en": "Start app [[app]]",
"nl": "App [[app]] starten"
},
"args": [
{
"name": "device",
"type": "device",
"filter": "driver_id=sony-bravia-android-tv"
},
{
"type": "autocomplete",
"name": "app",
"title": {
"en": "app",
"nl": "app"
},
"placeholder": {
"en": "Select an app",
"nl": "Selecteer een app"
}
}
]
}
Loading

0 comments on commit 7426590

Please sign in to comment.