Skip to content

Commit

Permalink
Fixes #7,#8
Browse files Browse the repository at this point in the history
  • Loading branch information
nicollasricas committed May 28, 2020
1 parent b566ba8 commit 002419a
Show file tree
Hide file tree
Showing 9 changed files with 169 additions and 133 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.1.5] - 2020-05-28

### Added

- Added open folder action.

## [3.1.5] - 2020-04-06

### Changed
Expand Down
180 changes: 83 additions & 97 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-streamdeck",
"displayName": "Stream Deck for Visual Studio Code",
"description": "Enables Stream Deck integration with Visual Studio Code.",
"version": "3.1.5",
"version": "4.1.5",
"engines": {
"vscode": "^1.38.0"
},
Expand Down Expand Up @@ -70,14 +70,14 @@
},
"dependencies": {
"strongly-typed-events": "^1.6.11",
"ws": "^7.2.3"
"ws": "^7.2.5"
},
"devDependencies": {
"@types/vscode": "^1.38.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@types/ws": "7.2.3",
"@types/node": "^14.0.5",
"@types/ws": "7.2.4",
"eslint": "^6.8.0",
"@typescript-eslint/parser": "^2.26.0",
"@typescript-eslint/eslint-plugin": "^2.26.0",
Expand Down
5 changes: 2 additions & 3 deletions src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
export const InternalExtensionId = "vscode-streamdeck";
export const ExtensionId = `nicollasricas.${InternalExtensionId}`;
export const ExtensionScheme = "streamdeck";
export const OutputChannelName = "Stream Deck";

export enum Commands {
Reconnect = "reconnectToServer",
ActivateSession = "activateSession"
ActivateSession = "activateSession",
}

export enum Configurations {
ServerHost = "streamdeck.serverHost",
ServerPort = "streamdeck.serverPort"
ServerPort = "streamdeck.serverPort",
}
Loading

0 comments on commit 002419a

Please sign in to comment.