Bump Iris version to 1.0.12

This commit is contained in:
Eric B. Budd 2021-09-07 23:38:28 -05:00
parent 0462ada0a0
commit 08694c1403
3 changed files with 11 additions and 8 deletions

View File

@ -36,7 +36,7 @@ Iris has a readline interface that can be used to navigate the message corpus.
```bash ```bash
%> iris %> 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 | ID | U | TIMESTAMP | AUTHOR | TITLE
| 1 | | 2018-01-24T05:49:53Z | jimmy_foo@ctrl-c.club | Welcome! | 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 ```bash
jennie_minnie@ctrl-c.club~> info jennie_minnie@ctrl-c.club~> info
Iris 1.0.11 Iris 1.0.12
13 topics, 0 unread. 13 topics, 0 unread.
50 messages, 0 unread. 50 messages, 0 unread.
10 authors. 10 authors.
@ -404,7 +404,7 @@ iris --version
``` ```
```bash ```bash
Iris 1.0.11 Iris 1.0.12
``` ```
--- ---
@ -420,7 +420,7 @@ iris --stats
``` ```
```bash ```bash
Iris 1.0.11 Iris 1.0.12
13 topics, 0 unread. 13 topics, 0 unread.
50 messages, 0 unread. 50 messages, 0 unread.
10 authors. 10 authors.

View File

@ -11,7 +11,6 @@
### Bugs ### Bugs
* Replying implicitly to 24 replied to 6 instead-- remove implicit reply? * 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? * Is `Time.now.utc.iso8601` working as expected?
* Fix bug when people are posting from different time zones * Fix bug when people are posting from different time zones
* Fix message ordering when editing/deleting multiple messages * Fix message ordering when editing/deleting multiple messages
@ -21,11 +20,9 @@
* Add "unread" marker to topic replies * Add "unread" marker to topic replies
* Allow shelling out to editor for message editing * Allow shelling out to editor for message editing
* https://github.com/Calamitous/iris/issues/2 * https://github.com/Calamitous/iris/issues/2
* Add "Mark all read" option
* Add pagination/less for long message lists * Add pagination/less for long message lists
* https://github.com/Calamitous/iris/issues/1 * https://github.com/Calamitous/iris/issues/1
* Add local timezone rendering * 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 * CLI option to show response count to threads the user authored
* Search/regex function to find all messages * Search/regex function to find all messages
@ -71,6 +68,12 @@
# Changelog # 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 ## 1.0.11
* Speed up the topic listing significantly * Speed up the topic listing significantly
* Add 'unread' (short form 'u') to only list topics with unread messages * Add 'unread' (short form 'u') to only list topics with unread messages

View File

@ -8,7 +8,7 @@ require 'time'
# require 'pry' # Only needed for debugging # require 'pry' # Only needed for debugging
class Config class Config
VERSION = '1.0.11' VERSION = '1.0.12'
MESSAGE_FILE = "#{ENV['HOME']}/.iris.messages" MESSAGE_FILE = "#{ENV['HOME']}/.iris.messages"
HISTORY_FILE = "#{ENV['HOME']}/.iris.history" HISTORY_FILE = "#{ENV['HOME']}/.iris.history"
IRIS_SCRIPT = __FILE__ IRIS_SCRIPT = __FILE__