泷涯

Results 9 issues of 泷涯

### Version 2.0.0-beta.2 ### Reproduction link [https://gist.github.com/sylingd/9c72c096ffa2651059a317cc7a8eea42](https://gist.github.com/sylingd/9c72c096ffa2651059a317cc7a8eea42) ### Steps to reproduce 无限loading,浏览器会卡住,简单看了一下infinity源代码发现只会判断scrollY,不会管scrollX……

**需求应用场景** alias用途是将上游DNS返回的特定IP/IP段,强行指定到目标IP。 实际用途是针对Cloudflare等这类有众多IP的CDN。因使用其服务的域名众多,无法直接用现有功能指定。用户通过其他方法(例如[CFIP](https://github.com/BlueSkyXN/CFIP))获取到对于当前环境速度最佳的IP后,可以直接将其强行指定到固定的IP。 **建议的方案** 在配置中增加alias功能,格式为`/旧IP或IP段/新IP/新IP的子网掩码`。 例如: ``` # 将上游DNS返回的1.2.3.4,指定到5.6.7.8 alias /1.2.3.4/5.6.7.8 # 将1.2.3.x指定到5.6.7.x alias /1.2.3.0/5.6.7.0/255.255.255.0 # 将192.168.0.10->192.168.0.40 指定到 10.0.0.10->10.0.0.40 alias /192.168.0.10-192.168.0.40/10.0.0.0/255.255.255.0 # 将192.168.0.10->192.168.0.40 指定到 1.2.3.4 alias /192.168.0.10-192.168.0.40/1.2.3.4/255.255.255.255 ``` **设备信息** 1....

目前代码里面,如果开启了is_ban_official,则所有公众号消息都不会触发推送 ```perl if($msg->type eq 'friend_message'){ return if $data->{is_ban_official} and $msg->sender->category eq '公众号'; $msgId = $msg->sender->id; $title = $msg->sender->displayname; $message = $msg->content; $senderType = '1'; } ``` 但是另外几种消息均有不同的判定方式,如: ```perl elsif($msg->type eq...

You can subscribe this issue, whenever the translation file is updated, I will reply this issue so that you can receive a email sent by GitHub. Subscribe button is on...

You can subscribe this issue, whenever the translation file is updated, I will reply this issue so that you can receive a email sent by GitHub. Subscribe button is on...

The dark theme will be implemented in the next few versions

enhancement

## 描述 经过确认,阿里小程序底层框架存在BUG。 当textarea同时设置了padding、box-sizing=border-box、width时,会导致文字溢出输入框。例如: ```css .test { width: 200px; height: 100px; padding-left: 30px; box-sizing: border-box; background: rgba(255, 0, 0, 0.2); font-size: 18px; } ``` 支付宝的同学已经确认相关问题,建议先在外层嵌套view,将相关样式设置到外层view来绕过这个问题。 ## 更改 * 外层嵌套view,class命名为rax-textinput-container。 *...

我在一台VPS中上传一些小文件,但发现个别文件在即将完成时进度跳回0,然后一直重复上述过程。 参考#339 中有人提到可能是分片上传超时,观察发现进度回跳都刚好发生于30s左右。因为VPS带宽很小,仅1mbps,3M左右的文件上传时间就会超过30s。尝试将文件压缩至3M以下后成功上传。 浏览代码发现,默认的最小分片是4M,导致即使关闭所有的并行,低带宽主机或者开启上传限速的情况下(实际上传速度<136k/s)会永远无法上传成功。 希望作者可以增加分片大小设置的设置以解决该问题🫡