Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add difficulty to raid file names #301

Merged
merged 3 commits into from
Jan 20, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
remove some encoders
aza547 committed Jan 20, 2023
commit b982dbb8fdead40f306ca5c2818a63c96717a008
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [Issue 275](https://github.com/aza547/wow-recorder/issues/275) - Increase retail log timeout for better handling of M+.
- [Issue 251](https://github.com/aza547/wow-recorder/issues/251) - Fix text overflow clipping in video selection buttons.
- [Issue 293](https://github.com/aza547/wow-recorder/issues/293) - Fix to prevent adding too many audio devices in the settings.
- [Issue 294](https://github.com/aza547/wow-recorder/issues/294) - Remove a bunch of encoders that don't work with WR.

## [3.3.3] - 2023-01-14
### Fixed
6 changes: 5 additions & 1 deletion src/settings/AdvancedSettings.tsx
Original file line number Diff line number Diff line change
@@ -17,6 +17,9 @@ const obsAvailableEncoders: string[] = ipc.sendSync('settingsWindow', [
]);

const encoderMap = obsAvailableEncoders
.filter((encoder) => !encoder.includes('hevc'))
.filter((encoder) => !encoder.includes('svt'))
.filter((encoder) => !encoder.includes('aom'))
.map((encoder) => {
const isHardwareEncoder =
encoder.includes('amd') ||
@@ -26,7 +29,8 @@ const encoderMap = obsAvailableEncoders
const encoderType = isHardwareEncoder ? 'Hardware' : 'Software';
return { name: encoder, type: encoderType };
})
.sort((a, b) => a.type.localeCompare(b.type));
.sort((a, b) => a.type.localeCompare(b.type))


export default function GeneralSettings(props: ISettingsPanelProps) {
const { config, onChange } = props;