diff --git a/README.md b/README.md index 67b23e7..12c1aea 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Iris has a readline interface that can be used to navigate the message corpus. ```bash %> iris -Welcome to Iris v. 1.0.11. Type "help" for a list of commands.; Ctrl-D or 'quit' to leave. +Welcome to Iris v. 1.0.12. 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! @@ -370,7 +370,7 @@ This outputs the current version of Iris, along with messsage, topic, and author ```bash jennie_minnie@ctrl-c.club~> info -Iris 1.0.11 +Iris 1.0.12 13 topics, 0 unread. 50 messages, 0 unread. 10 authors. @@ -404,7 +404,7 @@ iris --version ``` ```bash -Iris 1.0.11 +Iris 1.0.12 ``` --- @@ -420,7 +420,7 @@ iris --stats ``` ```bash -Iris 1.0.11 +Iris 1.0.12 13 topics, 0 unread. 50 messages, 0 unread. 10 authors. diff --git a/TODO.md b/TODO.md index 4e58014..52a448a 100644 --- a/TODO.md +++ b/TODO.md @@ -11,7 +11,6 @@ ### Bugs * Replying implicitly to 24 replied to 6 instead-- remove implicit reply? -* Exclude user''s own messages from "unread" count * Is `Time.now.utc.iso8601` working as expected? * Fix bug when people are posting from different time zones * Fix message ordering when editing/deleting multiple messages @@ -21,11 +20,9 @@ * Add "unread" marker to topic replies * Allow shelling out to editor for message editing * https://github.com/Calamitous/iris/issues/2 -* Add "Mark all read" option * Add pagination/less for long message lists * https://github.com/Calamitous/iris/issues/1 * Add local timezone rendering -* Add option to mark all messages in a thread as read * CLI option to show response count to threads the user authored * Search/regex function to find all messages @@ -71,6 +68,12 @@ # Changelog +## 1.0.12 +* Add Asara's "mark all read" functionality +* Fix(?) bug with handling broken UTF-8 characters +* Add feature to read the next unread topic ("next") +* Exclude user''s own messages from "unread" count + ## 1.0.11 * Speed up the topic listing significantly * Add 'unread' (short form 'u') to only list topics with unread messages diff --git a/iris.rb b/iris.rb index 5c5510d..4ca45de 100755 --- a/iris.rb +++ b/iris.rb @@ -8,7 +8,7 @@ require 'time' # require 'pry' # Only needed for debugging class Config - VERSION = '1.0.11' + VERSION = '1.0.12' MESSAGE_FILE = "#{ENV['HOME']}/.iris.messages" HISTORY_FILE = "#{ENV['HOME']}/.iris.history" IRIS_SCRIPT = __FILE__