summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-07-05style & display search queryThanos Apollo
2023-07-05Add yeetube-change-query-url...Change URL interactively Add kbindings, update info & variable watchers as well. Thanos Apollo
2023-07-05Remove *bold* for info variablesThanos Apollo
2023-07-05Add yeetube-query-url indication in *Yeetube Search* bufferThanos Apollo
2023-07-05update yeetube-search to support invidious...Use yeetube-check-if-youtube to seperate searching process. Adjust yeetube-query-url since both invidious and youtube can use URL/search?q= Everything else remains the same since they are almost identical. Thanos Apollo
2023-07-05Add yeetube-insert-content...This was used in yeetube-search. Keeping them seperate to make debugging easier & make it less spaghetti like Thanos Apollo
2023-07-05Add yeetube-check-if-youtube...Check if it's youtube Will be used to differentiate between invidious/youtube Thanos Apollo
2023-07-05Update READMEThanos Apollo
2023-07-05fix: Remove titles & videoids that contain vssLoggingContext...This marks version v0.0.1 making it a "usable" package Thanos Apollo
2023-07-04fix: Do not switch buffer after yeetube-playThanos Apollo
2023-07-04yeetube-mode-map: update keybindings & info...Add yeetube-change-download-audio-format keybinding, making it easier to change it by default. Thanos Apollo
2023-07-04yeetube-update-info: use push-mark...Use push-mark and let a variable for buffer to always switch. Replace kill-visual-line with kill-region to not mess with the kill-ring Thanos Apollo
2023-07-04Add yeetube-change-download-audio-format...Create an interactive function to change download audio format & watch for its value using variable watchers using yeetube-update-info Thanos Apollo
2023-07-04Update READMEThanos Apollo
2023-07-04Add yeetube-change-download-directoryThanos Apollo
2023-07-04README: typoThanos Apollo
2023-07-04fix: Unused lexical variable...Add _ for 'operation' and 'where' Change 'string-equal to 'equal(personal preference) Thanos Apollo
2023-07-03Update READMEThanos Apollo
2023-07-03fix updatesThanos Apollo
2023-07-03Add yeetube-update-info and variable-watchers...Update yeetube-player and yeetube-download-directory displayed in *Yeetube Search* buffer each time user changes their values Thanos Apollo
2023-07-03Add yeetube-info & yeetube-info-keys custom...Create a yeetube-info function that displays - Yeetube Player - Yeetube Download Directory when yeetube-info-keys t display default keybindings Thanos Apollo
2023-07-03yeetube-results-limit: change to 15Thanos Apollo
2023-07-03yeetube-search: Display info...Display Download directory & yeetube player Thanos Apollo
2023-07-03yeetube-download-videos: Check for audio-format...If yeetube-download-audio-format, covert to the specified format. If nil use the default. Thanos Apollo
2023-07-03melpafy: Use shell-quote-argument for async-shell-commands...Use shell-quote-arguments and fix download as audio format Thanos Apollo
2023-07-03yeetube-play: Move to call-process-shell-command...Redo this function using call-process-shell-command & kill all previous commands with 'yeetube-player' This way the user can just select video/song to play and get back to whatever he was working on, without generating new buffers that async-shell-command does. Thanos Apollo
2023-07-03melpafy: fix header, dependencies & namings. Add quit key...Fix header issues with `package-lint`. Add quit key(q) to make it more like a special-mode buffer. speical-mode could be an option, but using org-mode it's easier to make the search results look decent. Thanos Apollo
2023-07-02update docstringsThanos Apollo
2023-07-02change from prefix yt- to yeetube-Thanos Apollo
2023-07-02fix titles with commas & add open in browser key docThanos Apollo
2023-07-01require cl-libThanos Apollo
2023-07-01update documentationThanos Apollo
2023-07-01fix: enable multibyte-charactersThanos Apollo
2023-07-01update readmeThanos Apollo
2023-07-01Add group, commentary and style codeThanos Apollo
2023-07-01Define yt-mode...- Add minor mode - Define keybindings and doc them to *Yeetube-Search* buffer Thanos Apollo
2023-07-01styleThanos Apollo
2023-07-01yt-download(s): Update to use default dir & update docsThanos Apollo
2023-07-01yt-search: base function completed...- Searches for X amount of videoids and videotitles - Creates a read only org buffer and inserts the results Thanos Apollo
2023-07-01Add customs...- yt-search-for: Defining the amount of search results - yt-player: Define video player as command using a string - yt-download-directory: Define download directory Thanos Apollo
2023-07-01Add basic search functionality...custom yt-search-query, youtube is the default, but in hopefully in the future it won't be youtube specific. yt-search only searches for a single url for now, just for testing purposes. Thanos Apollo
2023-06-30rename to yeetubeThanos Apollo
2023-06-30Merge branch '#download-videos' into devThanos Apollo
2023-06-30Merge branch '#play-videos' into devThanos Apollo
2023-06-30Add custom to downlaod only as a specific audio formatThanos Apollo
2023-06-30Add func to download multiple videos by manually...yt-download-videos should be used from within a Dired buffer in the desired path. yt-dlp is not youtube specific, just like this package. User should be able to manually run yt-dlp anywhere, downloading videos without being restricted to a predefined search query Thanos Apollo
2023-06-30Add func to download single video from org buffer...Identical to playing video but with yt-dlp instead of mpv. Thanos Apollo
2023-06-30play video using mpv...Create yt-play, a simple function that checks if the link starts with "http" and then uses `async-shell-command` to open the URL with `mpv`. It also displays a message confirming the URL being opened. This is still a testing function, a video player should be defined using a defcustom Thanos Apollo
2023-06-30init projectThanos Apollo