Tulir Asokan
Tulir Asokan
The side panels don't properly adapt to the terminal size yet, and the current default panel sizes are such that the default terminal size doesn't really have enough space.
The problem is most likely how gomuks handles `m.direct` account data: https://github.com/tulir/gomuks/blob/v0.1.2/matrix/matrix.go#L740-L741
It looks like the history database is corrupted or something like that, you can try clearing cache (`rm -rf ~/.cache/gomuks`)
Probably best to put it with other preferences in Matrix account data, which is cached to `.cache/gomuks/preferences.yaml` as you noticed.
gomuks already uses the XDG spec mostly correctly, `.cache` is the correct place for data cached from the server.
User preferences are stored on the server in account data so they persist and are synced nicely
Currently that's not supported, might add some option for local preference overrides eventually.
https://github.com/LonamiWebs/Telethon/blob/master/telethon/client/account.py#L121 should be `max_file_size: int` (and technically also `Optional`, because `None` is allowed)
@apepenkov Not sure if those should be included, since the raw API obviously doesn't take ints, it's just telethon converting them. Would be better to reduce the necessity of using...
Per-room profiles are supported upstream, they have existed since the beginning. That MSC is primarily for space-wide profiles. > there is no way to fetch the nick per room using...