2018-07-16 16:24:24 +00:00
|
|
|
<% content_for "header" do %>
|
|
|
|
<title>Preferences - Invidious</title>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function update_value(element) {
|
|
|
|
document.getElementById('volume-value').innerText = element.value;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<div class="h-box">
|
|
|
|
<form class="pure-form pure-form-aligned" action="/preferences?referer=<%= referer %>" method="post">
|
|
|
|
<fieldset>
|
|
|
|
<legend>Player preferences</legend>
|
2018-07-16 16:24:24 +00:00
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="video_loop">Always loop: </label>
|
|
|
|
<input name="video_loop" id="video_loop" type="checkbox" <% if user.preferences.video_loop %>checked<% end %>>
|
|
|
|
</div>
|
2018-07-16 16:24:24 +00:00
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="autoplay">Autoplay: </label>
|
|
|
|
<input name="autoplay" id="autoplay" type="checkbox" <% if user.preferences.autoplay %>checked<% end %>>
|
|
|
|
</div>
|
2018-07-16 16:24:24 +00:00
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="speed">Default speed: </label>
|
|
|
|
<select name="speed" id="speed">
|
|
|
|
<% [2.0, 1.5, 1.0, 0.5].each do |option| %>
|
|
|
|
<option <% if user.preferences.speed == option %> selected <% end %>><%= option %></option>
|
|
|
|
<% end %>
|
|
|
|
</select>
|
|
|
|
</div>
|
2018-07-16 16:57:52 +00:00
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="quality">Preferred video quality: </label>
|
|
|
|
<select name="quality" id="quality">
|
|
|
|
<% ["hd720", "medium", "small"].each do |option| %>
|
|
|
|
<option <% if user.preferences.quality == option %> selected <% end %>><%= option %></option>
|
|
|
|
<% end %>
|
|
|
|
</select>
|
|
|
|
</div>
|
2018-07-16 16:24:24 +00:00
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="volume">Player volume: </label>
|
|
|
|
<input name="volume" id="volume" oninput="update_value(this);" type="range" min="0" max="100" step="5" value="<%= user.preferences.volume %>">
|
|
|
|
<span class="pure-form-message-inline" id="volume-value"><%= user.preferences.volume %></span>
|
|
|
|
</div>
|
2018-07-16 16:24:24 +00:00
|
|
|
|
2018-07-28 14:49:58 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="comments">Pull comments from: </label>
|
|
|
|
<select name="comments" id="comments">
|
|
|
|
<% ["youtube", "reddit"].each do |option| %>
|
|
|
|
<option <% if user.preferences.comments == option %> selected <% end %>><%= option %></option>
|
|
|
|
<% end %>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
2018-08-06 18:23:36 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="captions_0">Default captions: </label>
|
|
|
|
<select class="pure-u-1-5" name="captions_0" id="captions_0">
|
|
|
|
<% CAPTION_LANGUAGES.each do |option| %>
|
|
|
|
<option <% if user.preferences.captions[0] == option %> selected <% end %>><%= option %></option>
|
|
|
|
<% end %>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="captions_fallback">Fallback languages: </label>
|
|
|
|
<select class="pure-u-1-5" name="captions_1" id="captions_1">
|
|
|
|
<% CAPTION_LANGUAGES.each do |option| %>
|
|
|
|
<option <% if user.preferences.captions[1] == option %> selected <% end %>><%= option %></option>
|
|
|
|
<% end %>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<select class="pure-u-1-5" name="captions_2" id="captions_2">
|
|
|
|
<% CAPTION_LANGUAGES.each do |option| %>
|
|
|
|
<option <% if user.preferences.captions[2] == option %> selected <% end %>><%= option %></option>
|
|
|
|
<% end %>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<legend>Visual preferences</legend>
|
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="dark_mode">Dark mode: </label>
|
|
|
|
<input name="dark_mode" id="dark_mode" type="checkbox" <% if user.preferences.dark_mode %>checked<% end %>>
|
|
|
|
</div>
|
2018-07-16 16:24:24 +00:00
|
|
|
|
2018-07-26 17:09:29 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="thin_mode">Thin mode: </label>
|
|
|
|
<input name="thin_mode" id="thin_mode" type="checkbox" <% if user.preferences.thin_mode %>checked<% end %>>
|
|
|
|
</div>
|
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<legend>Subscription preferences</legend>
|
2018-07-29 03:31:02 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="redirect_feed">Redirect homepage to feed: </label>
|
|
|
|
<input name="redirect_feed" id="redirect_feed" type="checkbox" <% if user.preferences.redirect_feed %>checked<% end %>>
|
|
|
|
</div>
|
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="max_results">Number of videos shown in feed: </label>
|
|
|
|
<input name="max_results" id="max_results" type="number" value="<%= user.preferences.max_results %>">
|
|
|
|
</div>
|
2018-07-17 00:31:49 +00:00
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="sort">Sort videos by: </label>
|
|
|
|
<select name="sort" id="sort">
|
|
|
|
<% ["published", "alphabetically", "alphabetically - reverse", "channel name", "channel name - reverse"].each do |option| %>
|
|
|
|
<option <% if user.preferences.sort == option %> selected <% end %>><%= option %></option>
|
|
|
|
<% end %>
|
|
|
|
</select>
|
|
|
|
</div>
|
2018-07-18 14:15:58 +00:00
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<div class="pure-control-group">
|
2018-07-29 01:40:59 +00:00
|
|
|
<label for="latest_only">Only show latest <% if user.preferences.unseen_only %>unseen<% end %> video from channel: </label>
|
2018-07-26 14:59:05 +00:00
|
|
|
<input name="latest_only" id="latest_only" type="checkbox" <% if user.preferences.latest_only %>checked<% end %>>
|
|
|
|
</div>
|
2018-07-18 14:15:58 +00:00
|
|
|
|
2018-07-29 01:40:59 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="unseen_only">Only show unseen: </label>
|
|
|
|
<input name="unseen_only" id="unseen_only" type="checkbox" <% if user.preferences.unseen_only %>checked<% end %>>
|
|
|
|
</div>
|
|
|
|
|
2018-07-31 15:44:07 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="notifications_only">Only show notifications: </label>
|
|
|
|
<input name="notifications_only" id="notifications_only" type="checkbox" <% if user.preferences.notifications_only %>checked<% end %>>
|
|
|
|
</div>
|
|
|
|
|
2018-07-29 01:40:59 +00:00
|
|
|
<legend>Data preferences</legend>
|
|
|
|
<div class="pure-control-group">
|
2018-08-06 00:59:45 +00:00
|
|
|
<a href="/clear_watch_history">Clear watch history</a>
|
2018-07-30 17:34:57 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="pure-control-group">
|
2018-08-06 00:59:45 +00:00
|
|
|
<a href="/data_control">Import/Export data</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="pure-control-group">
|
2018-08-07 00:45:33 +00:00
|
|
|
<a href="/subscription_manager">Manage subscriptions</a>
|
2018-07-29 01:40:59 +00:00
|
|
|
</div>
|
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<div class="pure-controls">
|
|
|
|
<button type="submit" class="pure-button pure-button-primary">Save preferences</button>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
</div>
|