Skip to content

Commit b6e218a

Browse files
author
Taois
committed
feat: 发布新版本
1 parent 56ef5b2 commit b6e218a

File tree

34 files changed

+4890
-681
lines changed

34 files changed

+4890
-681
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# drpyS(drpy-node)
22

33
nodejs作为服务端的drpy实现。全面升级异步写法
4-
~~积极开发中,每日一更~~,当前进度 `99%`
4+
~~积极开发中,每日一更~~,当前进度 `99.9%`
55
~~找工作中,随缘更新~~
66
上班当牛马,下班要带娃,阶段性佛系趁娃睡觉熬夜更新
77

@@ -33,12 +33,20 @@ nodejs作为服务端的drpy实现。全面升级异步写法
3333
* [cron表达式插件](/apps/cron-generator/index.html)
3434
* [剪切板智能推送插件](/apps/clipboard-pusher/index.html)
3535
* [DS源可用性检测插件](/apps/source-checker/index.html)
36+
* [DS源配置编辑插件](/apps/source-editor/index.html)
37+
* [DS内存图片管理器插件](/apps/image-manager/index.html)
3638
* [代码加解密工具](/admin/encoder)
3739
* [央视点播解析工具](/proxy/央视大全[官]/index.html)
3840
* [在线猫ds源主页](/cat/index.html)
3941

4042
## 更新记录
4143

44+
### 20250914
45+
46+
更新至V1.3.1
47+
48+
框架已完成,预留0.1%进度修bug
49+
4250
### 20250913
4351

4452
更新至V1.2.30

apps/cookie-butler/static/js/core.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ class QRCodeHandler {
55
static STATUS_CONFIRMED = "CONFIRMED"; // 已确认
66
static STATUS_CANCELED = "CANCELED"; // 已取消
77
static STATUS_EXPIRED = "EXPIRED"; // 已过期
8+
static STATUS_WAIT = "WAIT"; // 待确认授权
89

910
// 平台常量
1011
static PLATFORM_QUARK = "quark"; // 夸克
@@ -637,6 +638,9 @@ class QRCodeHandler {
637638
let bduss = ''
638639
if (resData.channel_v) { // 扫码成功
639640
let bddata = JSON.parse(resData.channel_v);
641+
if (bddata.status === 1) { // 等待授权
642+
return {status: QRCodeHandler.STATUS_WAIT};
643+
}
640644
if (bddata.v) {
641645
bduss = bddata.v
642646
}

0 commit comments

Comments
 (0)