zixiai

Results 3 issues of zixiai

The current image zooming feature (ctrl+wheel) enlarges the image when scrolling down and reduces it when scrolling up, which is not very intuitive. Could you add an option that allows...

router.cpp示例中: https://github.com/ithewei/libhv/blob/0325f2d07f10986139174ff2db75dd151c09b605/examples/httpd/router.cpp#L131-L134 这里路由占位符的解析是在Handler::restful中调用了HttpContext的param,即HttpRequest的GetParam: https://github.com/ithewei/libhv/blob/0325f2d07f10986139174ff2db75dd151c09b605/examples/httpd/handler.cpp#L171-L179 这个方法是查询参数的解析,这样合在一起会导致这里占位符的解析覆盖了查询参数的解析,如对于/api/test/{str},会导致 GET http://ip:port/api/test/xxx?str=yyy 后,服务器获取查询参数param("str")时,xxx会覆盖yyy

The latest tag appears to be v0.3.2 from 2021. Would it be possible to add a new tag to identify the latest stable version? Thank you!

enhancement