Skip to content

Commit

Permalink
Merge pull request #186 from huankong233/dev
Browse files Browse the repository at this point in the history
[*] 为新模式做铺垫
  • Loading branch information
huankong233 committed Aug 11, 2024
2 parents bc02fd3 + 478fd58 commit f7916b2
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ MAIL_FROM_NAME=Example
MAIL_TO_ADDRESS=[email protected]
MAIL_TO_NAME=Example

_94LIST_VERSION=1.3.29
_94LIST_VERSION=1.3.30
_94LIST_SLEEP=3
_94LIST_MAX_ONCE=20
_94LIST_PASSWORD=""
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## 2024

### 08-11 v1.3.30

- [*] 为新模式做铺垫

### 08-11 v1.3.29

- [*] 为新模式做铺垫
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ USDT-TRC20: `TJK9FLAxqQmYU583Qjtof35MpJEu8Xq8iF`

### `docker` 安装

- 1.获取 [镜像](https://hub.docker.com/r/huankong233/HKlist-laravel)
- 1.获取 [镜像](https://hub.docker.com/r/huankong233/94list-laravel)
- 2.启动项目
- 3.所有值可以通过修改 `.env` 文件 或者通过修改 `系统变量` 来定义

Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/ParseController.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function getConfig(Request $request)
"announce" => $config["announce"],
"debug" => config("app.debug"),
"max_once" => $config["max_once"],
"have_account" => self::getRandomCookie(["超级会员"], false)->getData(true)["code"] === 200,
"have_account" => in_array($config["parse_mode"], [11]) || self::getRandomCookie(["超级会员"], false)->getData(true)["code"] === 200,
"have_login" => Auth::check(),
"need_inv_code" => $config["need_inv_code"],
"need_password" => $config["password"] !== "",
Expand Down
2 changes: 1 addition & 1 deletion config/94list.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"fake_wx_user_agent" => "Mozilla/5.0 (Linux; Android 7.1.1; MI 6 Build/NMF26X; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.132 MQQBrowser/6.2 TBS/043807 Mobile Safari/537.36 MicroMessenger/6.6.1.1220(0x26060135) NetType/4G Language/zh_CN MicroMessenger/6.6.1.1220(0x26060135) NetType/4G Language/zh_CN miniProgram",
"fake_cookie" => "BAIDUID=A4FDFAE43DDBF7E6956B02F6EF715373:FG=1; BAIDUID_BFESS=A4FDFAE43DDBF7E6956B02F6EF715373:FG=1; newlogin=1",

"version" => "1.3.29",
"version" => "1.3.30",
"sleep" => (int)env("_94LIST_SLEEP", 3),
"max_once" => (int)env("_94LIST_MAX_ONCE", 20),
"password" => env("_94LIST_PASSWORD", ""),
Expand Down

0 comments on commit f7916b2

Please sign in to comment.