Skip to content

Commit

Permalink
Added channel switch and open twitch stream functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Hammster committed Jan 30, 2018
1 parent 1ef40a9 commit 55f65c1
Show file tree
Hide file tree
Showing 6 changed files with 329 additions and 11 deletions.
26 changes: 23 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "twitch-chat",
"displayName": "Twitch Chat",
"description": "VS code Extension for Twitch Chat Integration",
"version": "0.1.0",
"version": "0.2.0",
"publisher": "hammster1911",
"repository": {
"type": "git",
Expand Down Expand Up @@ -33,6 +33,22 @@
"dark": "resources/dark/string.svg",
"light": "resources/light/string.svg"
}
},
{
"command": "twitchChat.openActiveStream",
"title": "Twitch Chat: Open active stream",
"icon": {
"dark": "resources/dark/link.svg",
"light": "resources/light/link.svg"
}
},
{
"command": "twitchChat.changeChannel",
"title": "Twitch Chat: Change selected channel",
"icon": {
"dark": "resources/dark/link.svg",
"light": "resources/light/link.svg"
}
}],
"configuration": {
"type": "object",
Expand Down Expand Up @@ -65,8 +81,12 @@
{
"command": "twitchChat.sendMessage",
"when": "view == twitchChat",
"group": "navigation",
"tile": "test"
"group": "navigation"
},
{
"command": "twitchChat.openActiveStream",
"when": "view == twitchChat",
"group": "navigation"
}
]
}
Expand Down
68 changes: 68 additions & 0 deletions resources/dark/link.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
75 changes: 74 additions & 1 deletion resources/dark/string.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 68 additions & 0 deletions resources/light/link.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 55f65c1

Please sign in to comment.