chiark / gitweb /
mastodonochrome.git
21 months agoImproved first couple of client operations.
Simon Tatham [Thu, 28 Dec 2023 16:49:06 +0000 (16:49 +0000)]
Improved first couple of client operations.

Now we check errors sensibly rather than via cavalier .unwrap(); we
cache accounts as well as statuses per id; and we verify the returned
id against the one we asked for (to make it not an obvious attack
avenue to file things under the returned id).

21 months agoFilled in all the rest of the menus.
Simon Tatham [Thu, 28 Dec 2023 14:16:53 +0000 (14:16 +0000)]
Filled in all the rest of the menus.

Also, the actions that aren't implemented yet are clearly marked with
'NYI', and been if you try to select them.

21 months agoEnough menu handling to [ESC][X][X]!
Simon Tatham [Thu, 28 Dec 2023 12:33:30 +0000 (12:33 +0000)]
Enough menu handling to [ESC][X][X]!

21 months agoDon't let menu items go way over to the right.
Simon Tatham [Thu, 28 Dec 2023 12:11:57 +0000 (12:11 +0000)]
Don't let menu items go way over to the right.

The allocation of 3/4 of padding space to the left-hand side is
intended for cases where there isn't room to put the = signs in the
middle. When there is, we should do it.

21 months agoForgot trailing '.' on FileStatusLine without proportion.
Simon Tatham [Thu, 28 Dec 2023 12:01:44 +0000 (12:01 +0000)]
Forgot trailing '.' on FileStatusLine without proportion.

21 months agoBegin actually displaying menu options!
Simon Tatham [Thu, 28 Dec 2023 11:49:02 +0000 (11:49 +0000)]
Begin actually displaying menu options!

21 months agoReduce some of the unused-stuff warnings.
Simon Tatham [Thu, 28 Dec 2023 11:38:42 +0000 (11:38 +0000)]
Reduce some of the unused-stuff warnings.

Perhaps I should turn all these warnings off until I've actually used
all the unused stuff? I'm sure they're very useful once your program
is supposed to be finished, but while it's still only half-written,
yes I _know_ I haven't got round to using all these fields yet.

21 months agoChanged my mind about using Box<dyn TextFragment>.
Simon Tatham [Thu, 28 Dec 2023 11:06:15 +0000 (11:06 +0000)]
Changed my mind about using Box<dyn TextFragment>.

I think it's going to be a better idea to have each user of
TextFragment separately make an enum that permits precisely the kinds
of TextFragment they want. Firstly, this means we can be statically
sure no rogue weird ones got in there by accident; secondly, it
immediately solves all the problems of finding the ones that need
special handling at render time (extensible-file indicators etc).

And thirdly - this is definitely a thing I'm having trouble getting
used to in Rust - if I _do_ need one particular client of TextFragment
to do everything by means of a list of perfectly generic Box<dyn
TextFragment>, I can choose to do it in _that_ client module, and
text.rs doesn't have to lift a finger to support it!

21 months agoDelete some of my commented-out prototype code.
Simon Tatham [Thu, 28 Dec 2023 09:01:13 +0000 (09:01 +0000)]
Delete some of my commented-out prototype code.

The new Tui structure now replicates almost all the useful
functionality of that. The only exception is the extra loop where we
re-split each line returned from render() to the screen width, in case
it's overlong. But that can't be centralised into the current code: it
will have to live in the draw() method of ActivityState types that
need it (particularly, those rendering paragraphs), because they'll
need to know when it happened in order to count screen lines
correctly.

21 months agoStore an OurKey in FileStatusLine and MenuKeypressLine.
Simon Tatham [Thu, 28 Dec 2023 08:45:45 +0000 (08:45 +0000)]
Store an OurKey in FileStatusLine and MenuKeypressLine.

Now we have a representation for keystrokes that can trigger actions,
this is the first step towards a DRY representation in which each menu
and status line configures just once the a set of triples (keypress,
help text, action to take).

Not sure what form the 'action' part of that triple will take yet,
though.

21 months agoPut x first in all coordinate pairs.
Simon Tatham [Thu, 28 Dec 2023 08:32:21 +0000 (08:32 +0000)]
Put x first in all coordinate pairs.

This is the universal convention _almost_ everywhere. When writing
actual curses programs I've sometimes reversed it, because curses's
API puts line before column. But (a) ratatui is the sensible way round
in the first place; (b) if my plan in this code is to localise the
curses-type library as hard as possible into one module, then I
wouldn't want to allow its conventions to leak into the rest of the
code _anyway_.

