aboutsummaryrefslogtreecommitdiffstats
path: root/yeetube.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-10-03 14:05:00 +0300
committerThanos Apollo <[email protected]>2023-10-03 14:12:11 +0300
commit18c04d12c9b62a7e44ff7f29da634da72c52188b (patch)
tree1ecc18a3bd2962dee56f68022553b9c82ab31b29 /yeetube.el
parent8e71e293066bab76da2165c568731becc841d7d9 (diff)
yeetube: Mark as Version to 2.0.52.0.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
Diffstat (limited to 'yeetube.el')
-rw-r--r--yeetube.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/yeetube.el b/yeetube.el
index bde3fdd..a461880 100644
--- a/yeetube.el
+++ b/yeetube.el
@@ -5,8 +5,8 @@
;; Author: Thanos Apollo <[email protected]>
;; Keywords: extensions youtube videos
;; URL: https://git.thanosapollo.com/yeetube
-;; Version: 2.0.4
-(defvar yeetube--version '2.0.4)
+;; Version: 2.0.5
+
;; Package-Requires: ((emacs "29.1"))
@@ -34,6 +34,8 @@
(require 'yeetube-buffer)
(require 'yeetube-mpv)
+(defvar yeetube--version '2.0.5)
+
(defgroup yeetube nil
"Youtube Front-end."
:group 'external
@@ -220,7 +222,7 @@ then for item."
"Download URL using yt-dlp.
Optional values:
- NAME to specify file.
+ NAME for custom file name.
AUDIO-FORMAT to extract and keep contents as specified audio-format only."
(unless yeetube-ytdlp
(error "Executable for yt-dlp not found. Please install yt-dlp"))