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

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

[elpa] externals/srht 053c79fb41: Bump version to 0.4


From: ELPA Syncer
Subject: [elpa] externals/srht 053c79fb41: Bump version to 0.4
Date: Fri, 17 Nov 2023 09:59:05 -0500 (EST)

branch: externals/srht
commit 053c79fb41278f11e98c61785e8cc500ed4c853b
Author: Aleksandr Vityazev <avityazev@posteo.org>
Commit: Aleksandr Vityazev <avityazev@posteo.org>

    Bump version to 0.4
    
    * lisp/srht (srht--view-log, srht--vtable, srht-token):
    Update doc string.
---
 README.md    |  2 +-
 README.org   |  2 +-
 guix.scm     |  2 +-
 lisp/srht.el | 12 ++++++++----
 4 files changed, 11 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index 581890e102..e372d1a384 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
 <a href="https://builds.sr.ht/~akagi/srht.el/commits/master/.build.yml";><img 
alt="Build" 
src="https://builds.sr.ht/~akagi/srht.el/commits/master/.build.yml.svg"/></a>
 
 
-### Version 0.3
+### Version 0.4
 
 
 # About
diff --git a/README.org b/README.org
index ce1c3939b4..e8baf26d5f 100644
--- a/README.org
+++ b/README.org
@@ -3,7 +3,7 @@
 #+html: <a href="https://elpa.gnu.org/packages/srht.html";><img alt="GNU ELPA" 
src="https://elpa.gnu.org/packages/srht.svg"/></a>
 #+html: <a href="https://elpa.gnu.org/devel/srht.html";><img alt="GNU-devel 
ELPA" src="https://elpa.gnu.org/devel/srht.svg"/></a>
 #+html: <a 
href="https://builds.sr.ht/~akagi/srht.el/commits/master/.build.yml";><img 
alt="Build" 
src="https://builds.sr.ht/~akagi/srht.el/commits/master/.build.yml.svg"/></a>
-*** Version 0.3
+*** Version 0.4
 
 * About
 
diff --git a/guix.scm b/guix.scm
index 86b1423182..e7f3b32276 100644
--- a/guix.scm
+++ b/guix.scm
@@ -42,7 +42,7 @@
 (define-public emacs-srht
   (let ((commit (last-commit-hash))
         (revision "0")
-        (version "0.3"))
+        (version "0.4"))
     (package
       (name "emacs-srht")
       (version (git-version version revision commit))
diff --git a/lisp/srht.el b/lisp/srht.el
index 540de1c815..1312269a8c 100644
--- a/lisp/srht.el
+++ b/lisp/srht.el
@@ -5,7 +5,7 @@
 ;; Author: Aleksandr Vityazev <avityazev@posteo.org>
 ;; Maintainer: Aleksandr Vityazev <avityazev@posteo.org>
 ;; Keywords: comm vc
-;; Package-Version: 0.3
+;; Package-Version: 0.4
 ;; Homepage: https://sr.ht/~akagi/srht.el/
 ;; Keywords: comm
 ;; Package-Requires: ((emacs "27.1") (plz "0.7") (transient "0.4.3"))
@@ -66,7 +66,7 @@ It is necessary to use Oauth personal token not Oauth2."
 (defun srht-token (host)
   "Lookup variable `srht-token' if needed and return it.
 If variable `srht-token' is nil or cannot be looked up or is empty, signal
-an error."
+an error.  HOST - DNS name of the service."
   (if srht-token
       srht-token
     (let ((token (when-let ((f (plist-get
@@ -337,7 +337,9 @@ Return string in format DAY.MONTH.YEAR."
                              getter
                              separator-width
                              actions)
-  ""
+  "Create and inster a vtable to BUFFER.
+After that display BUFFER in the window.
+COLUMNS OBJECTS GETTER SEPARATOR-WIDTH ACTIONS (see `make-vtable')."
   (let ((buff (get-buffer-create buffer)))
     (with-current-buffer buff
       (let ((inhibit-read-only t))
@@ -382,7 +384,9 @@ object under point."
    :actions actions))
 
 (defun srht--view-log (log &optional actions)
-  ""
+  "Display repository LOG.
+ACTIONS are simple commands that will be called with the
+object under point."
   (srht--vtable
    :buffer "*Sourcehut log*"
    :columns '("ShortId"



reply via email to

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