Skip to content

Commit

Permalink
Merge remote-tracking branch 'philhk/better-plugins' into better-plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
Loukious committed Feb 20, 2024
2 parents e9da330 + 15f6501 commit 4e5a3eb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ const simpleVoiceBitrates: readonly SelectOption[] = [
{
label: "High",
value: 320
},
{
label: "Very-High",
value: 512
}
] as const;

Expand Down Expand Up @@ -167,8 +171,8 @@ export const MicrophoneSettingsModal = (props: MicrophoneSettingsModalProps) =>
onValueChange={value => setVoiceBitrate(value)}
initialValue={voiceBitrate || 8}
minValue={8}
maxValue={320}
markers={[8, 96, 320]}
maxValue={512}
markers={[8, 96, 320, 512]}
onValueRender={value => `${value.toFixed(0)}kb/s`} />
</div>
</SettingsModalCardItem>
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/betterScreenshare.desktop/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# sBetter Screenshare Plugin
# Better Screenshare Plugin

## How to use each Setting?

Expand Down

0 comments on commit 4e5a3eb

Please sign in to comment.