opk12
opk12
@HoboDev That's unrelated. This issue is for the data structure returned verbatim from the server. A Matrix room is a list of json objects that follow the [Client-Server API specification](https://spec.matrix.org/latest/client-server-api/)...
I'd follow the standard Unix practice of printing one object on one line. - For `--joined-members`, the object of interest is a member, and there is no pro in emitting...
@8go My use case is specifically about having spec-defined events: - when the spec changes, I should not wait for my program to break, report on GitHub, wait for m-c...
Another point is *guaranteed* interoperability with other libraries in the Matrix ecosystem, i.e. - it's not about having the fields in the output, or my personal trust in the m-c...
Props for the big work and effort. I am following the releases and I see the pervasive code changes. I personally need a room's events (`--listen` and `--tail`) for piping...
Thank you! Here are some points. 1. Is there a reason now for `json-max` and `json` to be separate? 2. Shouldn't `json-spec` be defined in the help text in terms...
> > 3. json-spec does not really make sense for --get-room-info and other queries that are not for room events. It feels weird to write -spec and get stuff from...
@ users See comments below [line 5805](https://github.com/8go/matrix-commander/blob/master/matrix_commander/matrix_commander.py#L5805). Syncing means updating the on-disk cache, by downloading all events from all rooms since the last app execution. This typical workflow of any...
### matrix-nio I search for `sync` in the documentation's page [`Examples`](https://matrix-nio.readthedocs.io/en/latest/examples.html). The examples send room events before syncing: - [`A basic client`](https://matrix-nio.readthedocs.io/en/latest/examples.html#a-basic-client) in `main()` - [`Log in using a stored...
That the documentation sends before syncing also implies that you can send without syncing at all, because a network error during the later syncing would otherwise break / corrupt matrix-nio.