Bump to dev version.
This commit is contained in:
parent
aaa6e582a4
commit
4e0d8108e6
2 changed files with 12 additions and 3 deletions
|
@ -33,11 +33,13 @@
|
||||||
)
|
)
|
||||||
|
|
||||||
(import scheme
|
(import scheme
|
||||||
|
(chicken base)
|
||||||
(chicken string)
|
(chicken string)
|
||||||
(chicken sort)
|
(chicken sort)
|
||||||
(chicken format)
|
(chicken format)
|
||||||
configuration
|
configuration
|
||||||
util-io)
|
util-io
|
||||||
|
util-list)
|
||||||
|
|
||||||
;; Runs the mailman3 binary with any arguments and returns the lines
|
;; Runs the mailman3 binary with any arguments and returns the lines
|
||||||
;; produced on stdout
|
;; produced on stdout
|
||||||
|
@ -52,7 +54,14 @@
|
||||||
|
|
||||||
;; Returns the list of available lists
|
;; Returns the list of available lists
|
||||||
(define (list-mailman3-lists)
|
(define (list-mailman3-lists)
|
||||||
(get-mailman3-output-lines "lists" "-q"))
|
(filter
|
||||||
|
identity
|
||||||
|
(map (lambda (line)
|
||||||
|
(let ((sline (string-split line "@")))
|
||||||
|
(if (null? sline)
|
||||||
|
#f
|
||||||
|
(car sline))))
|
||||||
|
(get-mailman3-output-lines "lists" "-q"))))
|
||||||
|
|
||||||
;; Returns the list of members of given list
|
;; Returns the list of members of given list
|
||||||
(define (list-mailman3-list-members lst)
|
(define (list-mailman3-list-members lst)
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
(chicken format))
|
(chicken format))
|
||||||
|
|
||||||
;; Short banner
|
;; Short banner
|
||||||
(define banner-line "HackerBase 1.8 (c) 2023 Brmlab, z.s.")
|
(define banner-line "HackerBase 1.9-dev (c) 2023 Brmlab, z.s.")
|
||||||
|
|
||||||
;; Banner source with numbers for ANSI CSI SGR
|
;; Banner source with numbers for ANSI CSI SGR
|
||||||
(define banner-source "
|
(define banner-source "
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue