From c8805f107868ac4fc693243bef2b1cfb32a35991 Mon Sep 17 00:00:00 2001 From: Leopardus Date: Tue, 6 Apr 2021 01:23:14 +0200 Subject: [PATCH 001/441] Add opensearch support --- static/opensearch.xml | 11 +++++++++++ templates/base.html | 2 ++ 2 files changed, 13 insertions(+) create mode 100644 static/opensearch.xml diff --git a/static/opensearch.xml b/static/opensearch.xml new file mode 100644 index 0000000..5bc037d --- /dev/null +++ b/static/opensearch.xml @@ -0,0 +1,11 @@ + + Search Libreddit + Search for whatever you want on Libreddit, awesome Reddit frontend + UTF-8 + /favicon.ico + + + + /search + diff --git a/templates/base.html b/templates/base.html index 6caad37..598bca8 100644 --- a/templates/base.html +++ b/templates/base.html @@ -16,6 +16,8 @@ + + From 6c202a59b0c480b07c5e659f65ee2f5526a16159 Mon Sep 17 00:00:00 2001 From: Connor Holloway Date: Sat, 18 Jun 2022 22:53:30 +0100 Subject: [PATCH 002/441] Make the fixed navbar optional Adds another on/off preference (default: on, keeps same behaviour) for the fixed navbar. When off the navbar will not remain at the top of the page when scrolling. This is useful for small displays such as phones where otherwise the navbar takes up a sizeable portion of the viewport. --- README.md | 1 + src/settings.rs | 3 ++- src/utils.rs | 12 ++++++++++++ static/style.css | 11 +++++++++-- templates/base.html | 6 ++++-- templates/settings.html | 5 +++++ 6 files changed, 33 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 48dea6b..277c829 100644 --- a/README.md +++ b/README.md @@ -272,6 +272,7 @@ Assign a default value for each setting by passing environment variables to Libr | `USE_HLS` | `["on", "off"]` | `off` | | `HIDE_HLS_NOTIFICATION` | `["on", "off"]` | `off` | | `AUTOPLAY_VIDEOS` | `["on", "off"]` | `off` | +| `FIXED_NAVBAR` | `["on", "off"]` | `on` | ### Examples diff --git a/src/settings.rs b/src/settings.rs index 9cdd266..aa6c231 100644 --- a/src/settings.rs +++ b/src/settings.rs @@ -19,7 +19,7 @@ struct SettingsTemplate { // CONSTANTS -const PREFS: [&str; 10] = [ +const PREFS: [&str; 11] = [ "theme", "front_page", "layout", @@ -30,6 +30,7 @@ const PREFS: [&str; 10] = [ "use_hls", "hide_hls_notification", "autoplay_videos", + "fixed_navbar", ]; // FUNCTIONS diff --git a/src/utils.rs b/src/utils.rs index 2691d16..0937cce 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -450,6 +450,7 @@ pub struct Preferences { pub hide_hls_notification: String, pub use_hls: String, pub autoplay_videos: String, + pub fixed_navbar: String, pub comment_sort: String, pub post_sort: String, pub subscriptions: Vec, @@ -481,6 +482,7 @@ impl Preferences { use_hls: setting(&req, "use_hls"), hide_hls_notification: setting(&req, "hide_hls_notification"), autoplay_videos: setting(&req, "autoplay_videos"), + fixed_navbar: setting_or_default(&req, "fixed_navbar", "on".to_string()), comment_sort: setting(&req, "comment_sort"), post_sort: setting(&req, "post_sort"), subscriptions: setting(&req, "subscriptions").split('+').map(String::from).filter(|s| !s.is_empty()).collect(), @@ -540,6 +542,16 @@ pub fn setting(req: &Request, name: &str) -> String { .to_string() } +// Retrieve the value of a setting by name or the default value +pub fn setting_or_default(req: &Request, name: &str, default: String) -> String { + let value = setting(req, name); + if !value.is_empty() { + value + } else { + default + } +} + // Detect and redirect in the event of a random subreddit pub async fn catch_random(sub: &str, additional: &str) -> Result, String> { if sub == "random" || sub == "randnsfw" { diff --git a/static/style.css b/static/style.css index 3e0d64d..e21a5c4 100644 --- a/static/style.css +++ b/static/style.css @@ -69,6 +69,9 @@ pre, form, fieldset, table, th, td, select, input { body { background: var(--background); font-size: 15px; +} + +body.fixed_navbar { padding-top: 60px; } @@ -88,8 +91,12 @@ nav { z-index: 2; top: 0; padding: 5px 15px; + margin-bottom: 10px; min-height: 40px; width: calc(100% - 30px); +} + +nav.fixed_navbar { position: fixed; } @@ -1237,7 +1244,7 @@ td, th { /* Mobile */ @media screen and (max-width: 800px) { - body { padding-top: 120px } + body.fixed_navbar { padding-top: 120px } main { flex-direction: column-reverse; @@ -1279,7 +1286,7 @@ td, th { } @media screen and (max-width: 480px) { - body { padding-top: 100px; } + body.fixed_navbar { padding-top: 100px; } #version { display: none; } .post { diff --git a/templates/base.html b/templates/base.html index f30aaaf..f9928ea 100644 --- a/templates/base.html +++ b/templates/base.html @@ -25,9 +25,11 @@ + {% if prefs.theme != "system" %} {{ prefs.theme }}{% endif %} + {% if prefs.fixed_navbar == "on" %} fixed_navbar{% endif %}"> - @@ -71,10 +63,16 @@ {% endblock %} {% endblock %} + + {% block footer %} {% endblock %} From 51cdf574f704ebbdc7275a74079aea1f4b749fe8 Mon Sep 17 00:00:00 2001 From: Daniel Valentine Date: Wed, 8 Mar 2023 22:15:31 -0700 Subject: [PATCH 070/441] v0.30.0 --- CREDITS | 1 + Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CREDITS b/CREDITS index 468b8ac..9529880 100644 --- a/CREDITS +++ b/CREDITS @@ -59,6 +59,7 @@ Nicholas Christopher Nick Lowery Nico NKIPSC <15067635+NKIPSC@users.noreply.github.com> +o69mar <119129086+o69mar@users.noreply.github.com> obeho <71698631+obeho@users.noreply.github.com> obscurity Om G <34579088+OxyMagnesium@users.noreply.github.com> diff --git a/Cargo.lock b/Cargo.lock index 4495730..04c4d03 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -704,7 +704,7 @@ dependencies = [ [[package]] name = "libreddit" -version = "0.29.4" +version = "0.30.0" dependencies = [ "askama", "brotli", diff --git a/Cargo.toml b/Cargo.toml index ab998ed..6ee8fe0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "libreddit" description = " Alternative private front-end to Reddit" license = "AGPL-3.0" repository = "https://github.com/spikecodes/libreddit" -version = "0.29.4" +version = "0.30.0" authors = ["spikecodes <19519553+spikecodes@users.noreply.github.com>"] edition = "2021" From 741613e27f8cb658b3d66eaa20c0112c4458d9f4 Mon Sep 17 00:00:00 2001 From: Yaroslav Chvanov Date: Thu, 9 Mar 2023 15:11:47 +0300 Subject: [PATCH 071/441] Ignore errors while fetching subreddit names in subscriptions_filters() If we can't retrieve subreddit name, just use the user-supplied name. This fixes banned subreddits being impossible to to unfilter or unsubscribe from. A drawback of such approach is that it might be possible to subscribe to a subreddit twice with different casing, however the chance of this is extremely low. --- src/subreddit.rs | 38 +++++++++++++++++++++++--------------- 1 file changed, 23 insertions(+), 15 deletions(-) diff --git a/src/subreddit.rs b/src/subreddit.rs index e253885..78cd934 100644 --- a/src/subreddit.rs +++ b/src/subreddit.rs @@ -211,19 +211,23 @@ pub async fn subscriptions_filters(req: Request) -> Result, let mut filters = preferences.filters; // Retrieve list of posts for these subreddits to extract display names - let posts = json(format!("/r/{}/hot.json?raw_json=1", sub), true).await?; - let display_lookup: Vec<(String, &str)> = posts["data"]["children"] - .as_array() - .map(|list| { - list - .iter() - .map(|post| { - let display_name = post["data"]["subreddit"].as_str().unwrap_or_default(); - (display_name.to_lowercase(), display_name) - }) - .collect::>() - }) - .unwrap_or_default(); + + let posts = json(format!("/r/{}/hot.json?raw_json=1", sub), true).await; + let display_lookup: Vec<(String, &str)> = match &posts { + Ok(posts) => posts["data"]["children"] + .as_array() + .map(|list| { + list + .iter() + .map(|post| { + let display_name = post["data"]["subreddit"].as_str().unwrap_or_default(); + (display_name.to_lowercase(), display_name) + }) + .collect::>() + }) + .unwrap_or_default(), + Err(_) => vec![], + }; // Find each subreddit name (separated by '+') in sub parameter for part in sub.split('+').filter(|x| x != &"") { @@ -237,8 +241,12 @@ pub async fn subscriptions_filters(req: Request) -> Result, } else { // This subreddit display name isn't known, retrieve it let path: String = format!("/r/{}/about.json?raw_json=1", part); - display = json(path, true).await?; - display["data"]["display_name"].as_str().ok_or_else(|| "Failed to query subreddit name".to_string())? + display = json(path, true).await; + match &display { + Ok(display) => display["data"]["display_name"].as_str(), + Err(_) => None, + } + .unwrap_or(part) }; // Modify sub list based on action From aeeb066e47cfac742151891eb6f0a3691c85daae Mon Sep 17 00:00:00 2001 From: xatier Date: Fri, 10 Mar 2023 20:04:05 -0800 Subject: [PATCH 072/441] Update README.md (#748) * Remove duplicated config Was accidentally introduced in https://github.com/libreddit/libreddit/commit/412ce8f1f3ab7ef91f8a40182aee2a039bd7783b --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index a0d4786..ff825ed 100644 --- a/README.md +++ b/README.md @@ -231,7 +231,6 @@ Assign a default value for each user-modifiable setting by passing environment v | `USE_HLS` | `["on", "off"]` | `off` | | `HIDE_HLS_NOTIFICATION` | `["on", "off"]` | `off` | | `AUTOPLAY_VIDEOS` | `["on", "off"]` | `off` | -| `HIDE_AWARDS` | `["on", "off"]` | `off` | | `SUBSCRIPTIONS` | `+`-delimited list of subreddits (`sub1+sub2+sub3+...`) | _(none)_ | | `HIDE_AWARDS` | `["on", "off"]` | `off` | `DISABLE_VISIT_REDDIT_CONFIRMATION` | `["on", "off"]` | `off` | From aece392a860157eab458795df54fcf86360a7622 Mon Sep 17 00:00:00 2001 From: Daniel Valentine Date: Fri, 10 Mar 2023 21:33:45 -0700 Subject: [PATCH 073/441] Pad bottom of body to prevent footer collision (fixes #747) --- static/style.css | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/static/style.css b/static/style.css index bfe41c4..d64ad67 100644 --- a/static/style.css +++ b/static/style.css @@ -26,6 +26,8 @@ --popup-goback-background: var(--popup-red); --popup-goback-text: #222; --popup-border: 1px solid var(--popup-red); + + --footer-height: 30px; } @font-face { @@ -99,6 +101,7 @@ body { background: var(--background); font-size: 15px; padding-top: 60px; + padding-bottom: var(--footer-height); min-height: calc(100vh - 60px); position: relative; } @@ -1505,7 +1508,10 @@ td, th { /* Mobile */ @media screen and (max-width: 800px) { - body { padding-top: 120px } + body { + padding-top: 120px; + padding-bottom: var(--footer-height); + } main { flex-direction: column-reverse; @@ -1547,7 +1553,10 @@ td, th { } @media screen and (max-width: 480px) { - body { padding-top: 100px; } + body { + padding-top: 100px; + padding-bottom: var(--footer-height); + } .post { grid-template: "post_header post_header post_thumbnail" auto From f62f7bf20000e7a74b7a0a056eff7ffc5b7705f7 Mon Sep 17 00:00:00 2001 From: Daniel Valentine Date: Fri, 10 Mar 2023 21:34:42 -0700 Subject: [PATCH 074/441] v0.30.1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6ee8fe0..fe0d8df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "libreddit" description = " Alternative private front-end to Reddit" license = "AGPL-3.0" repository = "https://github.com/spikecodes/libreddit" -version = "0.30.0" +version = "0.30.1" authors = ["spikecodes <19519553+spikecodes@users.noreply.github.com>"] edition = "2021" From 6d652fc38cf0a75c2b10b54b681d37b6dd8ae7af Mon Sep 17 00:00:00 2001 From: Vivek Date: Sun, 12 Mar 2023 23:36:25 -0700 Subject: [PATCH 075/441] optimize arm dockerfile --- Dockerfile.arm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile.arm b/Dockerfile.arm index 098bf13..ea849b4 100644 --- a/Dockerfile.arm +++ b/Dockerfile.arm @@ -7,6 +7,10 @@ RUN apk add --no-cache g++ git WORKDIR /usr/src/libreddit +# cache dependencies in their own layer +COPY Cargo.lock Cargo.toml . +RUN mkdir src && echo "fn main() {}" > src/main.rs && cargo install --config net.git-fetch-with-cli=true --path . && rm -rf ./src + COPY . . # net.git-fetch-with-cli is specified in order to prevent a potential OOM kill From eb0928acc3a5f645f925f57878e9585f2489fbc3 Mon Sep 17 00:00:00 2001 From: mikupls <93015331+mikupls@users.noreply.github.com> Date: Tue, 14 Mar 2023 22:21:41 +0100 Subject: [PATCH 076/441] add link to reddit status page. --- templates/error.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/error.html b/templates/error.html index 00f9e28..65cb02e 100644 --- a/templates/error.html +++ b/templates/error.html @@ -4,6 +4,8 @@ {% block content %}

