emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/eev 43131f4af5: Small changes in `find-yttranscript-lin


From: ELPA Syncer
Subject: [elpa] externals/eev 43131f4af5: Small changes in `find-yttranscript-links'.
Date: Thu, 26 Sep 2024 00:57:59 -0400 (EDT)

branch: externals/eev
commit 43131f4af5f5a01b86731049202d2dd31e0ba25f
Author: Eduardo Ochs <eduardoochs@gmail.com>
Commit: Eduardo Ochs <eduardoochs@gmail.com>

    Small changes in `find-yttranscript-links'.
---
 ChangeLog                | 13 +++++++++++++
 VERSION                  |  4 ++--
 eev-intro.el             |  4 ++--
 eev-strange-functions.el |  5 ++++-
 eev-tlinks.el            | 15 +++++++++------
 eev.el                   |  2 +-
 6 files changed, 31 insertions(+), 12 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index d8f60819e5..ab8d903705 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+2024-09-25  Eduardo Ochs  <eduardoochs@gmail.com>
+
+       * eev-tlinks.el (find-yttranscript-links): small changes.
+       (find-yttranscript0-links): commented out the (interactive ...).
+
+       * eev-intro.el (find-windows-beginner-intro): in the section "3.
+       Use eepitch to add a Debian repository": removed "main".
+
+2024-09-24  Eduardo Ochs  <eduardoochs@gmail.com>
+
+       * eev-strange-functions.el (ee-sf-pdf-links): small changes.
+       (find-sf-debug-links): small changes.
+
 2024-09-22  Eduardo Ochs  <eduardoochs@gmail.com>
 
        * eev-elinks.el (ee-lisp-symbol-around-point)
diff --git a/VERSION b/VERSION
index 09b0970bf6..c2cb705465 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-Sun Sep 22 03:44:43 GMT 2024
-Sun Sep 22 00:44:43 -03 2024
+Thu Sep 26 02:18:25 GMT 2024
+Wed Sep 25 23:18:25 -03 2024
diff --git a/eev-intro.el b/eev-intro.el
index 2dbf2695b0..df115129b6 100644
--- a/eev-intro.el
+++ b/eev-intro.el
@@ -19,7 +19,7 @@
 ;;
 ;; Author:     Eduardo Ochs <eduardoochs@gmail.com>
 ;; Maintainer: Eduardo Ochs <eduardoochs@gmail.com>
-;; Version:    20240905
+;; Version:    20240925
 ;; Keywords:   e-scripts
 ;;
 ;; Latest version: <http://anggtwu.net/eev-current/eev-intro.el>
@@ -15067,7 +15067,7 @@ password in the minibuffer (at the bottom of the 
screen).
  (eepitch-shell)
 echo '
   # Edrx:
-  deb http://deb.debian.org/debian/ bookworm main contrib non-free
+  deb http://deb.debian.org/debian/ bookworm contrib non-free
 ' | sudo tee -a /etc/apt/sources.list
 
  Lines with two red stars are comments.
diff --git a/eev-strange-functions.el b/eev-strange-functions.el
index a0f6c13918..70b07f3838 100644
--- a/eev-strange-functions.el
+++ b/eev-strange-functions.el
@@ -19,7 +19,7 @@
 ;;
 ;; Author:     Eduardo Ochs <eduardoochs@gmail.com>
 ;; Maintainer: Eduardo Ochs <eduardoochs@gmail.com>
-;; Version:    20240309
+;; Version:    20240925
 ;; Keywords:   e-scripts
 ;;
 ;; Latest version: <http://anggtwu.net/eev-current/eev-strange-functions.el>
@@ -115,6 +115,7 @@
 #   ee-hlang-sexp2
 #   (find-efunction '{(car ee-hlang-sexp1)})
 #   (find-efunction '{(car ee-hlang-sexp2)})
+#   (find-efunction '{(car ee-sf-result)})
 #   (find-evariable 'ee-hprog-for-sf)
 #   (find-efunction 'ee-sf-run-hprog-first-half)
 #   (find-efunction 'ee-sf-run-hprog)
@@ -465,6 +466,8 @@ is `find-blahfoo' then set `ee-sf-stem' to \"blah\" and set
 ;; (find-{c}text{page})
 ;; (find-{c}page{pagerest})
 ;; (find-{c}text{pagerest})
+;; (find-pdf-page      \"{dir}{fname0}\"{page})
+;; (find-pdftools-page \"{dir}{fname0}\"{page})
 ;; (find-fline \"{dir}\" \"{fname0}\")
 ;; (find-fline \"{dir}\")
 
diff --git a/eev-tlinks.el b/eev-tlinks.el
index 29d160fca7..20c01eda76 100644
--- a/eev-tlinks.el
+++ b/eev-tlinks.el
@@ -19,7 +19,7 @@
 ;;
 ;; Author:     Eduardo Ochs <eduardoochs@gmail.com>
 ;; Maintainer: Eduardo Ochs <eduardoochs@gmail.com>
-;; Version:    20240922
+;; Version:    20240925
 ;; Keywords:   e-scripts
 ;;
 ;; Latest version: <http://anggtwu.net/eev-current/eev-tlinks.el>
@@ -4241,12 +4241,15 @@ sexp    = lambda n,text: '%s(%s \"%s\" \"%s\")' % (p, 
f, timestr(floor(n)), text
 
 p       = \"% \"
 f       = \"find-{c}video\"
-trlist  = YouTubeTranscriptApi.list_transcripts(\"{hash}\")
-tr      = YouTubeTranscriptApi.get_transcript(\"{hash}\")
 
-for o in trlist: print(o)
+trlist  = YouTubeTranscriptApi.list_transcripts(\"{hash}\")
+trlist1 = [x for x in trlist]
+trlist2 = [str(x) for x in trlist]
+trlist3 = '\\n'.join(trlist2)
+print(trlist3)
 
-for o in trlist: print(repr(o))
+tr      = YouTubeTranscriptApi.get_transcript(\"{hash}\", languages=['en-GB'])
+tr      = YouTubeTranscriptApi.get_transcript(\"{hash}\")
 
 times   = [i['start'] for i in tr]
 texts   = [i['text']  for i in tr]
@@ -4271,7 +4274,7 @@ This is the original version, described in:
 it uses `youtube_transcript_downloader', that is broken. See:
   https://github.com/t4skmanag3r/youtube_transcript_downloader/issues/2\n
 Use `find-yttranscript-links' instead."
-  (interactive (list nil (ee-youtubedl-hash-around-point)))
+  ;; (interactive (list nil (ee-youtubedl-hash-around-point)))
   (setq c (or c "{c}"))
   (setq hash (or hash "{hash}"))
   (let ((ee-buffer-name (or ee-buffer-name "*find-yttranscript0-links*")))
diff --git a/eev.el b/eev.el
index f1f4e04fd3..47223e6e7f 100644
--- a/eev.el
+++ b/eev.el
@@ -6,7 +6,7 @@
 ;; Package-Requires: ((emacs "25.1"))
 ;; Keywords: lisp e-scripts
 ;; URL: http://anggtwu.net/#eev
-;; Version: 20240811
+;; Version: 20240925
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by



reply via email to

[Prev in Thread] Current Thread [Next in Thread]