Skip to content

Commit

Permalink
revert color change
Browse files Browse the repository at this point in the history
  • Loading branch information
aza547 committed Oct 23, 2023
1 parent 170f74c commit 0a0ba23
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
### Changed
### Fixed

## [3.19.2] - 2023-10-23
### Fixed
- Improve rejected promise handling by removing blanket rejected promise handling.
- Revert some color format changes breaking compatiblity with some platforms/players.

## [3.19.1] - 2023-10-21
### Added
Expand Down
2 changes: 1 addition & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "WarcraftRecorder",
"version": "3.19.1",
"version": "3.19.2",
"description": "A World of Warcraft screen recorder",
"main": "./dist/main/main.js",
"author": {
Expand Down
4 changes: 2 additions & 2 deletions src/main/Recorder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -385,8 +385,8 @@ export default class Recorder {

// Bit of a mess here to keep typescript happy and make this readable.
// See https://github.com/stream-labs/obs-studio-node/issues/1260.
outputFormat: EVideoFormat.I444 as unknown as osn.EVideoFormat,
colorspace: EColorSpace.CSSRGB as unknown as osn.EColorSpace,
outputFormat: EVideoFormat.NV12 as unknown as osn.EVideoFormat,
colorspace: EColorSpace.CS709 as unknown as osn.EColorSpace,
scaleType: EScaleType.Bicubic as unknown as osn.EScaleType,
fpsType: EFPSType.Fractional as unknown as osn.EFPSType,
range: colorRange as unknown as osn.ERangeType,
Expand Down

0 comments on commit 0a0ba23

Please sign in to comment.