Skip to content

Commit

Permalink
docs: 更新CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
shanmiteko committed Apr 23, 2023
1 parent 2426fe2 commit c7bdf74
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lottery-auto-script",
"version": "2.7.6",
"version": "2.7.7",
"description": "自动参与B站动态抽奖",
"main": "main.js",
"scripts": {
Expand Down
16 changes: 16 additions & 0 deletions test/article.test.js
Original file line number Diff line number Diff line change
@@ -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!");
})()

0 comments on commit c7bdf74

Please sign in to comment.