Madray Haven

Results 23 issues of Madray Haven

> https://api.bilibili.com/x/player/v2 *请求方式:Get* **url参数:** | 参数名 | 类型 | 内容 | 必要性 | 备注 | | -------- | ---- | -------- | ------ | ---- | | cid | num...

I compile filebrowser on OpenWrt, I think the compilation is correct. Click to view Makefile ```makefile # SPDX-License-Identifier: GPL-3.0-only # # Copyright (C) 2022 sgpublic include $(TOPDIR)/rules.mk PKG_NAME:=go-filebrowser PKG_VERSION:=2.22.4 PKG_RELEASE:=1...

Hello, I have some questions about using Feign in Spring Cloud. I have a FeignClient: ```java @FeignClient(name = "device-code", url = AzureTokenClient.BASE_URL) public interface AzureTokenClient { String SCOPE = URLEncoder.encode("offline_access...

rt,看起来好像是前端页面的问题,[luci-app-nginx-manager/luasrc/view/nginx-manager/index.htm#L28](https://github.com/sundaqiang/openwrt-packages/blob/master/luci-app-nginx-manager/luasrc/view/nginx-manager/index.htm#L28) 引用 tabmenu,但 `/usr/lib/lua/luci/view/cbi/tabmenu.htm` 不存在。 ``` 对不起,服务器遇到未知错误。 /usr/lib/lua/luci/template.lua:97: Failed to execute template 'cbi/map'. A runtime error occurred: /usr/lib/lua/luci/template.lua:97: Failed to execute template 'nginx-manager/index'. A runtime error occurred: /usr/lib/lua/luci/template.lua:74: Failed to...

### 当前不足 起因是我群里一群人天天更新抽卡记录,甚至一天不止一次,导致我群被刷屏,警告过不听,也不好说直接飞机了。 ### 建议内容 - 可以将更新抽卡记录做成自定义一个周期自动更新。 - 也可以把抽卡的 CD 移植给更新抽卡记录。 最后感谢大佬为这个项目的付出!

enhancement

### 描述建议 我不知道这样是否有意义,如果大佬觉得有更优雅的方法就直接 close 吧,我想的是匹配规则做两层: + 第一层做保底,例如写几个关键词(比如“余额”、“xx银行”、“尾号xxxx”),如果通知或短信内容中包含列出的关键词,则代表这一定是一个动账通知,否则直接返回。 + 第二层做详细匹配,使用正则或v4中的js详细解析,若解析失败,又因为这条内容满足第一层,则可以加入解析失败列表。 ### 该功能带来的好处或者优点 ```bash 因为我经常遇到,自认为规则很完善了,但实际上确实有匹配失败的,最后就会导致余额对不上,然后回过头去找又很难找哪一条没录进去。 有了第二层匹配维护的解析失败列表,就可以手动录入和优化规则。 ``` ### 这不是重复的 issue - [X] 我已经搜索了[现有 issue](https://github.com/dreamncn/Qianji_auto/issues),以确保该功能尚未被报告。

enhancement

**XPopup版本** 如2.9.19 **手机系统和型号** 红米 K20 Pro Android 11 **描述你的问题** 横屏状态下,对于设置了宽度的 `BottomPopupView`,`isCenterHorizontal(true)` 不生效,dialog 显示在左侧。 ```java new XPopup.Builder(getContext()) .isDestroyOnDismiss(true) .popupWidth(/* 400dp */) .popupPosition(PopupPosition.Bottom) .isCenterHorizontal(true) .asCustom(new TestBottomDialog(getContext())) .show(); // 显示在左侧 public class TestBottomDialog...

Hello, the problem in short is that when using a custom Feign.Builder, I cannot use FeignClient to post a url-encoded form, it will post an empty string. In particular, I...