Zed пре 4 година
родитељ
комит
3f201ba846
4 измењених фајлова са 38 додато и 37 уклоњено
  1. 1 1
      nitter.nimble
  2. 34 34
      src/prefs_impl.nim
  3. 2 1
      src/sass/index.scss
  4. 1 1
      src/views/preferences.nim

+ 1 - 1
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"

+ 34 - 34
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:

+ 2 - 1
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;

+ 1 - 1
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"):