From 6539bf6535af41c096e76b17722bd1edd2a024ec Mon Sep 17 00:00:00 2001 From: Eric Budd Date: Sat, 8 Feb 2020 12:15:57 -0500 Subject: [PATCH] Bump Iris to version 1.0.8 --- README.md | 8 ++++---- TODO.md | 5 ++++- iris.rb | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 961180c..6e8f516 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Iris has a readline interface that can be used to navigate the message corpus. ### Readline Interface Example ``` %> iris -Welcome to Iris v. 1.0.7. Type "help" for a list of commands.; Ctrl-D or 'quit' to leave. +Welcome to Iris v. 1.0.8. Type "help" for a list of commands.; Ctrl-D or 'quit' to leave. | ID | U | TIMESTAMP | AUTHOR | TITLE | 1 | | 2018-01-24T05:49:53Z | jimmy_foo@ctrl-c.club | Welcome! @@ -308,7 +308,7 @@ This outputs the current version of Iris, along with messsage, topic, and author ``` jennie_minnie@ctrl-c.club~> info -Iris 1.0.7 +Iris 1.0.8 13 topics, 0 unread. 50 messages, 0 unread. 10 authors. @@ -341,7 +341,7 @@ iris --version ``` ``` -Iris 1.0.7 +Iris 1.0.8 ``` --- @@ -357,7 +357,7 @@ iris --stats ``` ``` -Iris 1.0.7 +Iris 1.0.8 13 topics, 0 unread. 50 messages, 0 unread. 10 authors. diff --git a/TODO.md b/TODO.md index 4eb6f41..eb9cf47 100644 --- a/TODO.md +++ b/TODO.md @@ -94,6 +94,9 @@ * ~Keep replies on edited topics~ * ~Add unread topic to overall unread count~ -# Completed as of 1.0.7 +# Completed as of 1.0.8 * ~Fix "unread count" bug~ +* ~Fix bug when UID has been deleted from /etc/passwd, but user's message file still exists~ +* ~Add debug mode to Iris~ +* ~Refactor Iris to make it easier to load test files to run with~ diff --git a/iris.rb b/iris.rb index 7134e61..2d4f510 100755 --- a/iris.rb +++ b/iris.rb @@ -8,7 +8,7 @@ require 'time' # require 'pry' # Only needed for debugging class Config - VERSION = '1.0.7' + VERSION = '1.0.8' MESSAGE_FILE = "#{ENV['HOME']}/.iris.messages" HISTORY_FILE = "#{ENV['HOME']}/.iris.history" IRIS_SCRIPT = __FILE__