3 次代碼提交 617ee0d13e ... 025dae2d39

作者 SHA1 備註 提交日期
  George C. Privon 025dae2d39 tag v0.3.1 release 10 月之前
  George C. Privon 69b2629e2c fix missing (cond) clause for showing all closed (accepted and rejected) proposals. fixes #14 10 月之前
  George C. Privon b6126102d7 update changelog for fix to #15 10 月之前
共有 2 個文件被更改,包括 8 次插入3 次删除
  1. 3 1
      CHANGELOG.md
  2. 5 2
      proposal_database.rkt

+ 3 - 1
CHANGELOG.md

@@ -2,9 +2,11 @@
 
 ## v0.3.x
 
-### v0.3.1 (in preparation)
+### v0.3.1 (21 August 2025)
 
 - Annotate example configuration file with guidance.
+- Bugfix for multi-counting open calls if more than one different telescope was applied for within a given call (e.g., VLA and VLBA were applied for via separation proposals in a single NRAO call).
+- Fix `--list-closed` bug that prevented successful printing of all closed proposals.
 
 ### v0.3.0 (20 April 2025)
 

+ 5 - 2
proposal_database.rkt

@@ -10,7 +10,7 @@
          "config.rkt") ; load configuration file
 
 (define prog-name "proposal_database.rkt")
-(define prog-version "v0.3.0")
+(define prog-version "v0.3.1")
 
 
 ; give us the date in YYYY-MM-DD format
@@ -270,7 +270,10 @@ resultdate TEXT DEFAULT '')")
   (display (string-append (number->string (length props))
                           (cond [issub " pending "]
                                 [isaccept " accepted "]
-                                [isrej " rejected "])
+                                [isrej " rejected "]
+                                [(and (not issub)
+                                      (not isaccept)
+                                      (not isrej)) " closed "])
                           (proposal-plurals (length props))
                           " found."))
   (newline)