{{ msg }}

+

Reddit Status

+

Head back home?

{% endblock %} \ No newline at end of file From 6bcc4aa36844c201fe7a98a74750a81a4066a9c0 Mon Sep 17 00:00:00 2001 From: Daniel Valentine Date: Fri, 17 Mar 2023 09:36:52 -0600 Subject: [PATCH 077/441] Update version string in Cargo.lock. --- Cargo.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 04c4d03..287b111 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -704,7 +704,7 @@ dependencies = [ [[package]] name = "libreddit" -version = "0.30.0" +version = "0.30.1" dependencies = [ "askama", "brotli", From e25622dac29b609f80770e3721ff4e11106cf0b5 Mon Sep 17 00:00:00 2001 From: kuanhulio <66286575+kuanhulio@users.noreply.github.com> Date: Fri, 17 Mar 2023 12:17:01 -0400 Subject: [PATCH 078/441] harden docker-compose.yml (#760) `user: nobody`: the least privileged account. `read_only: true`: this container doesn't write anything to the filesystem, this removes a vector. `security_opt`: disallows the container to grab more privileges. `cap_drop`: this container doesn't need any capabilities, drop them. `networks`: put `libreddit` into its own network so it cannot see other containers by default. --- docker-compose.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docker-compose.yml b/docker-compose.yml index 2688e9d..ad0fd1f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,7 +7,18 @@ services: container_name: "libreddit" ports: - 8080:8080 + user: nobody + read_only: true + security_opt: + - no-new-privileges:true + cap_drop: + - ALL + networks: + - libreddit healthcheck: test: ["CMD", "wget", "--spider", "-q", "--tries=1", "http://localhost:8080/settings"] interval: 5m timeout: 3s + +networks: + libreddit: From df3d894947b9dd11d7927438c2f809d6204135e8 Mon Sep 17 00:00:00 2001 From: gmnsii Date: Wed, 22 Mar 2023 20:08:20 -0700 Subject: [PATCH 079/441] Add option to hide score Add the option to hide score for posts and comments in preferences. There is still however a blank margin where the score is supposed to be. --- README.md | 3 ++- app.json | 3 +++ src/config.rs | 5 +++++ src/instance_info.rs | 3 +++ src/settings.rs | 3 ++- src/utils.rs | 2 ++ templates/comment.html | 2 ++ templates/duplicates.html | 4 +++- templates/search.html | 2 ++ templates/settings.html | 7 ++++++- templates/user.html | 2 ++ templates/utils.html | 5 ++++- 12 files changed, 36 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ff825ed..e1df1ad 100644 --- a/README.md +++ b/README.md @@ -219,7 +219,7 @@ Assign a default value for each instance-specific setting by passing environment Assign a default value for each user-modifiable setting by passing environment variables to Libreddit in the format `LIBREDDIT_DEFAULT_{Y}`. Replace `{Y}` with the setting name (see list below) in capital letters. | Name | Possible values | Default value | -|-------------------------|-----------------------------------------------------------------------------------------------------|---------------| +|------------------------|-----------------------------------------------------------------------------------------------------|---------------| | `THEME` | `["system", "light", "dark", "black", "dracula", "nord", "laserwave", "violet", "gold", "rosebox", "gruvboxdark", "gruvboxlight"]` | `system` | | `FRONT_PAGE` | `["default", "popular", "all"]` | `default` | | `LAYOUT` | `["card", "clean", "compact"]` | `card` | @@ -233,6 +233,7 @@ Assign a default value for each user-modifiable setting by passing environment v | `AUTOPLAY_VIDEOS` | `["on", "off"]` | `off` | | `SUBSCRIPTIONS` | `+`-delimited list of subreddits (`sub1+sub2+sub3+...`) | _(none)_ | | `HIDE_AWARDS` | `["on", "off"]` | `off` +| `HIDE_SCORE` | `["on", "off"]` | `off` | `DISABLE_VISIT_REDDIT_CONFIRMATION` | `["on", "off"]` | `off` | You can also configure Libreddit with a configuration file. An example `libreddit.toml` can be found below: diff --git a/app.json b/app.json index b4e0f3d..fee713a 100644 --- a/app.json +++ b/app.json @@ -47,6 +47,9 @@ "LIBREDDIT_DEFAULT_HIDE_AWARDS": { "required": false }, + "LIBREDDIT_DEFAULT_HIDE_SCORE": { + "required": false + }, "LIBREDDIT_BANNER": { "required": false }, diff --git a/src/config.rs b/src/config.rs index b552504..5ece232 100644 --- a/src/config.rs +++ b/src/config.rs @@ -52,6 +52,9 @@ pub struct Config { #[serde(rename = "LIBREDDIT_DEFAULT_HIDE_AWARDS")] pub(crate) default_hide_awards: Option, + #[serde(rename = "LIBREDDIT_DEFAULT_HIDE_SCORE")] + pub(crate) default_hide_score: Option, + #[serde(rename = "LIBREDDIT_DEFAULT_SUBSCRIPTIONS")] pub(crate) default_subscriptions: Option, @@ -87,6 +90,7 @@ impl Config { default_use_hls: parse("LIBREDDIT_DEFAULT_USE_HLS"), default_hide_hls_notification: parse("LIBREDDIT_DEFAULT_HIDE_HLS"), default_hide_awards: parse("LIBREDDIT_DEFAULT_HIDE_AWARDS"), + default_hide_score: parse("LIBREDDIT_DEFAULT_HIDE_SCORE"), default_subscriptions: parse("LIBREDDIT_DEFAULT_SUBSCRIPTIONS"), default_disable_visit_reddit_confirmation: parse("LIBREDDIT_DEFAULT_DISABLE_VISIT_REDDIT_CONFIRMATION"), banner: parse("LIBREDDIT_BANNER"), @@ -108,6 +112,7 @@ fn get_setting_from_config(name: &str, config: &Config) -> Option { "LIBREDDIT_DEFAULT_HIDE_HLS_NOTIFICATION" => config.default_hide_hls_notification.clone(), "LIBREDDIT_DEFAULT_WIDE" => config.default_wide.clone(), "LIBREDDIT_DEFAULT_HIDE_AWARDS" => config.default_hide_awards.clone(), + "LIBREDDIT_DEFAULT_HIDE_SCORE" => config.default_hide_score.clone(), "LIBREDDIT_DEFAULT_SUBSCRIPTIONS" => config.default_subscriptions.clone(), "LIBREDDIT_DEFAULT_DISABLE_VISIT_REDDIT_CONFIRMATION" => config.default_disable_visit_reddit_confirmation.clone(), "LIBREDDIT_BANNER" => config.banner.clone(), diff --git a/src/instance_info.rs b/src/instance_info.rs index f61796c..4a8044f 100644 --- a/src/instance_info.rs +++ b/src/instance_info.rs @@ -129,6 +129,7 @@ impl InstanceInfo { container.add_table( Table::from([ ["Hide awards", &convert(&self.config.default_hide_awards)], + ["Hide score", &convert(&self.config.default_hide_score)], ["Theme", &convert(&self.config.default_theme)], ["Front page", &convert(&self.config.default_front_page)], ["Layout", &convert(&self.config.default_layout)], @@ -158,6 +159,7 @@ impl InstanceInfo { Config:\n Banner: {:?}\n Hide awards: {:?}\n + Hide score: {:?}\n Default theme: {:?}\n Default front page: {:?}\n Default layout: {:?}\n @@ -177,6 +179,7 @@ impl InstanceInfo { self.config.sfw_only, self.config.banner, self.config.default_hide_awards, + self.config.default_hide_score, self.config.default_theme, self.config.default_front_page, self.config.default_layout, diff --git a/src/settings.rs b/src/settings.rs index 3dd4e45..f0aa6e9 100644 --- a/src/settings.rs +++ b/src/settings.rs @@ -19,7 +19,7 @@ struct SettingsTemplate { // CONSTANTS -const PREFS: [&str; 13] = [ +const PREFS: [&str; 14] = [ "theme", "front_page", "layout", @@ -32,6 +32,7 @@ const PREFS: [&str; 13] = [ "hide_hls_notification", "autoplay_videos", "hide_awards", + "hide_score", "disable_visit_reddit_confirmation", ]; diff --git a/src/utils.rs b/src/utils.rs index e6cb2f7..ab79eb7 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -519,6 +519,7 @@ pub struct Preferences { pub subscriptions: Vec, pub filters: Vec, pub hide_awards: String, + pub hide_score: String, } #[derive(RustEmbed)] @@ -553,6 +554,7 @@ impl Preferences { subscriptions: setting(&req, "subscriptions").split('+').map(String::from).filter(|s| !s.is_empty()).collect(), filters: setting(&req, "filters").split('+').map(String::from).filter(|s| !s.is_empty()).collect(), hide_awards: setting(&req, "hide_awards"), + hide_score: setting(&req, "hide_score"), } } } diff --git a/templates/comment.html b/templates/comment.html index f3d0f27..22b3c4f 100644 --- a/templates/comment.html +++ b/templates/comment.html @@ -5,7 +5,9 @@ {% else if kind == "t1" %}
+ {% if prefs.hide_score != "on" %}

{{ score.0 }}

+ {% endif %}
diff --git a/templates/duplicates.html b/templates/duplicates.html index 4344325..cf70a90 100644 --- a/templates/duplicates.html +++ b/templates/duplicates.html @@ -82,8 +82,10 @@ {% endif %} {{ post.title }}{% if post.flags.nsfw %} NSFW{% endif %} - + + {% if prefs.hide_score != "on" %}
{{ post.score.0 }} Upvotes
+ {% endif %} diff --git a/templates/search.html b/templates/search.html index 4fc0c4d..3678c43 100644 --- a/templates/search.html +++ b/templates/search.html @@ -77,7 +77,9 @@ {% else %}
+ {% if prefs.hide_score != "on" %}

{{ post.score.0 }}

+ {% endif %}
diff --git a/templates/settings.html b/templates/settings.html index a7cc8dc..e70bfcd 100644 --- a/templates/settings.html +++ b/templates/settings.html @@ -90,6 +90,11 @@
+
+ + + +
@@ -132,7 +137,7 @@

Note: settings and subscriptions are saved in browser cookies. Clearing your cookies will reset them.


-

You can restore your current settings and subscriptions after clearing your cookies using this link.

+

You can restore your current settings and subscriptions after clearing your cookies using this link.

diff --git a/templates/user.html b/templates/user.html index a72cce0..e8f806c 100644 --- a/templates/user.html +++ b/templates/user.html @@ -52,7 +52,9 @@ {% else %}
+ {% if prefs.hide_score != "on" %}

{{ post.score.0 }}

+ {% endif %}
diff --git a/templates/utils.html b/templates/utils.html index 3fdd76d..1c52c59 100644 --- a/templates/utils.html +++ b/templates/utils.html @@ -147,7 +147,9 @@
{{ post.body|safe }}
+ {% if prefs.hide_score != "on" %}
{{ post.score.0 }} Upvotes
+ {% endif %}