diff --git a/nitter.nimble b/nitter.nimble index c88509c..c83437b 100644 --- a/nitter.nimble +++ b/nitter.nimble @@ -28,4 +28,4 @@ requires "flatty#0.2.3" # Tasks task scss, "Generate css": - exec "nim c --hint[Processing]:off -r tools/gencss" + exec "nim c --hint[Processing]:off -d:danger -r tools/gencss" diff --git a/src/prefs_impl.nim b/src/prefs_impl.nim index d97b50a..d4a0b6b 100644 --- a/src/prefs_impl.nim +++ b/src/prefs_impl.nim @@ -50,45 +50,12 @@ macro genPrefs*(prefDsl: untyped) = const `name`*: PrefList = toOrderedTable(`table`) genPrefs: - Privacy: - replaceTwitter(input, "nitter.net"): - "Replace Twitter links with Nitter (blank to disable)" - placeholder: "Nitter hostname" - - replaceYouTube(input, "piped.kavin.rocks"): - "Replace YouTube links with Piped/Invidious (blank to disable)" - placeholder: "Piped hostname" - - replaceReddit(input, "teddit.net"): - "Replace Reddit links with Teddit/Libreddit (blank to disable)" - placeholder: "Teddit hostname" - - replaceInstagram(input, ""): - "Replace Instagram links with Bibliogram (blank to disable)" - placeholder: "Bibliogram hostname" - - Media: - mp4Playback(checkbox, true): - "Enable mp4 video playback" - - hlsPlayback(checkbox, false): - "Enable hls video streaming (requires JavaScript)" - - proxyVideos(checkbox, true): - "Proxy video streaming through the server (might be slow)" - - muteVideos(checkbox, false): - "Mute videos by default" - - autoplayGifs(checkbox, true): - "Autoplay gifs" - Display: theme(select, "Nitter"): "Theme" infiniteScroll(checkbox, false): - "Infinite scrolling (requires JavaScript, experimental!)" + "Infinite scrolling (experimental, requires JavaScript)" stickyProfile(checkbox, true): "Make profile sidebar stick to top" @@ -108,6 +75,39 @@ genPrefs: hideReplies(checkbox, false): "Hide tweet replies" + Media: + mp4Playback(checkbox, true): + "Enable mp4 video playback (only for gifs)" + + hlsPlayback(checkbox, false): + "Enable hls video streaming (requires JavaScript)" + + proxyVideos(checkbox, true): + "Proxy video streaming through the server (might be slow)" + + muteVideos(checkbox, false): + "Mute videos by default" + + autoplayGifs(checkbox, true): + "Autoplay gifs" + + "Link replacements (blank to disable)": + replaceTwitter(input, "nitter.net"): + "Twitter -> Nitter" + placeholder: "Nitter hostname" + + replaceYouTube(input, "piped.kavin.rocks"): + "YouTube -> Piped/Invidious" + placeholder: "Piped hostname" + + replaceReddit(input, "teddit.net"): + "Reddit -> Teddit/Libreddit" + placeholder: "Teddit hostname" + + replaceInstagram(input, ""): + "Instagram -> Bibliogram" + placeholder: "Bibliogram hostname" + iterator allPrefs*(): Pref = for k, v in prefList: for pref in v: diff --git a/src/sass/index.scss b/src/sass/index.scss index 9e048b6..9e2e347 100644 --- a/src/sass/index.scss +++ b/src/sass/index.scss @@ -91,11 +91,12 @@ legend { padding: .6em 0 .3em 0; border: 0; font-size: 16px; + font-weight: 600; border-bottom: 1px solid var(--border_grey); margin-bottom: 8px; } -.cookie-note { +.preferences .note { border-top: 1px solid var(--border_grey); border-bottom: 1px solid var(--border_grey); padding: 6px 0 8px 0; diff --git a/src/views/preferences.nim b/src/views/preferences.nim index ab1c70b..3aa2ac1 100644 --- a/src/views/preferences.nim +++ b/src/views/preferences.nim @@ -40,7 +40,7 @@ proc renderPreferences*(prefs: Prefs; path: string; themes: seq[string]): VNode renderPrefs() - h4(class="cookie-note"): + h4(class="note"): text "Preferences are stored client-side using cookies without any personal information." button(`type`="submit", class="pref-submit"):