fix typo, lol..

This commit is contained in:
ayaka 2025-01-06 08:04:41 +13:00
parent dbb13f73f4
commit 5959464bbe
5 changed files with 10 additions and 10 deletions

View File

@ -16,8 +16,8 @@ REDLIB_PUSHSHIFT_FRONTEND=undelete.pullpush.io
REDLIB_DEFAULT_THEME=system REDLIB_DEFAULT_THEME=system
# Set the default mascot # Set the default mascot
REDLIB_DEFAULT_MASCOT=none REDLIB_DEFAULT_MASCOT=none
# Enable showing redsublib colorway by default # Enable showing redsunlib colorway by default
REDLIB_DEFAULT_REDSUBLIB_COLORWAY=off REDLIB_DEFAULT_REDSUNLIB_COLORWAY=off
# Set the default front page (options: default, popular, all) # Set the default front page (options: default, popular, all)
REDLIB_DEFAULT_FRONT_PAGE=default REDLIB_DEFAULT_FRONT_PAGE=default
# Set the default layout (options: card, clean, compact) # Set the default layout (options: card, clean, compact)

View File

@ -24,7 +24,7 @@ struct SettingsTemplate {
const PREFS: [&str; 21] = [ const PREFS: [&str; 21] = [
"theme", "theme",
"mascot", "mascot",
"redsublib_colorway", "redsunlib_colorway",
"front_page", "front_page",
"layout", "layout",
"wide", "wide",

View File

@ -607,7 +607,7 @@ pub struct Preferences {
pub available_mascots: Vec<String>, pub available_mascots: Vec<String>,
pub theme: String, pub theme: String,
pub mascot: String, pub mascot: String,
pub redsublib_colorway: String, pub redsunlib_colorway: String,
pub front_page: String, pub front_page: String,
pub layout: String, pub layout: String,
pub wide: String, pub wide: String,
@ -662,7 +662,7 @@ impl Preferences {
available_mascots: mascots, available_mascots: mascots,
theme: setting(req, "theme"), theme: setting(req, "theme"),
mascot: setting(req, "mascot"), mascot: setting(req, "mascot"),
redsublib_colorway: setting(req, "redsublib_colorway"), redsunlib_colorway: setting(req, "redsunlib_colorway"),
front_page: setting(req, "front_page"), front_page: setting(req, "front_page"),
layout: setting(req, "layout"), layout: setting(req, "layout"),
wide: setting(req, "wide"), wide: setting(req, "wide"),

View File

@ -41,7 +41,7 @@
{% if prefs.fixed_navbar == "on" %} fixed_navbar{% endif %}"> {% if prefs.fixed_navbar == "on" %} fixed_navbar{% endif %}">
<div id="logo"> <div id="logo">
<a id="redlib" href="/"> <a id="redlib" href="/">
<span id="lib" {% if prefs.redsublib_colorway == "on" %}style="color: #ff8585;"{% endif %}">red</span><span id="reddit" {% if prefs.redsublib_colorway == "on" %}style="color: #ffbfbf;"{% endif %}>sun</span><span id="lib" {% if prefs.redsublib_colorway == "on" %}style="color: #ff8585;"{% endif %}>lib.</span> <span id="lib" {% if prefs.redsunlib_colorway == "on" %}style="color: #ff8585;"{% endif %}">red</span><span id="reddit" {% if prefs.redsunlib_colorway == "on" %}style="color: #ffbfbf;"{% endif %}>sun</span><span id="lib" {% if prefs.redsunlib_colorway == "on" %}style="color: #ff8585;"{% endif %}>lib.</span>
</a> </a>
{% block subscriptions %}{% endblock %} {% block subscriptions %}{% endblock %}
</div> </div>

View File

@ -30,9 +30,9 @@
</select> </select>
</div> </div>
<div class="prefs-group"> <div class="prefs-group">
<label for="redsublib_colorway">Force redsublib colorway</label> <label for="redsunlib_colorway">Force redsunlib colorway</label>
<input type="hidden" value="off" name="redsublib_colorway"> <input type="hidden" value="off" name="redsunlib_colorway">
<input type="checkbox" name="redsublib_colorway" {% if prefs.redsublib_colorway == "on" %}checked{% endif %}> <input type="checkbox" name="redsunlib_colorway" {% if prefs.redsunlib_colorway == "on" %}checked{% endif %}>
</div> </div>
</fieldset> </fieldset>
<fieldset> <fieldset>
@ -158,7 +158,7 @@
</form> </form>
<div id="settings_note"> <div id="settings_note">
<p><b>Note:</b> settings and subscriptions are saved in browser cookies. Clearing your cookies will reset them.</p><br> <p><b>Note:</b> settings and subscriptions are saved in browser cookies. Clearing your cookies will reset them.</p><br>
<p>You can restore your current settings and subscriptions after clearing your cookies using <a href="/settings/restore/?theme={{ prefs.theme }}&mascot={{ prefs.mascot }}&redsublib_colorway={{ prefs.redsublib_colorway }}&front_page={{ prefs.front_page }}&layout={{ prefs.layout }}&wide={{ prefs.wide }}&post_sort={{ prefs.post_sort }}&comment_sort={{ prefs.comment_sort }}&show_nsfw={{ prefs.show_nsfw }}&use_hls={{ prefs.use_hls }}&ffmpeg_video_downloads={{ prefs.ffmpeg_video_downloads }}&hide_hls_notification={{ prefs.hide_hls_notification }}&hide_awards={{ prefs.hide_awards }}&fixed_navbar={{ prefs.fixed_navbar }}&hide_sidebar_and_summary={{ prefs.hide_sidebar_and_summary}}&subscriptions={{ prefs.subscriptions.join("%2B") }}&filters={{ prefs.filters.join("%2B") }}">this link</a>.</p> <p>You can restore your current settings and subscriptions after clearing your cookies using <a href="/settings/restore/?theme={{ prefs.theme }}&mascot={{ prefs.mascot }}&redsunlib_colorway={{ prefs.redsunlib_colorway }}&front_page={{ prefs.front_page }}&layout={{ prefs.layout }}&wide={{ prefs.wide }}&post_sort={{ prefs.post_sort }}&comment_sort={{ prefs.comment_sort }}&show_nsfw={{ prefs.show_nsfw }}&use_hls={{ prefs.use_hls }}&ffmpeg_video_downloads={{ prefs.ffmpeg_video_downloads }}&hide_hls_notification={{ prefs.hide_hls_notification }}&hide_awards={{ prefs.hide_awards }}&fixed_navbar={{ prefs.fixed_navbar }}&hide_sidebar_and_summary={{ prefs.hide_sidebar_and_summary}}&subscriptions={{ prefs.subscriptions.join("%2B") }}&filters={{ prefs.filters.join("%2B") }}">this link</a>.</p>
</div> </div>
{% if prefs.subscriptions.len() > 0 %} {% if prefs.subscriptions.len() > 0 %}
<div class="prefs" id="settings_subs"> <div class="prefs" id="settings_subs">