aboutsummaryrefslogtreecommitdiff
path: root/xP
Commit message (Collapse)AuthorAgeFilesLines
...
* xP: indicate hidden buffer linesPřemysl Eric Janouch2022-09-112-3/+24
|
* xC/xP: send buffer type and server statePřemysl Eric Janouch2022-09-112-9/+51
| | | | Also make PM highlighting behaviour consistent.
* xP: change the favicon when highlightedPřemysl Eric Janouch2022-09-111-2/+33
|
* xP: fix non-ASCII text completionPřemysl Eric Janouch2022-09-111-3/+13
|
* xP: beep on highlightPřemysl Eric Janouch2022-09-111-13/+35
| | | | 800 Hz seems like it could match a POST beep.
* xP: add basic buffer input historyPřemysl Eric Janouch2022-09-111-16/+82
| | | | | | Bind M-p and M-n as in xC. Also make all our bindings reachable on macOS.
* xP: remember buffer input selectionsPřemysl Eric Janouch2022-09-111-5/+10
|
* xP: bind M-h to toggle history, and adjust focusPřemysl Eric Janouch2022-09-101-21/+31
|
* xP: handle the M-Tab binding from xCPřemysl Eric Janouch2022-09-101-16/+25
|
* xP: handle M-a and M-! bindings from xCPřemysl Eric Janouch2022-09-101-0/+23
|
* xC/xP: support hiding unimportant messages at allPřemysl Eric Janouch2022-09-101-4/+7
|
* xP: also scroll to bottom on window resizePřemysl Eric Janouch2022-09-101-5/+13
|
* xC/xP: only send buffer stats in the initial syncPřemysl Eric Janouch2022-09-101-11/+20
| | | | | The client and frontends track these separately, there is no need for hard synchronization.
* xP: detect links in the logPřemysl Eric Janouch2022-09-101-8/+21
|
* xP: only allow vertical textarea resizingPřemysl Eric Janouch2022-09-101-0/+1
|
* xP: fix command sequence number generationPřemysl Eric Janouch2022-09-101-1/+2
|
* xP: open links in a new tab/windowPřemysl Eric Janouch2022-09-101-1/+1
|
* xP: advance unread marker when the log is visiblePřemysl Eric Janouch2022-09-101-1/+1
|
* xP: advance unread marker in an inactive tabPřemysl Eric Janouch2022-09-101-3/+6
|
* xP: improve line wrappingPřemysl Eric Janouch2022-09-101-7/+7
|
* xP: enhance mobile experiencePřemysl Eric Janouch2022-09-082-11/+16
| | | | The left column used to jump around, and phones were near-unusable.
* xP: allow setting a fixed WS URIPřemysl Eric Janouch2022-09-081-3/+10
| | | | For reverse proxies.
* xC/xP: finalize and implement Event.PINGPřemysl Eric Janouch2022-09-081-1/+6
|
* xC/xP: mark highlights and buffer activityPřemysl Eric Janouch2022-09-082-17/+83
| | | | And more or less finalize out the protocol for this use case.
* xP: remember to differentiate todayPřemysl Eric Janouch2022-09-071-0/+4
|
* xP: use an industry-standard name for a buttonPřemysl Eric Janouch2022-09-071-1/+1
|
* xP: resolve various issues, mostly in stylingPřemysl Eric Janouch2022-09-072-11/+42
|
* xP: implement buffer line leakagePřemysl Eric Janouch2022-09-072-7/+16
| | | | Rather than on redisplay, these get cleared on reconnect.
* xP: abort autocomplete when no longer applicablePřemysl Eric Janouch2022-09-071-2/+12
|
* xP: clean upPřemysl Eric Janouch2022-09-071-113/+139
|
* xP: add a temporary lock for autoscrollPřemysl Eric Janouch2022-09-071-1/+11
|
* xP: support showing buffer logsPřemysl Eric Janouch2022-09-072-14/+59
|
* xP: separate input buffersPřemysl Eric Janouch2022-09-071-8/+15
|
* xP: scroll to bottom and focus the input on switchPřemysl Eric Janouch2022-09-061-3/+19
|
* xP: clean upPřemysl Eric Janouch2022-09-061-11/+7
|
* xP: indicate connection statePřemysl Eric Janouch2022-09-061-7/+23
|
* xP: implement tab completionPřemysl Eric Janouch2022-09-061-79/+214
| | | | | | | | Currently it only goes for the longest common prefix. Refactor WebSocket handling into an abstraction for our protocol. The Go code generater finally needed fixing.
* xC/xP: pass timestamps with millisecond precisionPřemysl Eric Janouch2022-09-061-1/+1
| | | | Future-proofing the protocol.
* xP: convert links to link elementsPřemysl Eric Janouch2022-09-062-8/+25
|
* xC/xP: turn the action asterisk into a renditionPřemysl Eric Janouch2022-09-052-5/+9
|
* xC/xP: fix colour values, and render them with CSSPřemysl Eric Janouch2022-09-051-2/+52
|
* Fix up xP's module path, mention the licencePřemysl Eric Janouch2022-09-052-1/+4
|
* Start X11 and web frontends for xCPřemysl Eric Janouch2022-09-058-0/+509
For this, we needed a wire protocol. After surveying available options, it was decided to implement an XDR-like protocol code generator in portable AWK. It now has two backends, per each of: - xF, the X11 frontend, is in C, and is meant to be the primary user interface in the future. - xP, the web frontend, relies on a protocol proxy written in Go, and is meant for use on-the-go (no pun intended). They are very much work-in-progress proofs of concept right now, and the relay protocol is certain to change.