Compare commits

...

2 commits

Author SHA1 Message Date
Simon Vieille dd24fda35b
update changelog 2023-09-10 19:37:02 +02:00
Simon Vieille 5e76b76c31
close connection on ws error 2023-09-10 19:35:43 +02:00
2 changed files with 12 additions and 6 deletions

View file

@ -1,11 +1,15 @@
## [Unreleased]
## v1.0.1
## v1.0.2
### Fixed
* close connection on ws error
- fix process overload: replace golang.org/x/net/websocket with github.com/gorilla/websocket
## v1.0.1
### Fixed
* fix process overload: replace golang.org/x/net/websocket with github.com/gorilla/websocket
## v1.0.0
- rewrite of https://gitnet.fr/deblan/remote-i3wm-ws
- add configuration file
- add authentication
### Added
* rewrite of https://gitnet.fr/deblan/remote-i3wm-ws
* add configuration file
* add authentication

View file

@ -371,6 +371,8 @@ func wsController(c echo.Context) error {
_, msg, err := ws.ReadMessage()
if err != nil {
ws.Close()
fmt.Printf("%+v\n", "Connection closed")
return err
}