From 05750d649f02b198169e139aa1b347421fca2b56 Mon Sep 17 00:00:00 2001 From: Oddvar Lovaas Date: Wed, 7 Dec 2016 17:51:46 +0000 Subject: [PATCH] Add mm --- supporting-docs/projects/2016-10-07-mm.md | 29 +++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 supporting-docs/projects/2016-10-07-mm.md diff --git a/supporting-docs/projects/2016-10-07-mm.md b/supporting-docs/projects/2016-10-07-mm.md new file mode 100644 index 00000000..e1892a80 --- /dev/null +++ b/supporting-docs/projects/2016-10-07-mm.md @@ -0,0 +1,29 @@ +--- +layout: project +title: mm +categories: projects client +author: Meutraa +description: A minimalistic client written in Go +maturity: Alpha +--- + +# {{ page.title }} +A minimalistic client written in Go + +Features + +* Less than 250 lines of code. +* Fetching last ten messages of each room on start. +* Receiving messages by long polling sync call. +* Sending messages through named pipes. +* Marking latest event as read (the recommendation to only mark this as read when the user has read the message seems iffy here. An IMAP type tagging system could work, but would be as complex as the program itself). At least this way, users of other clients will know your computer has recieved the message. +* Online presence. +* Message modification time set to message timestamp minus five seconds. +* List of new messages (file paths) written to stdout + +Planned + +* Syncing all message history without gaps. + + +Above list fetched from [gitlab](https:///gitlab.com/meutraa/mm/tree/master)!