mirror of
https://github.com/shanmiteko/LotteryAutoScript.git
synced 2026-06-04 21:01:17 +08:00
docs: 更新CHANGELOG
This commit is contained in:
parent
2426fe2384
commit
c7bdf74d5c
@ -1,5 +1,12 @@
|
||||
<!-- markdownlint-disable MD036 MD024-->
|
||||
# CHANGELOG
|
||||
## 主要变化(2.7.7)
|
||||
* 2426fe2 fix: 动态详情获取接口412频繁 (#279)
|
||||
* d370fef fix: 获取动态详情出现undefined (#271)
|
||||
* 00174b0 fix(monitor): L615
|
||||
|
||||
_如果之前版本小于上一版本,请查看[CHANGELOG](https://github.com/shanmiteko/LotteryAutoScript/blob/main/CHANGELOG.md)变更说明_
|
||||
|
||||
## 主要变化(2.7.6)
|
||||
* 881923b fix: 开奖时间和粉丝数判断逻辑 (#253)
|
||||
* 097e2d6 fix: 筛选掉置顶的评论,与该动态UP的评论 (#252)
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "lottery-auto-script",
|
||||
"version": "2.7.6",
|
||||
"version": "2.7.7",
|
||||
"description": "自动参与B站动态抽奖",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
||||
16
test/article.test.js
Normal file
16
test/article.test.js
Normal file
@ -0,0 +1,16 @@
|
||||
const assert = require('assert');
|
||||
const bili_client = require("../lib/net/bili");
|
||||
const searcher = require("../lib/core/searcher");
|
||||
const util = require('./util');
|
||||
|
||||
(async () => {
|
||||
await util.par_run([0], [
|
||||
// 0
|
||||
async () => {
|
||||
let info = await bili_client.getOneArticleByCv(22112353);
|
||||
console.log(info);
|
||||
},
|
||||
])
|
||||
|
||||
console.log("article.test ... ok!");
|
||||
})()
|
||||
Loading…
Reference in New Issue
Block a user