barkyq

Results 21 issues of barkyq

Edited parser.go to escape strings according to RFC8259

The marshaling uses some form of string escaping (via `strconv.Quote`), which does not preserve the underlying UTF-8 representation. This causes signature verification to fail in https://github.com/nbd-wtf/go-nostr/issues/28 (an incompatibility with clients...

Hello Gobwas, Thanks for the great package. I was hoping to add an option to "hijack" the upgrade process if a certain header was present, cancelling the upgrade negotiation and...

Was thinking about this lately: ```go QueryEvents(filter *nostr.Filter) (events []nostr.Event, err error) ``` could be changed to: ```go QueryEvents(filters ...nostr.Filter) (events []nostr.Event, err error) ``` or: ```go QueryEvents(filters []nostr.Filter) (events...

In version `0.7,0` the app will sort like following: ``` (C) Alligator (B) Lion (A) Zebra ``` In other words, the alphabetical 'asc/dsc' ordering ignores priority; is it possible to...

enhancement

# Description using move_to_top when windows take focus Fixes #1206 ## Type of change - [ ] Development change (no change visible to user) - [ ] Bug fix (non-breaking...

# Description Make it so `shift + mousekey + click + drag` resizes windows. Remove static quantities from state struct. Fixes #1213 ## Type of change - [X] Development change...

floating vs floating should indeed restack when moving focus. When changing focus (say with modifier+k or modifier+j) between floating windows, they do not restack, which seems counter-intuitive to me _cf...

If I send the following header in the websocket handshake: ``` Sec-WebSocket-Extensions: permessage-deflate; server_no_context_takeover ``` The returned handshake response says the server does not want to use `permessage-deflate`. But if...

enhancement

### Background information - **Dendrite version or git SHA**: 0.13.7+46902e5 - **SQLite3 or Postgres?**: Postgres - **Running in Docker?**: no - **`go version`**: go version go1.22.2 linux/amd64 - **Client used...