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-10-30 14:41:23 +00:00
|
|
|
<div class="pure-control-group">
|
2018-11-21 19:10:09 +00:00
|
|
|
<label for="continue">Autoplay next video: </label>
|
2018-11-11 17:45:05 +00:00
|
|
|
<input name="continue" id="continue" type="checkbox" <% if user.preferences.continue %>checked<% end %>>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="pure-control-group">
|
2018-10-30 14:41:23 +00:00
|
|
|
<label for="listen">Listen by default: </label>
|
|
|
|
<input name="listen" id="listen" type="checkbox" <% if user.preferences.listen %>checked<% end %>>
|
|
|
|
</div>
|
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="speed">Default speed: </label>
|
|
|
|
<select name="speed" id="speed">
|
2018-08-11 20:03:24 +00:00
|
|
|
<% {2.0, 1.5, 1.0, 0.5}.each do |option| %>
|
2018-07-26 14:59:05 +00:00
|
|
|
<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">
|
2018-09-25 00:28:36 +00:00
|
|
|
<% {"dash", "hd720", "medium", "small"}.each do |option| %>
|
2018-07-26 14:59:05 +00:00
|
|
|
<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">
|
2018-08-25 23:33:15 +00:00
|
|
|
<label for="comments_0">Default comments: </label>
|
|
|
|
<select name="comments_0" id="comments_0">
|
|
|
|
<% {"", "youtube", "reddit"}.each do |option| %>
|
|
|
|
<option <% if user.preferences.comments[0] == option %> selected <% end %>><%= option %></option>
|
|
|
|
<% end %>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="comments_1">Fallback comments: </label>
|
|
|
|
<select name="comments_1" id="comments_1">
|
|
|
|
<% {"", "youtube", "reddit"}.each do |option| %>
|
|
|
|
<option <% if user.preferences.comments[1] == option %> selected <% end %>><%= option %></option>
|
2018-07-28 14:49:58 +00:00
|
|
|
<% 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">
|
2018-08-30 21:49:38 +00:00
|
|
|
<label for="captions_fallback">Fallback captions: </label>
|
2018-08-06 18:23:36 +00:00
|
|
|
<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-08-30 21:49:38 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<label for="related_videos">Show related videos? </label>
|
|
|
|
<input name="related_videos" id="related_videos" type="checkbox" <% if user.preferences.related_videos %>checked<% end %>>
|
|
|
|
</div>
|
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<legend>Visual preferences</legend>
|
2018-08-30 21:49:38 +00:00
|
|
|
|
2018-07-26 14:59:05 +00:00
|
|
|
<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-08-30 21:49:38 +00:00
|
|
|
|
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">
|
2018-11-14 02:29:36 +00:00
|
|
|
<% {"published", "published - reverse", "alphabetically", "alphabetically - reverse", "channel name", "channel name - reverse"}.each do |option| %>
|
2018-07-26 14:59:05 +00:00
|
|
|
<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">
|
2018-11-21 19:10:09 +00:00
|
|
|
<label for="unseen_only">Only show unwatched: </label>
|
2018-07-29 01:40:59 +00:00
|
|
|
<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>
|
2018-08-30 21:49:38 +00:00
|
|
|
|
2018-07-29 01:40:59 +00:00
|
|
|
<div class="pure-control-group">
|
2018-11-08 06:12:14 +00:00
|
|
|
<a href="/clear_watch_history?referer=<%= URI.escape(referer) %>">Clear watch history</a>
|
2018-07-30 17:34:57 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="pure-control-group">
|
2018-11-08 06:12:14 +00:00
|
|
|
<a href="/data_control?referer=<%= URI.escape(referer) %>">Import/Export data</a>
|
2018-08-06 00:59:45 +00:00
|
|
|
</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-11-08 06:12:14 +00:00
|
|
|
<div class="pure-control-group">
|
|
|
|
<a href="/delete_account?referer=<%= URI.escape(referer) %>">Delete account</a>
|
|
|
|
</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>
|
2018-08-17 16:04:38 +00:00
|
|
|
</div>
|