summaryrefslogtreecommitdiff
path: root/yeetube.el
AgeCommit message (Collapse)Author
2024-01-09Add yeetube-facesThanos Apollo
2024-01-09Add yeetube-view-count-formatThanos Apollo
2024-01-09Remove yeetube---fix-titleThanos Apollo
tabulated-lists solves previous issues
2024-01-09Redo yeetube-mode with tabulated listThanos Apollo
2024-01-09Add yeetube-propertize-vectorThanos Apollo
Will be used to propertize items in tabulated-list
2024-01-09yeetube-get-content: format view-count before pushThanos Apollo
2024-01-09yeetube-search: Change buffer & start yeetube-modeThanos Apollo
2024-01-09yeetube-get: Redo with tabulated-list-get-idThanos Apollo
2024-01-09remove yeetube-buffer.elThanos Apollo
Redoing with tabulated-list makes yeetube-buffer obsolete
2024-01-09yeetube-results-limit: fix typoThanos Apollo
2023-11-22yeetube-mpv:(check) Improve error message & use `unless`Thanos Apollo
There is no need for more specific error messages (via pcase).
2023-11-20yeetube: Use defvar-keymap for yeetube-mode-mapThanos Apollo
Compat allows to use defvar-keymap and still support older versions of emacs.
2023-11-20yeetube:(get-content) IndentationThanos Apollo
2023-11-20yeetube: Add compat packageThanos Apollo
2023-11-08Update to new domainThanos Apollo
2023-10-17yeetube:(mode-map) Add yeetube-search & yeetube-replayThanos Apollo
2023-10-17yeetube:(feature) Add yeetube-replayThanos Apollo
Replay history entry
2023-10-17yeetube:(get) Update docstringThanos Apollo
2023-10-17yeetube:(get) Fix error messagesThanos Apollo
Report back value in quotes
2023-10-17yeetube:(play) push url & title to yeetube-historyThanos Apollo
- Keep track of played urls with video-titles by pushing them to yeetube-history.
2023-10-17Add yeetube-historyThanos Apollo
Variable to track recently played content
2023-10-17Update to version 2.0.7Thanos Apollo
2023-10-17yeetube:(download-video) Message video title and download directoryThanos Apollo
2023-10-17yeetube: Add yeetube--fix-titleThanos Apollo
- Function that fixes scraped titles - Use in yeetube-get-content to push correct title values to yeetube-content
2023-10-17yeetube: Add yeetube--title-replacementsThanos Apollo
Add variable to track unicode character replacements
2023-10-17yeetube:(play-saved-video) Message the label of bookmarked URLThanos Apollo
2023-10-17yeetube:(yeetube-get-content) Use keywordsThanos Apollo
Rewrite yeetube-get-content to push content with keywords, retriving values easier
2023-10-17yeetube:(yeetube-get-url) Rewrite to use yeetube-getThanos Apollo
Rewrite yeetube-get-url to use (yeetube-get :videoid), as well as using yeetube-url variable instead of hardcoding youtube value
2023-10-17yeetube: Add yeetube-getThanos Apollo
yeetube-get function accepts a keyword argument. Retrieves information for keyword from yeetube-content.
2023-10-17Add yeetube-url variableThanos Apollo
Avoid hardcoding youtube.com, user can change this to an invidious instance if they desire so
2023-10-13yeetube-mpv-play-url: Rename to yeetube-mpv-playThanos Apollo
This function is not specific to just playing urls. User may make custom functions to play local files with it, thus the change of name.
2023-10-13Mark as version 2.0.6Thanos Apollo
- Bug fixes with yeetube-buffer - Fix autoload issues - Set result-limit to 20 - Add ffmpeg dowmload functionality skeleton - Add browse-video url, using invidious
2023-10-13yeetube: Add todo's and update docstringsThanos Apollo
2023-10-09yeetube: Add autoload cookie for interactive funcThanos Apollo
2023-10-09yeetube:(results-limit) set to 20Thanos Apollo
2023-10-07merge into testing: Add yeetube-download--ffmpegThanos Apollo
Setting up feature to use yeetube-download with ffmpeg
2023-10-07[feature] yeetube-browse-url: Open url using an invidious instance.Thanos Apollo
Function to browse video URL at point, using an invidious instance.
2023-10-07Add yeetube-invidious instancesThanos Apollo
List with popular invidious instances, which is going to be used with yeetube-browse-url function.
2023-10-06yeetube: Add yeetube-download--ffmpegThanos Apollo
- Add function to download URL using ffmpeg - Make commands that are used as shell-processes hidden ("--")
2023-10-05yeetube: fix docstringsThanos Apollo
2023-10-04yeetube: Rewrite keymap & require version 27.2Thanos Apollo
Rewrite keymap to use make-sparse-keymap & require version 27.2. defvar-keymap which was previously used requires emacs version 29.1 This change was suggested by emacs-devel mailing list, to make this package available to users that have not updated to the latest emacs version.
2023-10-04yeetube: Update commentaryThanos Apollo
2023-10-04yeetube: change yeetube-results-limit type to natnumpThanos Apollo
2023-10-04Rename #'yeetube-mpv to yeetube-mpv-play-urlThanos Apollo
This function is used as the default value of yeetube-player. Renaming it to yeetube-mpv-play-url will hopefully reduce confusion by making the name more specific.
2023-10-04yeetube: remove yeetube-version function & variableThanos Apollo
No need to have an interactive funciton.
2023-10-04yeetube: inhibit cookies & use silent for url-retrieveThanos Apollo
2023-10-03yeetube: Mark as Version to 2.0.5Thanos Apollo
- Add error handling e.g if mpv or yt-dlp is missing - Fix shell argument issues - Rewrite yeetube-download functions - Update doc strings - Fix faces issues
2023-10-03yeetube-download-ytdlp: Remove (interactive)Thanos Apollo
yeetube-download-ytdlp is not meant to be used interactively.
2023-10-03yeetube: Update yeetube-download functions docsThanos Apollo
2023-10-03[fix] yeetube-download-ytdlp: Use shell-quote-argumentThanos Apollo
Rewrite yeetube-download-ytdlp to use shell-quote-argument. Avoiding bugs from obscure shells. Pointed out by progofolio https://github.com/melpa/melpa/pull/8625