diff --git a/README.md b/README.md index 4eee8f65f3..a9fa6d9977 100644 --- a/README.md +++ b/README.md @@ -175,7 +175,7 @@ Use `/help` in chat to see the list of available commands. ### Groups -To create a group use `/g `, the add contacts to it with `/a `and send messages with `# `. Use `/help groups` for other commands. +To create a group use `/g `, then add contacts to it with `/a `and send messages with `# `. Use `/help groups` for other commands. ![simplex-chat](./images/groups.gif) @@ -185,7 +185,7 @@ To create a group use `/g `, the add contacts to it with `/a ` - the recipient will have to accept it before it is sent. Use `/help files` for other commands. -![simplex-chat](./images/file-transfer.gif) +![simplex-chat](./images/files.gif) You can send files to a group with `/f # `. @@ -216,12 +216,12 @@ order by internal_id desc; 1. Mobile and desktop apps (in progress). 2. SMP protocol improvements: - - SMP queue redundancy and rotation. - - Message delivery confirmation. - - Support multiple devices. + - SMP queue redundancy and rotation. + - Message delivery confirmation. + - Support multiple devices. 3. Privacy-preserving identity server for optional DNS-based contact/group addresses to simplify connection and discovery, but not used to deliver messages: - - keep all your contacts and groups even if you lose the domain. - - the server doesn't have information about your contacts and groups. + - keep all your contacts and groups even if you lose the domain. + - the server doesn't have information about your contacts and groups. 4. Media server to optimize sending large files to groups. 5. Channels server for large groups and broadcast channels. diff --git a/apps/simplex-chat/Main.hs b/apps/simplex-chat/Main.hs index 839bb873e6..e11f943171 100644 --- a/apps/simplex-chat/Main.hs +++ b/apps/simplex-chat/Main.hs @@ -20,7 +20,7 @@ welcomeGetOpts :: IO ChatOpts welcomeGetOpts = do appDir <- getAppUserDataDirectory "simplex" opts@ChatOpts {dbFile} <- getChatOpts appDir - putStrLn "SimpleX chat prototype v0.3.1" + putStrLn "SimpleX chat prototype v0.4.0" putStrLn $ "db: " <> dbFile <> ".chat.db, " <> dbFile <> ".agent.db" putStrLn "type \"/help\" or \"/h\" for usage info" pure opts diff --git a/images/connection.gif b/images/connection.gif index 325925e99c..f15f7bcb09 100644 Binary files a/images/connection.gif and b/images/connection.gif differ diff --git a/images/file-transfer.gif b/images/file-transfer.gif deleted file mode 100644 index a9e90d5ef5..0000000000 Binary files a/images/file-transfer.gif and /dev/null differ diff --git a/images/files.gif b/images/files.gif new file mode 100644 index 0000000000..ad8beaa183 Binary files /dev/null and b/images/files.gif differ diff --git a/images/groups.gif b/images/groups.gif index 7d448f6fd2..0ce6dc30ec 100644 Binary files a/images/groups.gif and b/images/groups.gif differ