-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
9 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1 @@ | ||
优化tmdb识别 | ||
|
||
优化自动点格子 | ||
|
||
修复标题提示时深色模式下的问题 | ||
修复日志过多出现卡顿问题 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,11 @@ | ||
import ani.rss.entity.Ani; | ||
import ani.rss.entity.Item; | ||
import ani.rss.util.AniUtil; | ||
import ani.rss.util.ConfigUtil; | ||
|
||
import java.util.List; | ||
import ani.rss.entity.Log; | ||
import ani.rss.util.LogUtil; | ||
|
||
public class Test7 { | ||
public static void main(String[] args) { | ||
ConfigUtil.load(); | ||
AniUtil.load(); | ||
Ani ani = AniUtil.getAni("https://mikanani.me/RSS/Bangumi?bangumiId=3354&subgroupid=370"); | ||
List<Item> items = AniUtil.getItems(ani); | ||
for (Item item : items) { | ||
System.out.println(item.getReName()); | ||
for (int i = 0; i < 100000; i++) { | ||
LogUtil.LOGS.add(new Log()); | ||
} | ||
System.out.println(LogUtil.LOGS.size()); | ||
} | ||
} |