Skip to content

Commit

Permalink
fix roku default key icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Nerwyn committed Sep 13, 2024
1 parent 490a329 commit 67ef0f8
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 19 deletions.
6 changes: 3 additions & 3 deletions dist/universal-remote-card.min.js

Large diffs are not rendered by default.

25 changes: 15 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"homepage": "https://github.com/Nerwyn/android-tv-card#readme",
"dependencies": {
"custom-card-helpers": "latest",
"ha-nunjucks": "1.3.0-beta.001",
"ha-nunjucks": "latest",
"js-yaml": "latest",
"lit": "latest"
},
Expand Down
10 changes: 5 additions & 5 deletions src/models/maps/roku/defaultKeys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,34 +66,34 @@ export const rokuDefaultKeys: IElementConfig[] = [
name: 'up',
tap_action: { action: 'key', key: 'up' },
hold_action: { action: 'repeat' },
icon: 'chevron-up',
icon: 'mdi:chevron-up',
},
{
type: 'button',
name: 'down',
tap_action: { action: 'key', key: 'down' },
hold_action: { action: 'repeat' },
icon: 'chevron-down',
icon: 'mdi:chevron-down',
},
{
type: 'button',
name: 'left',
tap_action: { action: 'key', key: 'left' },
hold_action: { action: 'repeat' },
icon: 'chevron-left',
icon: 'mdi:chevron-left',
},
{
type: 'button',
name: 'right',
tap_action: { action: 'key', key: 'right' },
hold_action: { action: 'repeat' },
icon: 'chevron-right',
icon: 'mdi:chevron-right',
},
{
type: 'button',
name: 'center',
tap_action: { action: 'key', key: 'select' },
icon: 'circle',
icon: 'mdi:circle',
},
{
type: 'button',
Expand Down

0 comments on commit 67ef0f8

Please sign in to comment.