So, here we speak (x,y) like normal people, and since ratatui happens
to be sensible, we do so _everywhere_; if for some reason we had to
work with actual curses, we'd localise the swap to tui.rs.

21 months agoMake a start on ActivityStates drawing themselves.
Simon Tatham [Thu, 28 Dec 2023 08:30:09 +0000 (08:30 +0000)]
Make a start on ActivityStates drawing themselves.

This begins to bring the pieces together: our Main Menu now has its
correct header line, although as yet nothing else.

21 months agoMore structure.
Simon Tatham [Wed, 27 Dec 2023 20:35:50 +0000 (20:35 +0000)]
More structure.

Now we hand off to subsidiary traits that can treat menus, files and
editors all differently.

21 months agoStart of the main TUI code.
Simon Tatham [Wed, 27 Dec 2023 17:17:58 +0000 (17:17 +0000)]
Start of the main TUI code.

So far, I've made a struct that encapsulates the Ratatui state and
some subthread comms machinery, i.e. does the physical work. Then
there's a sub-struct to contain the logical UI state (so it can be
borrowed mutably without having to re-borrow the main struct), which
gets to draw things on the screen, update itself in response to
keypresses, and tell the physical side what to do after the
keypress (options currently limited to 'beep', 'exit', or 'just redraw
and go round the loop again').

Currently the UI itself is just "hello, world". I think menus are
next.

21 months agoImplement a specialised stack of UI activities.
Simon Tatham [Wed, 27 Dec 2023 16:31:26 +0000 (16:31 +0000)]
Implement a specialised stack of UI activities.

I think this mostly matches Monochrome's rules about what activities
you can and can't have stacked on top of each other. To wit, you
basically get an arbitrary keypath of menus from the Main Menu, plus
optionally a single utilities-menu thing pushed on top of that.
Utilities things replace each other rather than stacking, so that
popping the stack returns to the non-utility below it.

(An exception on real Monochrome is that popping from Send Message
replaces it with the Users On screen - also a utility-class activity -
rather than popping back to the topmost non-util. Mastodon has no such
thing, so we can omit that special case here. If anything like that
were needed anyway, it could be special-cased inside pop().)

21 months agoForgot to wrap overlong lines.
Simon Tatham [Wed, 27 Dec 2023 14:32:41 +0000 (14:32 +0000)]
Forgot to wrap overlong lines.

21 months agoEnd-to-end PoC: we format and display a sample toot!
Simon Tatham [Tue, 26 Dec 2023 22:08:04 +0000 (22:08 +0000)]
End-to-end PoC: we format and display a sample toot!

21 months agoHalf-arsed attempt to set up a Client type.
Simon Tatham [Tue, 26 Dec 2023 17:17:21 +0000 (17:17 +0000)]
Half-arsed attempt to set up a Client type.

It _compiles_, but I'm not at all sure the API is what it ought to be.
Still, I'll press on with it for the moment and figure out how it's
wrong later.

21 months agoAnd prime the ExtendableIndicator.
Simon Tatham [Tue, 26 Dec 2023 14:09:50 +0000 (14:09 +0000)]
And prime the ExtendableIndicator.

Perhaps we're ready to start on another module now!

21 months agoMenuKeypressLine
Simon Tatham [Tue, 26 Dec 2023 12:52:22 +0000 (12:52 +0000)]
MenuKeypressLine

21 months agoFileStatusLine priority-sensitive rendering.
Simon Tatham [Tue, 26 Dec 2023 12:13:07 +0000 (12:13 +0000)]
FileStatusLine priority-sensitive rendering.

21 months agoAll right, ColouredString wants an is_empty()
Simon Tatham [Tue, 26 Dec 2023 12:12:59 +0000 (12:12 +0000)]
All right, ColouredString wants an is_empty()

21 months agoWait, we can match on strings! Much nicer.
Simon Tatham [Tue, 26 Dec 2023 10:29:18 +0000 (10:29 +0000)]
Wait, we can match on strings! Much nicer.

21 months agoMass change of .to_string() to .to_owned().
Simon Tatham [Tue, 26 Dec 2023 10:20:58 +0000 (10:20 +0000)]
Mass change of .to_string() to .to_owned().

I've just figured out that the former means 'use the Display trait'
whereas the latter means 'change ownership and lifetime'. In the case
of &str, both do what I want, but .to_owned() is a clearer
specification of how _little_ I wanted.

21 months agoFirst half of FileStatusLine. Rendering undone.
Simon Tatham [Tue, 26 Dec 2023 10:18:18 +0000 (10:18 +0000)]
First half of FileStatusLine. Rendering undone.

21 months agoChanged my mind again about constructor API
Simon Tatham [Tue, 26 Dec 2023 10:18:08 +0000 (10:18 +0000)]
Changed my mind again about constructor API

21 months agoMedia entries.
Simon Tatham [Tue, 26 Dec 2023 09:20:45 +0000 (09:20 +0000)]
Media entries.

21 months agoUserListEntry, which was easy
Simon Tatham [Tue, 26 Dec 2023 09:01:17 +0000 (09:01 +0000)]
UserListEntry, which was easy

21 months agoNotification log formatting
Simon Tatham [Tue, 26 Dec 2023 07:57:03 +0000 (07:57 +0000)]
Notification log formatting

21 months agoRe: header.
Simon Tatham [Mon, 25 Dec 2023 21:16:03 +0000 (21:16 +0000)]
Re: header.

21 months agoExtendableIndicator, without the hard part
Simon Tatham [Mon, 25 Dec 2023 20:43:55 +0000 (20:43 +0000)]
ExtendableIndicator, without the hard part

21 months agoDiagnose unsupported markup tags
Simon Tatham [Mon, 25 Dec 2023 20:06:24 +0000 (20:06 +0000)]
Diagnose unsupported markup tags

21 months agoAha, Iterator::position is a bit nicer
Simon Tatham [Mon, 25 Dec 2023 19:58:15 +0000 (19:58 +0000)]
Aha, Iterator::position is a bit nicer

21 months agoFirst-draft HTML parser
Simon Tatham [Mon, 25 Dec 2023 16:16:11 +0000 (16:16 +0000)]
First-draft HTML parser

21 months agoGet the QualNames out of my html::Receiver.
Simon Tatham [Mon, 25 Dec 2023 15:56:39 +0000 (15:56 +0000)]
Get the QualNames out of my html::Receiver.

21 months agopush_para
Simon Tatham [Mon, 25 Dec 2023 15:56:08 +0000 (15:56 +0000)]
push_para

21 months agoFileHeader text implementation
Simon Tatham [Mon, 25 Dec 2023 15:55:47 +0000 (15:55 +0000)]
FileHeader text implementation

21 months agoRender paragraphs by wrapping them.
Simon Tatham [Mon, 25 Dec 2023 13:12:45 +0000 (13:12 +0000)]
Render paragraphs by wrapping them.

21 months agoBuild paragraphs, in a bodgy slow way.
Simon Tatham [Mon, 25 Dec 2023 10:42:14 +0000 (10:42 +0000)]
Build paragraphs, in a bodgy slow way.

For the moment, I've made a CharIterator that returns each coloured
character of a ColouredString one by one. That's nasty, but easy. I
think more ideally I'd want an iterator that returned contiguous
chunks of a ColouredString according to a filter function passed in
that classifies characters as wanting to be in the same chunk. But
that involves function parameters, so I can try that later.

21 months agoFactor out truncation of a ColouredString
Simon Tatham [Sun, 24 Dec 2023 22:29:48 +0000 (22:29 +0000)]
Factor out truncation of a ColouredString

21 months agoUsername headers
Simon Tatham [Sun, 24 Dec 2023 22:13:47 +0000 (22:13 +0000)]
Username headers

21 months agoEditorHeaderSeparator, which is really easy
Simon Tatham [Sun, 24 Dec 2023 21:48:03 +0000 (21:48 +0000)]
EditorHeaderSeparator, which is really easy

21 months agoSeparatorLine (with proper date formatting!)
Simon Tatham [Sun, 24 Dec 2023 21:26:32 +0000 (21:26 +0000)]
SeparatorLine (with proper date formatting!)

21 months agoMore ColouredString stuff I needed
Simon Tatham [Sun, 24 Dec 2023 21:26:23 +0000 (21:26 +0000)]
More ColouredString stuff I needed

21 months agoStart of the text module.
Simon Tatham [Sun, 24 Dec 2023 21:07:45 +0000 (21:07 +0000)]
Start of the text module.

21 months agoOh wait I don't need to _implement_ Eq
Simon Tatham [Sun, 24 Dec 2023 21:01:13 +0000 (21:01 +0000)]
Oh wait I don't need to _implement_ Eq

21 months agoMaybe the version with slices?
Simon Tatham [Sun, 24 Dec 2023 16:46:59 +0000 (16:46 +0000)]
Maybe the version with slices?

21 months agoBasic version of split.
Simon Tatham [Sun, 24 Dec 2023 16:08:43 +0000 (16:08 +0000)]
Basic version of split.

Returns a newly allocated ColouredString. Perhaps it would be nice to
be able to return a lighter-weight thing containing a pair of &str?

21 months agoSuccessful frags iterator!
Simon Tatham [Sun, 24 Dec 2023 15:41:55 +0000 (15:41 +0000)]
Successful frags iterator!

21 months agoMore, but still not finished
Simon Tatham [Sun, 24 Dec 2023 13:48:15 +0000 (13:48 +0000)]
More, but still not finished

I'm not at all sure that counting by chars is what I really want, hmmm.

21 months agoUNFINISHED: ColouredString class.
Simon Tatham [Sun, 24 Dec 2023 13:37:48 +0000 (13:37 +0000)]
UNFINISHED: ColouredString class.

21 months agoOK, now it doesn't.
Simon Tatham [Sat, 23 Dec 2023 20:35:50 +0000 (20:35 +0000)]
OK, now it doesn't.

Looks as if the only problem there was trying to link the document
root to itself.

21 months agoTry walking the tree. It crashes, oops.
Simon Tatham [Sat, 23 Dec 2023 20:01:06 +0000 (20:01 +0000)]
Try walking the tree. It crashes, oops.

21 months agoAbandon html2text and try html5ever.
Simon Tatham [Sat, 23 Dec 2023 18:26:56 +0000 (18:26 +0000)]
Abandon html2text and try html5ever.

I _think_ this gets me a tree structure containing the HTML DOM. Now I
have to do the same formatting and wrapping that I'm doing in the
Python version, but that really should just be a matter of conversion.

21 months agoNow the scanners seem to be working!
Simon Tatham [Sat, 23 Dec 2023 17:04:36 +0000 (17:04 +0000)]
Now the scanners seem to be working!

21 months agoFirst cut at transcribing the scanning regexes.
Simon Tatham [Sat, 23 Dec 2023 16:31:06 +0000 (16:31 +0000)]
First cut at transcribing the scanning regexes.

21 months agoFirst cut at parsing HTML of a toot.
Simon Tatham [Sat, 23 Dec 2023 15:22:29 +0000 (15:22 +0000)]
First cut at parsing HTML of a toot.

But it doesn't work right, because the CSS is ignored. I think that's
because html2text only processes CSS classes on <span> elements, not
on <a> where the Mastodon server puts them.

21 months agoNow we can draw directly without ratatui widgets.
Simon Tatham [Sat, 23 Dec 2023 14:41:57 +0000 (14:41 +0000)]
Now we can draw directly without ratatui widgets.

I didn't really want to have to structure my program around their
widget API, and now I don't have to.

21 months agoLooks as if this is the best way to go beep!
Simon Tatham [Sat, 23 Dec 2023 14:29:09 +0000 (14:29 +0000)]
Looks as if this is the best way to go beep!

21 months agoSet up ratatui and demonstrate event handling.
Simon Tatham [Sat, 23 Dec 2023 14:16:22 +0000 (14:16 +0000)]
Set up ratatui and demonstrate event handling.

I've had to put the event-reading in another thread, because I
couldn't see any way to tie extra fds into ratatui's poll loop. So
instead I'm going to have to make subthreads communicate to the main
loop via an interthread channel.

21 months agoUpdate .gitignore.
Simon Tatham [Sat, 23 Dec 2023 12:56:07 +0000 (12:56 +0000)]
Update .gitignore.

21 months agoProcess raw stream data into UTF-8 lines.
Simon Tatham [Sat, 23 Dec 2023 12:51:03 +0000 (12:51 +0000)]
Process raw stream data into UTF-8 lines.

21 months agoGet rid of the rest of the unwraps.
Simon Tatham [Sat, 23 Dec 2023 12:36:52 +0000 (12:36 +0000)]
Get rid of the rest of the unwraps.

21 months agoMade auth file handling fallible.
Simon Tatham [Sat, 23 Dec 2023 12:29:03 +0000 (12:29 +0000)]
Made auth file handling fallible.

There are no doubt many ways to do it better, but this is a start -
now it will at least print what went wrong.

21 months agoMove auth file handling out into a module.
Simon Tatham [Sat, 23 Dec 2023 12:14:50 +0000 (12:14 +0000)]
Move auth file handling out into a module.

It ought to be fallible, though.

21 months agoTry using xdg to get the config directory location.
Simon Tatham [Sat, 23 Dec 2023 11:58:04 +0000 (11:58 +0000)]
Try using xdg to get the config directory location.

21 months agoReplace copy_to with direct use of the Read trait
Simon Tatham [Sat, 23 Dec 2023 11:52:07 +0000 (11:52 +0000)]
Replace copy_to with direct use of the Read trait

21 months agoFirst demo of a streaming API working.
Simon Tatham [Sat, 23 Dec 2023 11:37:08 +0000 (11:37 +0000)]
First demo of a streaming API working.

Had to bodgily pull in the Python version's auth data for this, but
it's a start. I can sort that part out properly later.

21 months agoMove the types out into a separate module.
Simon Tatham [Sat, 23 Dec 2023 11:15:28 +0000 (11:15 +0000)]
Move the types out into a separate module.

21 months agoExperimented with a reqwest Client.
Simon Tatham [Sat, 23 Dec 2023 11:15:12 +0000 (11:15 +0000)]
Experimented with a reqwest Client.

21 months agoOK, that's probably enough data modelling for now
Simon Tatham [Sat, 23 Dec 2023 11:03:18 +0000 (11:03 +0000)]
OK, that's probably enough data modelling for now

21 months agoDeserialise visibility, with compiler warnings
Simon Tatham [Sat, 23 Dec 2023 10:53:58 +0000 (10:53 +0000)]
Deserialise visibility, with compiler warnings

21 months agoGot most of the dates, but what about last_status_at?
Simon Tatham [Sat, 23 Dec 2023 10:23:57 +0000 (10:23 +0000)]
Got most of the dates, but what about last_status_at?

21 months agoFill in some more parts of the main structures
Simon Tatham [Sat, 23 Dec 2023 10:16:46 +0000 (10:16 +0000)]
Fill in some more parts of the main structures

21 months agoSelf-reference to subthings via Box
Simon Tatham [Sat, 23 Dec 2023 10:16:33 +0000 (10:16 +0000)]
Self-reference to subthings via Box

21 months agoCope with some optional fields
Simon Tatham [Sat, 23 Dec 2023 10:11:50 +0000 (10:11 +0000)]
Cope with some optional fields

21 months agoDecode a sample Status as well as an Account
Simon Tatham [Sat, 23 Dec 2023 10:08:41 +0000 (10:08 +0000)]
Decode a sample Status as well as an Account

21 months agoPoC of retrieving and unpacking a struct.
Simon Tatham [Sat, 23 Dec 2023 10:02:10 +0000 (10:02 +0000)]
PoC of retrieving and unpacking a struct.

21 months agoBegin setting up a Rust framework.
Simon Tatham [Sat, 23 Dec 2023 09:45:09 +0000 (09:45 +0000)]
Begin setting up a Rust framework.

21 months agoFix the various 'user's posts' variations.
Simon Tatham [Fri, 22 Dec 2023 10:18:55 +0000 (10:18 +0000)]
Fix the various 'user's posts' variations.

By generalising the True/False -> true/false mapping across all
booleans submitted as request parameters.

21 months agoSupport <pre> tag in post HTML.
Simon Tatham [Sun, 17 Dec 2023 11:49:58 +0000 (11:49 +0000)]
Support <pre> tag in post HTML.

21 months agoOption to view a post by its numeric id.
Simon Tatham [Sun, 17 Dec 2023 11:39:12 +0000 (11:39 +0000)]
Option to view a post by its numeric id.

21 months agoMore timelines.
Simon Tatham [Sun, 17 Dec 2023 09:22:08 +0000 (09:22 +0000)]
More timelines.

These don't auto-update.

21 months agoGraduations of mode to view a user's posts.
Simon Tatham [Sun, 17 Dec 2023 07:49:15 +0000 (07:49 +0000)]
Graduations of mode to view a user's posts.

Now we can exclude blogs, and also exclude replies to other threads.

(Interestingly, the 'exclude replies' flag in the API only excludes
replies to _other_ accounts. So it keeps replies to _yourself_. One
effect of this is that if you post a multitoot thread, it all shows up
in this list. Of course the client could filter it too...)

21 months agoFix a few NoneType errors.
Simon Tatham [Fri, 15 Dec 2023 17:30:26 +0000 (17:30 +0000)]
Fix a few NoneType errors.

21 months agoChange my mind about how to extend backwards.
Simon Tatham [Fri, 15 Dec 2023 12:25:47 +0000 (12:25 +0000)]
Change my mind about how to extend backwards.

I think pressing [0] at the top of the file is better than double-[B].
Firstly, it's fewer keystrokes to do on purpose; secondly, it's not a
key you would have been repeating already. Now I can hold down [B]
safely to page up through the existing text, _and_ if I want to keep
extending backwards I can do it more easily than before.

21 months agoFix out-of-bounds access in files shorter than the screen
Simon Tatham [Fri, 15 Dec 2023 08:11:38 +0000 (08:11 +0000)]
Fix out-of-bounds access in files shorter than the screen

21 months agoLists of followers, folllowees, favers and boosters.
Simon Tatham [Fri, 15 Dec 2023 07:56:14 +0000 (07:56 +0000)]
Lists of followers, folllowees, favers and boosters.

21 months agoSupport <blockquote> in HTML.
Simon Tatham [Thu, 14 Dec 2023 22:40:13 +0000 (22:40 +0000)]
Support <blockquote> in HTML.

21 months agoAhem, fix last minute breakage.
Simon Tatham [Thu, 14 Dec 2023 20:23:25 +0000 (20:23 +0000)]
Ahem, fix last minute breakage.

21 months agoFirst cut at viewing a user's posts.
Simon Tatham [Thu, 14 Dec 2023 19:05:58 +0000 (19:05 +0000)]
First cut at viewing a user's posts.

21 months agoChange wording from 'Reply' to 'Send' for non-statuses.
Simon Tatham [Thu, 14 Dec 2023 19:05:33 +0000 (19:05 +0000)]
Change wording from 'Reply' to 'Send' for non-statuses.

You might be sending a message to the named user, but you're not
_replying_ to anything of theirs.

21 months agoFirst cut at Examine User.
Simon Tatham [Thu, 14 Dec 2023 18:20:24 +0000 (18:20 +0000)]
First cut at Examine User.

Currently you can only type in names to examine by hand.

21 months agoExperimental ^K change of behaviour.
Simon Tatham [Thu, 14 Dec 2023 18:20:24 +0000 (18:20 +0000)]
Experimental ^K change of behaviour.

If you press ^K to delete to end of line and you're in mid-paragraph,
I think not a bad answer is to _insert_ a paragraph break, so that the
text on the next line doesn't unexpectedly wrap.

This is intuitively as close as possible to the behaviour in the
non-auto-wrapping 'me'. The only thing I don't like about it is that
pasting the text back in again with ^Y doesn't delete the line break,
but I haven't thought of a less astonishing answer to that yet.

21 months agoTests of Ctrl-K.
Simon Tatham [Thu, 14 Dec 2023 18:20:24 +0000 (18:20 +0000)]
Tests of Ctrl-K.

So I can refactor it.

21 months agoFix goof in IndentedParagraph.
Simon Tatham [Thu, 14 Dec 2023 18:20:24 +0000 (18:20 +0000)]
Fix goof in IndentedParagraph.

21 months agoHTML formatting: support <i>.
Simon Tatham [Thu, 14 Dec 2023 18:20:24 +0000 (18:20 +0000)]
HTML formatting: support <i>.

Same as <em>, of course.

21 months agoSome more TODO comments.
Simon Tatham [Thu, 14 Dec 2023 18:20:24 +0000 (18:20 +0000)]
Some more TODO comments.

21 months agoMatch reply visibility to the incoming message.
Simon Tatham [Thu, 14 Dec 2023 17:35:21 +0000 (17:35 +0000)]
Match reply visibility to the incoming message.

I had a conversation in 'unlisted' status with someone, and it was a
pain to keep setting this by hand.

Of course, it's only a default: you _can_ change the visibility in a
reply.

22 months agoPost info: add list of mentioned users.
Simon Tatham [Mon, 11 Dec 2023 19:11:04 +0000 (19:11 +0000)]
Post info: add list of mentioned users.

Because the post itself doesn't show their fully qualified usernames.