Skip to content

Commit

Permalink
fix: build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Oct 11, 2023
1 parent 3503cb3 commit 1dd8969
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to this project will be documented in this file. See [Convential Commits](https://www.conventionalcommits.org/en/v1.0.0/#specification) for commit guidelines.

## [1.5.4](https://github.com/bitfocus/companion-satellite/compare/v1.5.3...v1.5.4) (Wed Oct 11 2023)


## [1.5.3](https://github.com/bitfocus/companion-satellite/compare/v1.5.2...v1.5.3) (Wed Oct 11 2023)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "companion-satellite",
"version": "1.5.3",
"version": "1.5.4",
"description": "Satellite Streamdeck connector for Bitfocus Companion",
"author": {
"name": "Julian Waller",
Expand Down
4 changes: 2 additions & 2 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ export class CompanionSatelliteClient extends EventEmitter<CompanionSatelliteCli

private receiveBuffer = ''

private _pingInterval: NodeJS.Timer | undefined
private _pingInterval: NodeJS.Timeout | undefined
private _pingUnackedCount = 0
private _lastReceivedAt = 0
private _connected = false
private _connectionActive = false // True when connected/connecting/reconnecting
private _retryConnectTimeout: NodeJS.Timer | undefined = undefined
private _retryConnectTimeout: NodeJS.Timeout | undefined = undefined
private _host = ''
private _port = DEFAULT_PORT
private _supportsCombinedEncoders = false
Expand Down
2 changes: 1 addition & 1 deletion src/device-types/xencelabs-quick-keys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class QuickKeysWrapper implements WrappedDevice {
readonly #surface: XencelabsQuickKeys
readonly #deviceId: string

#statusTimer: NodeJS.Timer | undefined
#statusTimer: NodeJS.Timeout | undefined
#unsub: (() => void) | undefined

public get deviceId(): string {
Expand Down
2 changes: 1 addition & 1 deletion src/devices.ts
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ export class DeviceManager {
}
}

private statusCardTimer: NodeJS.Timer | undefined
private statusCardTimer: NodeJS.Timeout | undefined
private showStatusCard(message: string, runLoop: boolean): void {
this.statusString = message

Expand Down

0 comments on commit 1dd8969

Please sign in to comment.