summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge version 2.0.7 branch to 'master'2.0.7Thanos Apollo2023-10-174-41/+99
|\ | | | | | | | | | | | | | | | | | | | | | | - Add yeetube-replay (replay entry stored in yeetube-history) - Fix title issues & separate unicode character replacements into yeetube--title-replacements - Improve messages, for future debugging & aesthetics - Redo storing of content info and retrieval, using keywords This version marks yeetube.el in maintenance mode. I have no further plans for further feature additions. However, feel free to discuss with me any changes you'd like to see.
| * yeetube:(mode-map) Add yeetube-search & yeetube-replayThanos Apollo2023-10-172-2/+4
| |
| * yeetube:(feature) Add yeetube-replayThanos Apollo2023-10-171-0/+13
| | | | | | | | Replay history entry
| * yeetube:(get) Update docstringThanos Apollo2023-10-171-1/+11
| |
| * yeetube:(get) Fix error messagesThanos Apollo2023-10-171-1/+1
| | | | | | | | Report back value in quotes
| * yeetube:(play) push url & title to yeetube-historyThanos Apollo2023-10-171-10/+12
| | | | | | | | | | - Keep track of played urls with video-titles by pushing them to yeetube-history.
| * Add yeetube-historyThanos Apollo2023-10-171-2/+2
| | | | | | | | Variable to track recently played content
| * Update to version 2.0.7Thanos Apollo2023-10-171-1/+1
| |
| * yeetube:(download-video) Message video title and download directoryThanos Apollo2023-10-171-1/+2
| |
| * yeetube-buffer: Remove (fix-title)Thanos Apollo2023-10-171-18/+1
| | | | | | | | | | Fix titles before they are pushed in yeetube-content with previous commit.
| * yeetube: Add yeetube--fix-titleThanos Apollo2023-10-171-1/+14
| | | | | | | | | | | | - Function that fixes scraped titles - Use in yeetube-get-content to push correct title values to yeetube-content
| * yeetube: Add yeetube--title-replacementsThanos Apollo2023-10-171-0/+7
| | | | | | | | Add variable to track unicode character replacements
| * yeetube:(play-saved-video) Message the label of bookmarked URLThanos Apollo2023-10-171-1/+4
| |
| * yeetube-buffer:(insert-content) Rewrite using keywordsThanos Apollo2023-10-171-6/+9
| |
| * yeetube:(yeetube-get-content) Use keywordsThanos Apollo2023-10-171-1/+5
| | | | | | | | | | Rewrite yeetube-get-content to push content with keywords, retriving values easier
| * yeetube:(yeetube-get-url) Rewrite to use yeetube-getThanos Apollo2023-10-171-4/+5
| | | | | | | | | | Rewrite yeetube-get-url to use (yeetube-get :videoid), as well as using yeetube-url variable instead of hardcoding youtube value
| * yeetube: Add yeetube-getThanos Apollo2023-10-171-0/+9
| | | | | | | | | | yeetube-get function accepts a keyword argument. Retrieves information for keyword from yeetube-content.
| * Add yeetube-url variableThanos Apollo2023-10-171-1/+4
| | | | | | | | | | Avoid hardcoding youtube.com, user can change this to an invidious instance if they desire so
| * README: Fix typoThanos Apollo2023-10-141-1/+1
| |
| * yeetube-mpv-play-url: Rename to yeetube-mpv-playThanos Apollo2023-10-133-5/+8
| | | | | | | | | | 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.
| * README: Add badge for self-hosted gitThanos Apollo2023-10-131-0/+1
|/
* Mark as version 2.0.62.0.6Thanos Apollo2023-10-131-1/+1
| | | | | | | | - Bug fixes with yeetube-buffer - Fix autoload issues - Set result-limit to 20 - Add ffmpeg dowmload functionality skeleton - Add browse-video url, using invidious
* yeetube: Add todo's and update docstringsThanos Apollo2023-10-131-1/+3
|
* Update READMEThanos Apollo2023-10-131-20/+26
| | | | Update code formatting
* yeetube: Add autoload cookie for interactive funcThanos Apollo2023-10-091-1/+8
|
* yeetube:(results-limit) set to 20Thanos Apollo2023-10-091-1/+1
|
* merge into testing: Add yeetube-download--ffmpegThanos Apollo2023-10-071-3/+15
|\ | | | | | | Setting up feature to use yeetube-download with ffmpeg
| * yeetube: Add yeetube-download--ffmpegThanos Apollo2023-10-061-3/+15
| | | | | | | | | | - Add function to download URL using ffmpeg - Make commands that are used as shell-processes hidden ("--")
* | [feature] Browse video url on invidiousThanos Apollo2023-10-072-3/+18
|\ \ | | | | | | | | | | | | | | | - Add yeetube-invidious-instances variable, containing random invidious instances - Rewrite yeetube-browse-url to use a random invidious instance from yeetube-invidious-instances
| * | [feature] yeetube-browse-url: Open url using an invidious instance.Thanos Apollo2023-10-071-2/+7
| | | | | | | | | | | | Function to browse video URL at point, using an invidious instance.
| * | Add yeetube-invidious instancesThanos Apollo2023-10-071-0/+9
| | | | | | | | | | | | | | | List with popular invidious instances, which is going to be used with yeetube-browse-url function.
| * | [fix] yeetube-buffer: Set buffer-read-only t after creationThanos Apollo2023-10-061-1/+2
| | |
| * | yeetube-buffer: Use cl-loop to insert contentsThanos Apollo2023-10-061-16/+2
| | | | | | | | | | | | Simplify yeetube-buffer-create using cl-loop
* | | yeetube-buffer: Use cl-loop to insert contentsThanos Apollo2023-10-071-16/+12
|\ \ \ | |_|/ |/| | | | | | | | - Seperate #'yeetube-insert-content - Simplify/rewrite yeetube-buffer-create using cl-loop
| * | yeetube-buffer: Use cl-loop to insert contentsThanos Apollo2023-10-061-16/+2
| |/
| * yeetube-buffer: Add yeetube-buffer-insert-contentThanos Apollo2023-10-061-0/+10
|/ | | | Seperate the insertion of formatted content from yeetube-create-buffer.
* yeetube: fix docstringsThanos Apollo2023-10-051-2/+2
|
* [fix] Use delete-char instead of backward-delete-charThanos Apollo2023-10-051-2/+1
|
* yeetube: Rewrite keymap & require version 27.2Thanos Apollo2023-10-043-15/+13
| | | | | | | | | 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.
* yeetube: Update commentaryThanos Apollo2023-10-041-1/+10
|
* yeetube: change yeetube-results-limit type to natnumpThanos Apollo2023-10-041-1/+1
|
* Update READMEThanos Apollo2023-10-041-6/+28
| | | | | | - Add melpa link - Add FAQ - Update configuration instructions
* Rename #'yeetube-mpv to yeetube-mpv-play-urlThanos Apollo2023-10-042-2/+2
| | | | | | | 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.
* yeetube: remove yeetube-version function & variableThanos Apollo2023-10-041-7/+0
| | | | No need to have an interactive funciton.
* yeetube: inhibit cookies & use silent for url-retrieveThanos Apollo2023-10-041-1/+1
|
* yeetube: Mark as Version to 2.0.52.0.5Thanos Apollo2023-10-031-3/+5
| | | | | | | | - 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
* yeetube-download-ytdlp: Remove (interactive)Thanos Apollo2023-10-031-1/+0
| | | | yeetube-download-ytdlp is not meant to be used interactively.
* yeetube: Update yeetube-download functions docsThanos Apollo2023-10-031-3/+5
|
* [fix] yeetube-buffer: Fix yeetube-buffer-face name & package-requireThanos Apollo2023-10-031-10/+8
| | | | | | Rename yeetube-faces to yeetube-buffer-faces Remove :safe keyword Require emacs 29.1 -- since yeetube.el requires emacs 29.1
* [fix] yeetube-mpv: Use shell-quote-argumentThanos Apollo2023-10-031-3/+3
| | | | | | Add shell-quote-argument to pass the url value. Pointed out by progfolio https://github.com/melpa/melpa/pull/8625