diff --git a/README.md b/README.md index 7252e21..5102459 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/iris.rb b/iris.rb index 00973c8..977b578 100644 --- a/iris.rb +++ b/iris.rb @@ -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'