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

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

[elpa] externals/activities 8e46d6de78 1/2: Merge: v0.3.3


From: ELPA Syncer
Subject: [elpa] externals/activities 8e46d6de78 1/2: Merge: v0.3.3
Date: Wed, 31 Jan 2024 06:57:23 -0500 (EST)

branch: externals/activities
commit 8e46d6de78333610023e91f5d2b58e7c5bfc7d1c
Merge: 613daac078 5409872e5c
Author: Adam Porter <adam@alphapapa.net>
Commit: Adam Porter <adam@alphapapa.net>

    Merge: v0.3.3
---
 README.org         | 13 ++++----
 activities-list.el |  2 ++
 activities.info    | 87 ++++++++++++++++++++++++++++++++----------------------
 3 files changed, 62 insertions(+), 40 deletions(-)

diff --git a/README.org b/README.org
index b61089b4f6..875a1f1e1e 100644
--- a/README.org
+++ b/README.org
@@ -33,8 +33,8 @@ Various hooks are (or will be--feedback is welcome) provided, 
both globally and
 
 To install directly from git (e.g. to test a pre-release version), it's 
recommended to use [[https://framagit.org/steckerhalter/quelpa][Quelpa]]:
 
-1.  Install 
[[https://framagit.org/steckerhalter/quelpa-use-package#installation][quelpa-use-package]]
 (which can be installed directly from MELPA).
-2.  Add this form to your init file (see 
[[id:d901811a-bbec-4e72-b497-2f79728da597][Configuration]] for more details):
+1. Install 
[[https://framagit.org/steckerhalter/quelpa-use-package#installation][quelpa-use-package]]
 (which can be installed directly from MELPA).
+2. Add this form to your init file (see [[Configuration][Configuration]] for 
more details):
 
 #+BEGIN_SRC elisp
   (use-package activities
@@ -44,9 +44,6 @@ To install directly from git (e.g. to test a pre-release 
version), it's recommen
 If you choose to install it otherwise, please note that the author can't offer 
help with manual installation problems.
 
 * Configuration
-:PROPERTIES:
-:ID:       d901811a-bbec-4e72-b497-2f79728da597
-:END:
 
 This is the recommended configuration, in terms of a ~use-package~ form to be 
placed in the user's init file:
 
@@ -136,6 +133,12 @@ When option ~activities-bookmark-store~ is enabled, an 
Emacs bookmark is stored
 
 Nothing new yet.
 
+** v0.3.3
+
+*Fixes*
++ Command ~activities-list~ shows a helpful message if no activities are 
defined.  ([[https://github.com/alphapapa/activities.el/issues/11][#11]].  
Thanks to [[https://github.com/fuzy112][fuzy112]] for reporting.)
++ Link in documentation (which works locally but not on GNU ELPA at the 
moment).
+
 ** v0.3.2
 
 Updated documentation, etc.
diff --git a/activities-list.el b/activities-list.el
index 13b7c5eac2..6ae7b89463 100644
--- a/activities-list.el
+++ b/activities-list.el
@@ -48,6 +48,8 @@
 (defun activities-list ()
   "List activities."
   (interactive)
+  (unless activities-activities
+    (user-error (substitute-command-keys "No activities defined (to define 
one, type \"\\[activities-new]\")")))
   (with-current-buffer (get-buffer-create "*Activities*")
     (let ((inhibit-read-only t))
       (read-only-mode)
diff --git a/activities.info b/activities.info
index c9e987f114..14c375c284 100644
--- a/activities.info
+++ b/activities.info
@@ -70,6 +70,7 @@ Usage
 Changelog
 
 * v0.4-pre: v04-pre.
+* v0.3.3: v033.
 * v0.3.2: v032.
 * v0.3.1: v031.
 * v0.3: v03.
@@ -354,6 +355,7 @@ File: README.info,  Node: Changelog,  Next: Development,  
Prev: FAQ,  Up: Top
 * Menu:
 
 * v0.4-pre: v04-pre.
+* v0.3.3: v033.
 * v0.3.2: v032.
 * v0.3.1: v031.
 * v0.3: v03.
@@ -364,7 +366,7 @@ File: README.info,  Node: Changelog,  Next: Development,  
Prev: FAQ,  Up: Top
 * v0.1: v01.
 
 
-File: README.info,  Node: v04-pre,  Next: v032,  Up: Changelog
+File: README.info,  Node: v04-pre,  Next: v033,  Up: Changelog
 
 5.1 v0.4-pre
 ============
@@ -372,9 +374,23 @@ File: README.info,  Node: v04-pre,  Next: v032,  Up: 
Changelog
 Nothing new yet.
 
 
-File: README.info,  Node: v032,  Next: v031,  Prev: v04-pre,  Up: Changelog
+File: README.info,  Node: v033,  Next: v032,  Prev: v04-pre,  Up: Changelog
 
-5.2 v0.3.2
+5.2 v0.3.3
+==========
+
+*Fixes*
+   • Command ‘activities-list’ shows a helpful message if no activities
+     are defined.  (#11
+     (https://github.com/alphapapa/activities.el/issues/11).  Thanks to
+     fuzy112 (https://github.com/fuzy112) for reporting.)
+   • Link in documentation (which works locally but not on GNU ELPA at
+     the moment).
+
+
+File: README.info,  Node: v032,  Next: v031,  Prev: v033,  Up: Changelog
+
+5.3 v0.3.2
 ==========
 
 Updated documentation, etc.
@@ -382,7 +398,7 @@ Updated documentation, etc.
 
 File: README.info,  Node: v031,  Next: v03,  Prev: v032,  Up: Changelog
 
-5.3 v0.3.1
+5.4 v0.3.1
 ==========
 
 *Fixes*
@@ -394,7 +410,7 @@ File: README.info,  Node: v031,  Next: v03,  Prev: v032,  
Up: Changelog
 
 File: README.info,  Node: v03,  Next: v02,  Prev: v031,  Up: Changelog
 
-5.4 v0.3
+5.5 v0.3
 ========
 
 *Additions*
@@ -407,7 +423,7 @@ File: README.info,  Node: v03,  Next: v02,  Prev: v031,  
Up: Changelog
 
 File: README.info,  Node: v02,  Next: v013,  Prev: v03,  Up: Changelog
 
-5.5 v0.2
+5.6 v0.2
 ========
 
 *Additions*
@@ -423,7 +439,7 @@ File: README.info,  Node: v02,  Next: v013,  Prev: v03,  
Up: Changelog
 
 File: README.info,  Node: v013,  Next: v012,  Prev: v02,  Up: Changelog
 
-5.6 v0.1.3
+5.7 v0.1.3
 ==========
 
 *Fixes*
@@ -433,7 +449,7 @@ File: README.info,  Node: v013,  Next: v012,  Prev: v02,  
Up: Changelog
 
 File: README.info,  Node: v012,  Next: v011,  Prev: v013,  Up: Changelog
 
-5.7 v0.1.2
+5.8 v0.1.2
 ==========
 
 *Fixes*
@@ -442,7 +458,7 @@ File: README.info,  Node: v012,  Next: v011,  Prev: v013,  
Up: Changelog
 
 File: README.info,  Node: v011,  Next: v01,  Prev: v012,  Up: Changelog
 
-5.8 v0.1.1
+5.9 v0.1.1
 ==========
 
 *Fixes*
@@ -451,8 +467,8 @@ File: README.info,  Node: v011,  Next: v01,  Prev: v012,  
Up: Changelog
 
 File: README.info,  Node: v01,  Prev: v011,  Up: Changelog
 
-5.9 v0.1
-========
+5.10 v0.1
+=========
 
 Initial release.
 
@@ -488,30 +504,31 @@ to request the assignment form.
 
 Tag Table:
 Node: Top231
-Node: Installation2429
-Node: GNU ELPA2580
-Node: Quelpa2945
-Node: Configuration3665
-Node: Usage4512
-Node: Activities4701
-Node: Compatibility5689
-Node: Modes6173
-Node: Workflow6841
-Node: Commands7794
-Node: Bookmarks9150
-Node: FAQ9502
-Node: Changelog12578
-Node: v04-pre12834
-Node: v03212945
-Node: v03113076
-Node: v0313406
-Node: v0213796
-Node: v01314288
-Node: v01214437
-Node: v01114614
-Node: v0114777
-Node: Development14876
-Node: Copyright assignment15148
+Node: Installation2445
+Node: GNU ELPA2596
+Node: Quelpa2961
+Node: Configuration3681
+Node: Usage4528
+Node: Activities4717
+Node: Compatibility5705
+Node: Modes6189
+Node: Workflow6857
+Node: Commands7810
+Node: Bookmarks9166
+Node: FAQ9518
+Node: Changelog12594
+Node: v04-pre12866
+Node: v03312977
+Node: v03213411
+Node: v03113539
+Node: v0313869
+Node: v0214259
+Node: v01314751
+Node: v01214900
+Node: v01115077
+Node: v0115240
+Node: Development15341
+Node: Copyright assignment15613
 
 End Tag Table
 



reply via email to

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