From 2faf89ddeb5ff3dc0ed26dbd30ea7fc7face6da6 Mon Sep 17 00:00:00 2001 From: Eric Budd Date: Sat, 27 Jan 2018 20:12:44 -0500 Subject: [PATCH] Doc tweaks --- README.md | 6 ++++-- iris.rb | 12 +++++++++++- 2 files changed, 15 insertions(+), 3 deletions(-) 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'