docs: 更新CHANGELOG

This commit is contained in:
shanmite 2023-04-23 16:17:02 +08:00
parent 2426fe2384
commit c7bdf74d5c
3 changed files with 24 additions and 1 deletions

View File

@ -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)

View File

@ -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
View 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!");
})()