aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/channel.html
Commit message (Collapse)AuthorAgeFilesLines
* Release v0.4.0 - HD Thumbnails, YouTube 2024+ Support, and yt-dlp Integrationv0.4.0Astounds10 hours1-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Major Features: - HD video thumbnails (hq720.jpg) with automatic fallback to lower qualities - HD channel avatars (240x240 instead of 88x88) - YouTube 2024+ lockupViewModel support for channel playlists - youtubei/v1/browse API integration for channel playlist tabs - yt-dlp integration for multi-language audio and subtitles Bug Fixes: - Fixed undefined `abort` import in playlist.py - Fixed undefined functions in proto.py (encode_varint, bytes_to_hex, succinct_encode) - Fixed missing `traceback` import in proto_debug.py - Fixed blurry playlist thumbnails using default.jpg instead of HD versions - Fixed channel playlists page using deprecated pbj=1 format Improvements: - Automatic thumbnail fallback system (hq720 → sddefault → hqdefault → mqdefault → default) - JavaScript thumbnail_fallback() handler for 404 errors - Better thumbnail quality across all pages (watch, channel, playlist, subscriptions) - Consistent HD avatar display for all channel items - Settings system automatically adds new settings without breaking user config Files Modified: - youtube/watch.py - HD thumbnails for related videos and playlist items - youtube/channel.py - HD thumbnails for channel playlists, youtubei API integration - youtube/playlist.py - HD thumbnails, fixed abort import - youtube/util.py - HD thumbnail URLs, avatar HD upgrade, prefix_url improvements - youtube/comments.py - HD video thumbnail - youtube/subscriptions.py - HD thumbnails, fixed abort import - youtube/yt_data_extract/common.py - lockupViewModel support, extract_lockup_view_model_info() - youtube/yt_data_extract/everything_else.py - HD playlist thumbnails - youtube/proto.py - Fixed undefined function references - youtube/proto_debug.py - Added traceback import - youtube/static/js/common.js - thumbnail_fallback() handler - youtube/templates/*.html - Added onerror handlers for thumbnail fallback - youtube/version.py - Bump to v0.4.0 Technical Details: - All thumbnail URLs now use hq720.jpg (1280x720) when available - Fallback handled client-side via JavaScript onerror handler - Server-side avatar upgrade via regex in util.prefix_url() - lockupViewModel parser extracts contentType, metadata, and first_video_id - Channel playlist tabs now use youtubei/v1/browse instead of deprecated pbj=1 - Settings version system ensures backward compatibility
* Fix channel about tabAstound2024-01-221-2/+9
|
* Put back sort by oldest logic since YouTube added it backAstound2024-01-221-2/+2
| | | | | | Previous commit replaced it with shorts-filtering, use sort code number 4 for that instead. Sort by oldest is still broken pending reverse engineering of new ctoken format, however.
* channels: Use the UU playlist to get videos by defaultAstound2024-01-221-7/+3
| | | | | | | | | This will be much less likely to break moving forward since YouTube rarely changes the playlist api Videos page now includes shorts and streams in the video lsit Also include an option to filter out shorts on the videos page
* Add functional but preliminary channel tab supportJesus E2023-06-171-4/+4
| | | | | | | Add channel tabs to the channel template and script Update continuation token to request different tabs Add support for 'reelItemRenderer' format required to extract shorts
* Update channel to new ctoken formatJesus E2023-05-281-1/+1
| | | | | | Huge thanks to @michaelweiser Different sortings still don't work for videos and playlists
* Fix self closing tag w3c issuesJesús2022-10-051-3/+3
|
* Channel: Allow going to next pages of playlists pageJames Taylor2021-03-151-1/+6
| | | | | | | Uses previous and next buttons. Now can view more than just first page of playlists page Signed-off-by: Jesús <heckyel@hyperbola.info>
* channel: replace page #s w/ next page button using provided ctokenJames Taylor2020-12-181-1/+5
| | | | | | Since yt doesn't accept page #'s when sorting by oldest Signed-off-by: Jesús <heckyel@hyperbola.info>
* channel: include first and last pages when sorting by newJames Taylor2020-12-181-1/+1
| | | | | | | Last page as a substitute for sorting by oldest since sorting by oldest doesn't allow arbitrary page numbers Signed-off-by: Jesús <heckyel@hyperbola.info>
* Migration general theme: fix missing message-box styleJesús2020-12-151-1/+2
|
* Change general design themeJesús2020-12-141-111/+32
|
* remove trailing whitespaceszrose5842020-10-211-3/+3
|
* Switch to desktop endpnt w/ new ctoken format except sort by old>1James Taylor2020-08-121-7/+0
| | | | | Sorting by old for pages > 1 currently broken on some channels; it's still using the mobile endpoint.
* Switch to mobile api endpoint to fix 'Unknown error' blockageJames Taylor2020-08-111-0/+7
| | | | See https://github.com/iv-org/invidious/issues/1319#issuecomment-671732646
* Channel searching: indicate if there's no resultsJames Taylor2019-12-231-1/+5
|
* Channel: Change search results to use next and previous page buttonsJames Taylor2019-12-231-30/+51
| | | | Because youtube doesn't give the number of search results, so previous behavior would give an error if a page number out of range was selected.
* Rewrite channel extraction with proper error handling and new extraction ↵James Taylor2019-12-211-2/+8
| | | | | | names. Extract subscriber_count correctly. Don't just shove english strings into info['stats']. Actually give semantic names for the stats.
* Merge subscriptions into masterJames Taylor2019-09-061-0/+9
|\
| * Add subscribe button on channelsJames Taylor2019-08-101-0/+9
| |
* | Layout: Add themesJames Taylor2019-08-251-2/+1
|/
* channel.html: add some space to the left of the pageJames Taylor2019-07-241-5/+15
|
* channel: Add short description under channel nameJames Taylor2019-07-231-2/+5
|
* Channel: fix oversized thumbnails in firefox quantumJames Taylor2019-07-221-0/+3
|
* Use variable to set title on base template instead of blockJames Taylor2019-07-211-1/+1
|
* Convert channel page to flask frameworkJames Taylor2019-07-061-0/+144