posting
quadrismegistus 4 years ago
parent 7d5b6d26d5
commit c49348e9d3

@ -76,19 +76,15 @@ As of the 23rd of August.
### Animations from terminal app
#### Register
#### Register/Login
<img src="komrade/app/assets/komrade-terminal-preview--2020-09-16--register.gif" height="500" alt="GIF animation" />
#### Login
#### "Meeting" (exchaing public keys)
...
#### Meet
<img src="komrade/app/assets/komrade-terminal-preview--2020-09-16--meet.gif" height="500" alt="GIF animation" />
...
#### Message
#### Messaging
...

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

@ -653,14 +653,14 @@ class KomradeX(Caller):
keystr=self.name+'->'+name
if self.crypt_keys.get(
keystr,
prefix='/met/'
):
return {
'success':False,
'status':f'You have already sent an introduction to @{name}. It would be rude to send another.'
}
# if self.crypt_keys.get(
# keystr,
# prefix='/met/'
# ):
# return {
# 'success':False,
# 'status':f'You have already sent an introduction to @{name}. It would be rude to send another.'
# }
msg_to_op = {
'name':self.name,

@ -259,6 +259,8 @@ class CLI(Logger):
datl=dat.split(' ',1)
name_or_pubkey = datl[0]
if name_or_pubkey.startswith('@'):
name_or_pubkey=name_or_pubkey[1:]
if len(datl)==1:
self.stat(f'Compose your message to @{name_or_pubkey} below.', 'Press Ctrl+D to complete, or Ctrl+C to cancel.')
msg_s = multiline_input().strip()

Loading…
Cancel
Save