Bump version to 1.0.6

This commit is contained in:
Eric Budd 2018-05-13 01:48:28 -04:00
parent 8225291867
commit 1ec1849fd6
2 changed files with 25 additions and 21 deletions

44
TODO.md
View File

@ -1,24 +1,13 @@
# Epics
## MVP: Complete!
## Reading/Status: Complete!
## Editing/Deleting: In Progress
## Editing/Deleting: Complete!
## Documentation: In Progress
# For 1.0.6
* ~Message deletion~
* ~Message editing~
* ~Gracefully handle bad message files~
* ~Fix topic selection when replying without topic ID~
* ~Automatically display topics when opening~
* ~Move display headers into frame line~
* ~Fix truncated message headers being one character too long in topic list~
* ~Status flag fix~
* ~Keep order of message on edit~
* ~Mark unread topics/topics with unread replies in topics list~
* ~Add column headers for topics~
* ~Document new features~
* ~Keep replies on edited topics~
* ~Add unread topic to overall unread count~
# For 1.0.7
* Add integration tests
* Continue to make loader more durable against corrupted data files
* Time to start refactoring!
# Bugs:
* Is `Time.now.utc.iso8601` working as expected?
@ -28,7 +17,6 @@
# Tech debt:
* Flesh out technical sections
* Flesh out tests
* Add integration tests
* Create Struct to firm up message payload
* Let Message initialization accept params as a hash
* Add check for message file format version
@ -48,12 +36,12 @@
* Allow shelling out to editor for message editing?
# Fancify interface:
* Add (read/unread) counts to topic line
* Readline.completion_proc for tab completion
* Pagination?
* Add "read" message counts to topic line
* Add reader/user count to stats
* Gracefully handle attempt to "r 1 message"
* Highlight names for readability
* Readline.completion_proc for tab completion
* Pagination?
* Add optional title for topics
* Add message when no topics are found
* Add message troubleshooting tool, for deep data dive
@ -81,3 +69,19 @@
* Made message file slightly more human-readable
# Completed as of 1.0.6
* ~Message deletion~
* ~Message editing~
* ~Gracefully handle bad message files~
* ~Fix topic selection when replying without topic ID~
* ~Automatically display topics when opening~
* ~Move display headers into frame line~
* ~Fix truncated message headers being one character too long in topic list~
* ~Status flag fix~
* ~Keep order of message on edit~
* ~Mark unread topics/topics with unread replies in topics list~
* ~Add column headers for topics~
* ~Document new features~
* ~Keep replies on edited topics~
* ~Add unread topic to overall unread count~
# Completed as of 1.0.7

View File

@ -8,7 +8,7 @@ require 'readline'
# require 'pry' # Only needed for debugging
class Config
VERSION = '1.0.5'
VERSION = '1.0.6'
MESSAGE_FILE = "#{ENV['HOME']}/.iris.messages"
HISTORY_FILE = "#{ENV['HOME']}/.iris.history"
READ_FILE = "#{ENV['HOME']}/.iris.read"