aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix youtube mixesJames Taylor2020-12-182-2/+13
| | | | | | | They cannot be viewed on their own, so change url in items to go to the video+playlist instead Signed-off-by: Jesús <heckyel@hyperbola.info>
* README.md: updateJesús2020-12-181-5/+7
|
* channel: replace page #s w/ next page button using provided ctokenJames Taylor2020-12-184-18/+32
| | | | | | 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-182-3/+12
| | | | | | | 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>
* Change URL supportJesús2020-12-181-1/+1
|
* README.md: Add donateJesús2020-12-181-0/+6
|
* pep8Jesús2020-12-181-1/+1
|
* Add get_app_version and versionJesús2020-12-175-1/+68
|
* Improve ytInitialPlayerResponse extractionJames Taylor2020-12-171-2/+10
| | | | | | | Makes it work if there are additional javascripts statements after the playerResponse variable Signed-off-by: Jesús <heckyel@hyperbola.info>
* Hotkeys.js: improve fullscreenJesús2020-12-161-2/+2
|
* Replace document.fullscreen for fullscreenElementJesús2020-12-161-1/+1
| | | | | | | | | | | This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time. More info in https://developer.mozilla.org/en-US/docs/Web/API/Document/fullscreen#Deprecated
* Fix channel search by using new protobuf formatJames Taylor2020-12-161-1/+2
| | | | | | | | Fixes 'Unknown Error' Closes #42 Signed-off-by: Jesús <heckyel@hyperbola.info>
* Migration general theme: fix video player method in javascriptJesús2020-12-161-1/+1
|
* README.md: Fix name O.S.Jesús2020-12-161-2/+2
|
* Hotkeys.js: Add muted 'm' keyJesús2020-12-151-0/+4
|
* Migration general theme: fix video player method in javascriptJesús2020-12-151-1/+1
|
* pep8Jesús2020-12-159-166/+248
|
* pep8Jesús2020-12-154-29/+66
|
* Improve message Starting httpserverJesús2020-12-151-1/+5
|
* Fix missing langJesús2020-12-151-1/+1
|
* Fix name OS and improved install stepsJesús2020-12-151-4/+8
|
* Migration general theme: fix query video tagJesús2020-12-155-15/+16
|
* Migration general theme: add gap in subscriptionJesús2020-12-151-0/+1
|
* Migration general theme: fix missing message-box styleJesús2020-12-1514-375/+29
|
* Change general design themeJesús2020-12-1430-1521/+5443
|
* Always extract from html watch page to get base.js urlJames Taylor2020-12-123-39/+77
| | | | | | Youtube removed the url from the pbj responses. They are now only in the html page. Replaces previous fix for the missing base.js issue.
* Retrieve base.js url from html watch page when it's missingJames Taylor2020-12-093-14/+40
| | | | Fixes failure mode 3 in #22
* Add box to enter custom video speedJames Taylor2020-11-301-4/+33
|
* Video comments: replace with error message if there is errorJames Taylor2020-11-293-22/+56
| | | | Such as 429 error, or an exception
* video comments: add link to open the comments page separatelyJames Taylor2020-11-291-1/+7
| | | | for situations where the comments failed to load
* fetch_url: Use time.monotonic for comptability w/ tor_mgrJames Taylor2020-11-291-5/+8
| | | | | Buggy exit node retry behavior due to fetch_url still using time.time() instead of the time.monotonic() used by new_identity
* Merge pull request #38 from user234684/patch-1James Taylor2020-11-121-2/+2
|\ | | | | use Tor to resolve domain names
| * use Tor to resolve domain namesuser2346842020-11-121-2/+2
|/
* yt_data_ext: watch playlist: Fix missing author_url if no author_idJames Taylor2020-11-081-3/+2
| | | | | | | Embedded playlist info was missing author_url key if author_id was None. This caused KeyError in watch.py when it expected that key Closes #37
* error page: dont use newline wrapping on error-boxJames Taylor2020-10-281-1/+3
| | | | | | | only should be used on error-message so newlines in error message properly display. Should not be used on error-box because that doesn't have bare text with newlines. Otherwise it was dispalying extraneous newlines.
* watch: Fix exception in to_valid_filename when video title is NoneJames Taylor2020-10-281-1/+1
|
* new_identity: authenticate with blank passwordJames Taylor2020-10-251-1/+1
| | | | See https://github.com/user234683/youtube-local/issues/20#issuecomment-716198162
* Add stem to requirements.txtJames Taylor2020-10-251-0/+1
|
* Automatically change tor circuit once if ip is blockedJames Taylor2020-10-254-46/+128
| | | | | | | Use stem library to send a new identity signal via the tor control port. See #20
* fetch_url: move content decoding to before 429 checkJames Taylor2020-10-251-1/+3
| | | | | Content should be decoded before we try reading page to check for 429. Lucky that it worked at all before.
* Adjust labels for some recently added settingsJames Taylor2020-10-221-2/+2
|
* Organize settings into categoriesJames Taylor2020-10-222-5/+32
|
* Put vid title at end of download urls so downloads w/ that filenameJames Taylor2020-10-223-0/+68
|
* Redo fix for failure mode 1 in issue #22James Taylor2020-10-212-6/+6
| | | | | Previous fix didn't work. Should work now. The non-embedded player response can still be present but the urls will be missing.
* Remove commenting system. Because:James Taylor2020-10-219-664/+5
| | | | | | | | - Actually using it will result in comments being shadowbanned, even those posted from Youtube's interfacs, because your account gets downranked since no analytics are present so it looks like a bot posting the comment. - It's been broken for awhile
* Merge pull request #32 from zrose584/add_sponsorblockJames Taylor2020-10-218-8/+68
|\ | | | | add sponsorblock.js
| * Merge branch 'master' into add_sponsorblockJames Taylor2020-10-2120-106/+163
| |\ | |/ |/|
* | Merge pull request #34 from zrose584/rm_whitespacesJames Taylor2020-10-2113-38/+38
|\ \ | | | | | | remove trailing whitespaces
| * | remove trailing whitespaceszrose5842020-10-2113-38/+38
|/ /
* | comments.js: include error in reply html rather than using an alertJames Taylor2020-10-204-29/+31
| |