Doc tweaks

This commit is contained in:
Eric Budd 2018-01-27 20:12:44 -05:00
parent 2fb033d840
commit 2faf89ddeb
2 changed files with 15 additions and 3 deletions

View File

@ -78,9 +78,9 @@ User configuration is stored in the user's home directory, named `iris.config`.
`/home/jimmy_foo/.iris.config`
#### Read Log
#### Read Messages
The read log keeps track of what messages the user has seen/read. It is storedf in the user's home directory and named `iris.readlog`.
The Read Messages keeps track of what messages the user has seen/read. It is storedf in the user's home directory and named `iris.readlog`.
`/home/jimmy_foo/.iris.readlog`
@ -91,6 +91,8 @@ The readlog must be owner read/writeable.
-rw------- 1 jimmy_foo jimmy_foo /home/jimmy_foo/.iris.readlog
```
#### Activity Log
### Technical Bits
### License

12
iris.rb
View File

@ -6,7 +6,17 @@
#TODO: Check for proper file permissions on message file
#TODO: Use ENV for rows and cols of display?
#TODO: Add "read" list
#TODO: Fix hostname for domain name
#TODO: Add read/unread count
#TODO: Pagination
#TODO: Add title for topics
#TODO: Don't crash when names are cattywumpus
#TODO: Add user muting
#TODO: Message deletion
#TODO: Move all puts into Display class
#TODO: Add startup enviro health check
#TODO: Split helptext into separate file?
#TODO: Add .mute.iris support?
#TODO: CLI options for scripting
require 'time'
require 'base64'