Skip to content

Commit

Permalink
Bump version 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcHagen committed Jan 30, 2021
2 parents f6943ba + cb9ea05 commit 940b583
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

---

---
## [1.0.4] (2021-01-30)

## Bug Fixes
* [#5](https://github.com/bitfocus/companion-module-epiphan-pearl/issues/5) - Fixed issue with recording not working.

---
## [1.0.3] (2020-06-16)

Expand Down
9 changes: 3 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -506,15 +506,12 @@ class EpiphanPearl extends instanceSkel {
*
* @private
* @since 1.0.0
* @param {String|Number} id
* @param {String} id
*/
_getRecorderById(id) {
if (!id) {
return;
}
if (typeof id !== 'number') {
id = parseInt(id)
}
return this.RECORDER_STATES.find(obj => obj.id === id);
}

Expand Down Expand Up @@ -720,7 +717,7 @@ class EpiphanPearl extends instanceSkel {

/**
* Part of poller
* INTERNAL: The data poller will activally make requests to update feedbacks and dropdown options.
* INTERNAL: The data poller will actively make requests to update feedbacks and dropdown options.
* Polling data such as channels, recorders, layouts and status
*
* @private
Expand Down Expand Up @@ -799,7 +796,7 @@ class EpiphanPearl extends instanceSkel {
for (const a in recoders) {
const recoder = recoders[a];
const updatedRecorder = {
id: parseInt(recoder.id),
id: recoder.id,
label: recoder.name
};
tempRecorders.push(updatedRecorder);
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": "epiphan-pearl",
"version": "1.0.3",
"version": "1.0.4",
"manufacturer": "Epiphan",
"product": "Pearl",
"shortname": "pearl",
Expand Down

0 comments on commit 940b583

Please sign in to comment.