Skip to content

Commit

Permalink
fix: Change default to false for two things
Browse files Browse the repository at this point in the history
Remember volume and scroll wheel volume control

are now off by default
  • Loading branch information
VampireChicken12 committed Nov 4, 2023
1 parent 960ee57 commit c57ffe8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export const outputFolderName = "dist";
export const defaultConfiguration = {
// Options
// General
enable_scroll_wheel_volume_control: true,
enable_remember_last_volume: true,
enable_scroll_wheel_volume_control: false,
enable_remember_last_volume: false,
enable_automatically_set_quality: false,
enable_forced_playback_speed: false,
enable_volume_boost: false,
Expand All @@ -22,6 +22,7 @@ export const defaultConfiguration = {
enable_video_history: false,
enable_remaining_time: false,
enable_loop_button: false,
enable_hide_scrollbar: false,
screenshot_save_as: "file",
screenshot_format: "png",
// Images
Expand All @@ -48,6 +49,7 @@ export const configurationSchema: ConfigurationToZodSchema<configuration> = z.ob
enable_video_history: z.boolean(),
enable_remaining_time: z.boolean(),
enable_loop_button: z.boolean(),
enable_hide_scrollbar: z.boolean(),
screenshot_save_as: z.enum(screenshotType),
screenshot_format: z.enum(screenshotFormat),
osd_display_color: z.enum(onScreenDisplayColor),
Expand Down

0 comments on commit c57ffe8

Please sign in to comment.