pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: increase maximum subtitle size, set background blur max to 100% and increase padding on the bottom of captions view

qtchaos 35c9c85b 1fd3e37f

+3 -3
+1 -1
src/components/player/atoms/settings/CaptionSettingsView.tsx
··· 231 231 <Menu.BackLink onClick={() => router.navigate("/captions")}> 232 232 {t("player.menus.subtitles.settings.backlink")} 233 233 </Menu.BackLink> 234 - <Menu.Section className="space-y-6"> 234 + <Menu.Section className="space-y-6 pb-4"> 235 235 <CaptionSetting 236 236 label={t("player.menus.subtitles.settings.delay")} 237 237 max={10}
+2 -2
src/stores/subtitles/index.ts
··· 69 69 if (newStyling.backgroundOpacity !== undefined) 70 70 s.styling.backgroundOpacity = newStyling.backgroundOpacity; 71 71 if (newStyling.backgroundBlur !== undefined) 72 - s.styling.backgroundBlur = newStyling.backgroundBlur; 72 + s.styling.backgroundBlur = Math.min(1, newStyling.backgroundBlur); 73 73 if (newStyling.color !== undefined) 74 74 s.styling.color = newStyling.color.toLowerCase(); 75 75 if (newStyling.size !== undefined) 76 - s.styling.size = Math.min(2, Math.max(0.01, newStyling.size)); 76 + s.styling.size = Math.min(10, Math.max(0.01, newStyling.size)); 77 77 }); 78 78 }, 79 79 setLanguage(lang) {