diff --git a/lerna.json b/lerna.json index a24bfd7..1ef7aa7 100644 --- a/lerna.json +++ b/lerna.json @@ -3,5 +3,5 @@ "packages": [ "packages/*" ], - "version": "4.5.0" + "version": "5.0.0" } diff --git a/packages/nodecg-obs-scene/CHANGELOG.md b/packages/nodecg-obs-scene/CHANGELOG.md index 88a60d3..1aad12c 100644 --- a/packages/nodecg-obs-scene/CHANGELOG.md +++ b/packages/nodecg-obs-scene/CHANGELOG.md @@ -1,7 +1,53 @@ # Change Log All notable changes to this project will be documented in this file. -See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + + +# 5.0.0 (2018-12-07) + + +### Bug Fixes + +* **nodecg-obs-scene:** remove broken bower devDep ([536ccf1](https://github.com/nodecg/nodecg-obs/commit/536ccf1)) + + + + +# 4.3.0 (2018-06-01) + + + + +# 4.0.0 (2017-10-12) + + + + +## 3.2.2 (2017-09-01) + + + + +## 3.2.1 (2017-08-17) + + +### Bug Fixes + +* **nodecg-obs-scene:** add missing files to npm ([b8edb72](https://github.com/nodecg/nodecg-obs/commit/b8edb72)) + + + + +# 3.2.0 (2017-08-17) + + +### Features + +* **nodecg-obs-scene:** add nodecg-obs-scene Polymer element ([2dbeda1](https://github.com/nodecg/nodecg-obs/commit/2dbeda1)) + + + # [4.3.0](https://github.com/nodecg/nodecg-obs/compare/v4.2.0...v4.3.0) (2018-06-01) diff --git a/packages/nodecg-obs-scene/package.json b/packages/nodecg-obs-scene/package.json index 1f3212a..e1e8010 100644 --- a/packages/nodecg-obs-scene/package.json +++ b/packages/nodecg-obs-scene/package.json @@ -1,6 +1,6 @@ { "name": "nodecg-obs-scene", - "version": "4.3.0", + "version": "5.0.0", "description": "A NodeCG utility that provides a UI for configuring a connection to OBS via obs-websocket", "main": "nodecg-obs-scene.html", "files": [ diff --git a/packages/nodecg-utility-obs/CHANGELOG.md b/packages/nodecg-utility-obs/CHANGELOG.md index 0388006..1411531 100644 --- a/packages/nodecg-utility-obs/CHANGELOG.md +++ b/packages/nodecg-utility-obs/CHANGELOG.md @@ -1,7 +1,234 @@ # Change Log All notable changes to this project will be documented in this file. -See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + + +# 5.0.0 (2018-12-07) + + + + +# 4.4.0 (2018-06-05) + + +### Features + +* **nodecg-utility-obs:** forward all data from TransitionBegin event ([cf1563d](https://github.com/nodecg/nodecg-obs/commit/cf1563d)) + + + + +## 4.3.1 (2018-06-01) + + +### Bug Fixes + +* **nodecg-utility-obs:** add callback handlers for message listeners which were missing them ([5325755](https://github.com/nodecg/nodecg-obs/commit/5325755)) + + + + +# 4.3.0 (2018-06-01) + + +### Features + +* **nodecg-utility-obs:** add optional `sceneName` param to receivable `obs:transition` event ([eb91083](https://github.com/nodecg/nodecg-obs/commit/eb91083)) + + + + +# 4.2.0 (2018-05-24) + + +### Features + +* **nodecg-utility-obs:** add `toScene` and `fromScene` properties to the `obs:transitioning` event ([41fa986](https://github.com/nodecg/nodecg-obs/commit/41fa986)) + + + + +## 4.1.2 (2017-10-18) + + +### Bug Fixes + +* **nodecg-utility-obs:** avoid getting stuck in the "transitioning" state when a transition fails ([158149d](https://github.com/nodecg/nodecg-obs/commit/158149d)) + + + + +## 4.1.1 (2017-10-17) + + +### Bug Fixes + +* **nodecg-utility-obs:** improve logging of transition errors to include name and duration when modified by a hook ([d6d7d8d](https://github.com/nodecg/nodecg-obs/commit/d6d7d8d)) + + + + +# 4.1.0 (2017-10-17) + + +### Features + +* **nodecg-utility-obs:** include the name and duration of the transition when logging a transition error ([6f4a963](https://github.com/nodecg/nodecg-obs/commit/6f4a963)) + + + + +## 4.0.2 (2017-10-16) + + +### Bug Fixes + +* **nodecg-utility-obs:** set `transitioning` to true before invoking a transition ([391648f](https://github.com/nodecg/nodecg-obs/commit/391648f)) + + + + +## 4.0.1 (2017-10-12) + + +### Bug Fixes + +* **nodecg-utility-obs:** revert obs-websocket-js to 0.7.0 ([d8ba6be](https://github.com/nodecg/nodecg-obs/commit/d8ba6be)) + + + + +# 4.0.0 (2017-10-12) + + +### Features + +* **nodecg-utility-obs:** allow specifying a duration in the obs:transition message ([c744088](https://github.com/nodecg/nodecg-obs/commit/c744088)) +* **nodecg-utility-obs:** update obs-websocket-js to v0.9.0 ([8ef4b49](https://github.com/nodecg/nodecg-obs/commit/8ef4b49)) + + +### BREAKING CHANGES + +* **nodecg-utility-obs:** Changed the argument to the `obs:transition` message to be an object with `name` and `duration` properties, instead of being just a string which specified the transition name. + + + + +## 3.2.2 (2017-09-01) + + +### Bug Fixes + +* ensure port is a number before trying to connect ([af589f2](https://github.com/nodecg/nodecg-obs/commit/af589f2)) + + + + +## 3.1.3 (2017-08-05) + + +### Bug Fixes + +* **nodecg-utility-obs:** fix cases where reconnect would never start ([33ecb13](https://github.com/nodecg/nodecg-obs/commit/33ecb13)) + + + + +## 3.1.2 (2017-08-05) + + +### Bug Fixes + +* **nodecg-utility-obs:** fix the previous commit not actually doing anything except logspam ([5ed2125](https://github.com/nodecg/nodecg-obs/commit/5ed2125)) + + + + +## 3.1.1 (2017-08-04) + + +### Bug Fixes + +* **nodecg-utility-obs:** detect rare cases where a disconnect happens but no ConnectionClosed event is emitted ([2f69dec](https://github.com/nodecg/nodecg-obs/commit/2f69dec)) + + + + +# 3.1.0 (2017-07-28) + + +### Features + +* **nodecg-utility-obs:** add studioMode boolean replicant ([cc69522](https://github.com/nodecg/nodecg-obs/commit/cc69522)) + + + + +## 3.0.2 (2017-06-21) + + +### Bug Fixes + +* **nodecg-utility-obs:** fix validation error when previewScene is null ([0f30046](https://github.com/nodecg/nodecg-obs/commit/0f30046)) + + + + +## 3.0.1 (2017-06-20) + + +### Bug Fixes + +* **nodecg-utility-obs:** don't throw when a scene transition begins while not in studio mode ([cfa9b84](https://github.com/nodecg/nodecg-obs/commit/cfa9b84)) + + + + +# 3.0.0 (2017-06-17) + + +### Bug Fixes + +* **replicants:** set the previewScene replicant value to null when not in studio mode, instead of erroring ([ef2176f](https://github.com/nodecg/nodecg-obs/commit/ef2176f)) + + +### BREAKING CHANGES + +* **replicants:** _getPreviewScene will no longer reject when OBS is not in studio mode. It will instead set the previewScene replicant's `value` to `null`. + + + + +## 2.0.4 (2017-06-01) + + +### Bug Fixes + +* **replicants:** use "null" as the default value for the previewScene and programScene replicants ([f86527e](https://github.com/nodecg/nodecg-obs/commit/f86527e)) + + + + +## 2.0.3 (2017-06-01) + + + + +## 2.0.1 (2017-05-31) + + +### Bug Fixes + +* **package:** include schemas in nodecg-utility-obs npm tarball ([50ad33f](https://github.com/nodecg/nodecg-obs/commit/50ad33f)) + + + + +# 2.0.0 (2017-05-31) + + + # [4.4.0](https://github.com/nodecg/nodecg-obs/compare/v4.3.1...v4.4.0) (2018-06-05) diff --git a/packages/nodecg-utility-obs/package.json b/packages/nodecg-utility-obs/package.json index 925e0fe..6e686e9 100644 --- a/packages/nodecg-utility-obs/package.json +++ b/packages/nodecg-utility-obs/package.json @@ -1,6 +1,6 @@ { "name": "nodecg-utility-obs", - "version": "4.4.0", + "version": "5.0.0", "description": "A NodeCG utility that exposes a set of Replicants, Messages, and other hooks for interacting with OBS via obs-websocket", "main": "dist/index.js", "scripts": { diff --git a/packages/nodecg-widget-obs/CHANGELOG.md b/packages/nodecg-widget-obs/CHANGELOG.md index 48c0962..f381aef 100644 --- a/packages/nodecg-widget-obs/CHANGELOG.md +++ b/packages/nodecg-widget-obs/CHANGELOG.md @@ -1,7 +1,103 @@ # Change Log All notable changes to this project will be documented in this file. -See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + + +# 5.0.0 (2018-12-07) + + + + +# 4.5.0 (2018-06-17) + + +### Features + +* **nodecg-widget-obs:** show names in tabs ([9116953](https://github.com/nodecg/nodecg-obs/commit/9116953)) + + + + +# 4.3.0 (2018-06-01) + + + + +# 4.0.0 (2017-10-12) + + + + +## 3.2.2 (2017-09-01) + + +### Bug Fixes + +* ensure port is a number before trying to connect ([af589f2](https://github.com/nodecg/nodecg-obs/commit/af589f2)) + + + + +# 3.2.0 (2017-08-17) + + + + +# 3.1.0 (2017-07-28) + + + + +## 2.0.5 (2017-06-03) + + +### Bug Fixes + +* **nodecg-widget-obs:** fix case where no controls would be shown ([c61b5f6](https://github.com/nodecg/nodecg-obs/commit/c61b5f6)) + + + + +## 2.0.4 (2017-06-01) + + + + +## 2.0.3 (2017-06-01) + + +### Bug Fixes + +* **package:** bump nodecg-toast dep in nodecg-widget-obs ([d4b57e6](https://github.com/nodecg/nodecg-obs/commit/d4b57e6)) + + + + +## 2.0.2 (2017-05-31) + + +### Bug Fixes + +* **package:** include bower.json in nodecg-widget-obs npm tarball ([b25eac6](https://github.com/nodecg/nodecg-obs/commit/b25eac6)) + + + + +## 2.0.1 (2017-05-31) + + +### Bug Fixes + +* **package:** exclude unnecessary files in nodecg-widget-obs tarball ([9d431e9](https://github.com/nodecg/nodecg-obs/commit/9d431e9)) + + + + +# 2.0.0 (2017-05-31) + + + # [4.5.0](https://github.com/nodecg/nodecg-obs/compare/v4.4.0...v4.5.0) (2018-06-17) diff --git a/packages/nodecg-widget-obs/package.json b/packages/nodecg-widget-obs/package.json index 9d2abfd..308de3a 100644 --- a/packages/nodecg-widget-obs/package.json +++ b/packages/nodecg-widget-obs/package.json @@ -1,6 +1,6 @@ { "name": "nodecg-widget-obs", - "version": "4.5.0", + "version": "5.0.0", "description": "A NodeCG utility that provides a UI for configuring a connection to OBS via obs-websocket", "main": "nodecg-widget-obs.html", "files": [