Update mauview and changelog

This commit is contained in:
Tulir Asokan 2022-11-19 17:21:07 +02:00
parent 14b9d30380
commit c871a0c4b5
3 changed files with 6 additions and 3 deletions

View File

@ -22,6 +22,8 @@
`/toggle inlineurls`). `/toggle inlineurls`).
* Added graphical file picker for `/upload` when no path is provided * Added graphical file picker for `/upload` when no path is provided
(requires `zenity`). (requires `zenity`).
* Updated more places to use default/reverse colors instead of white/black to
better work on light themed terminals (thanks to [@n-peugnet] in [#401]).
* Fixed mentions being lost when editing messages. * Fixed mentions being lost when editing messages.
* Fixed date change messages showing the wrong date. * Fixed date change messages showing the wrong date.
* Fixed some whitespace in HTML being rendered even when it shouldn't. * Fixed some whitespace in HTML being rendered even when it shouldn't.
@ -42,6 +44,7 @@
[#354]: https://github.com/tulir/gomuks/pull/354 [#354]: https://github.com/tulir/gomuks/pull/354
[#361]: https://github.com/tulir/gomuks/pull/361 [#361]: https://github.com/tulir/gomuks/pull/361
[#362]: https://github.com/tulir/gomuks/pull/362 [#362]: https://github.com/tulir/gomuks/pull/362
[#401]: https://github.com/tulir/gomuks/pull/401
# v0.2.4 (2021-09-21) # v0.2.4 (2021-09-21)

2
go.mod
View File

@ -17,7 +17,7 @@ require (
github.com/zyedidia/clipboard v1.0.4 github.com/zyedidia/clipboard v1.0.4
go.etcd.io/bbolt v1.3.6 go.etcd.io/bbolt v1.3.6
go.mau.fi/cbind v0.0.0-20220415094356-e1d579b7925e go.mau.fi/cbind v0.0.0-20220415094356-e1d579b7925e
go.mau.fi/mauview v0.2.0 go.mau.fi/mauview v0.2.1
go.mau.fi/tcell v0.4.0 go.mau.fi/tcell v0.4.0
golang.org/x/image v0.1.0 golang.org/x/image v0.1.0
golang.org/x/net v0.2.0 golang.org/x/net v0.2.0

4
go.sum
View File

@ -64,8 +64,8 @@ go.etcd.io/bbolt v1.3.6 h1:/ecaJf0sk1l4l6V4awd65v2C3ILy7MSj+s/x1ADCIMU=
go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4= go.etcd.io/bbolt v1.3.6/go.mod h1:qXsaaIqmgQH0T+OPdb99Bf+PKfBBQVAdyD6TY9G8XM4=
go.mau.fi/cbind v0.0.0-20220415094356-e1d579b7925e h1:zY4TZmHAaUhrMFJQfh02dqxDYSfnnXlw/qRoFanxZTw= go.mau.fi/cbind v0.0.0-20220415094356-e1d579b7925e h1:zY4TZmHAaUhrMFJQfh02dqxDYSfnnXlw/qRoFanxZTw=
go.mau.fi/cbind v0.0.0-20220415094356-e1d579b7925e/go.mod h1:9nnzlslhUo/xO+8tsQgkFqG/W+SgD+r0iTYAuglzlmA= go.mau.fi/cbind v0.0.0-20220415094356-e1d579b7925e/go.mod h1:9nnzlslhUo/xO+8tsQgkFqG/W+SgD+r0iTYAuglzlmA=
go.mau.fi/mauview v0.2.0 h1:nthgNmm5rj56yFxhs8W0Pa3CuVwLLcqsfg04X/Xqk1A= go.mau.fi/mauview v0.2.1 h1:Sv+L3MQoo0VWuqgO/SIzhTzDcd7iqPGZgxH3au2kUGw=
go.mau.fi/mauview v0.2.0/go.mod h1:ThKEH7Li3VRLe7yjY2HW6gVpK9ge79+yBBzyPMxNi4k= go.mau.fi/mauview v0.2.1/go.mod h1:aTb1VjsjFmZ5YsdMQTIHrma9Ki2O0WwkS2Er7bIgoUs=
go.mau.fi/tcell v0.4.0 h1:IPFKhkzF3yZkcRYjzgYBWWiW0JWPTwEBoXlWTBT8o/4= go.mau.fi/tcell v0.4.0 h1:IPFKhkzF3yZkcRYjzgYBWWiW0JWPTwEBoXlWTBT8o/4=
go.mau.fi/tcell v0.4.0/go.mod h1:77zV/6KL4Zip1u9ndjswACmu/LWwZ/oe3BE188uWMrA= go.mau.fi/tcell v0.4.0/go.mod h1:77zV/6KL4Zip1u9ndjswACmu/LWwZ/oe3BE188uWMrA=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=