Skip to content

Commit a6aef89

Browse files
authored
Merge branch 'DIYgod:master' into master
2 parents ae929d9 + 00d7e3e commit a6aef89

File tree

51 files changed

+396
-219
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+396
-219
lines changed

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,3 @@ package-lock.json
3030
# pnpm-lock.yaml
3131
yarn.lock
3232
yarn-error.log
33-
34-
scripts/twitter-token/accounts.*

README.md

+3-11
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
[![test](https://img.shields.io/github/actions/workflow/status/DIYgod/RSSHub/test.yml?branch=master&label=test&logo=github&style=flat-square)](https://github.com/DIYgod/RSSHub/actions/workflows/test.yml?query=event%3Apush+branch%3Amaster)
1212
[![Test coverage](https://img.shields.io/codecov/c/github/DIYgod/RSSHub.svg?style=flat-square&logo=codecov)](https://app.codecov.io/gh/DIYgod/RSSHub/branch/master)
1313

14-
[![Telegram group](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.swo.moe%2Fstats%2Ftelegram%2Frsshub&query=count&color=2CA5E0&label=Telegram%20Group&logo=telegram&cacheSeconds=3600&style=flat-square)](https://t.me/rsshub) [![Telegram channel](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.swo.moe%2Fstats%2Ftelegram%2FawesomeRSSHub&query=count&color=2CA5E0&label=Telegram%20Channel&logo=telegram&cacheSeconds=3600&style=flat-square)](https://t.me/awesomeRSSHub) [![Twitter](https://img.shields.io/badge/any_text-Follow-blue?color=2CA5E0&label=Twitter&logo=twitter&cacheSeconds=3600&style=flat-square)](https://twitter.com/intent/follow?screen_name=_RSSHub)
14+
[![Telegram group](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.swo.moe%2Fstats%2Ftelegram%2Frsshub&query=count&color=2CA5E0&label=Telegram%20Group&logo=telegram&cacheSeconds=3600&style=flat-square)](https://t.me/rsshub) [![Telegram channel](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fapi.swo.moe%2Fstats%2Ftelegram%2FawesomeRSSHub&query=count&color=2CA5E0&label=Telegram%20Channel&logo=telegram&cacheSeconds=3600&style=flat-square)](https://t.me/awesomeRSSHub) [![Twitter](https://img.shields.io/badge/any_text-Follow-blue?color=2CA5E0&label=Twitter&logo=twitter&cacheSeconds=3600&style=flat-square)](https://x.com/intent/follow?screen_name=_RSSHub)
1515

1616
## Introduction
1717

@@ -21,18 +21,10 @@ RSSHub delivers millions of contents aggregated from all kinds of sources, our v
2121

2222
RSSHub can be used with browser extension [RSSHub Radar](https://github.com/DIYgod/RSSHub-Radar) and mobile auxiliary app [RSSBud](https://github.com/Cay-Zhang/RSSBud) (iOS) and [RSSAid](https://github.com/LeetaoGoooo/RSSAid) (Android)
2323

24-
[English docs](https://docs.rsshub.app) | [Telegram Group](https://t.me/rsshub) | [Telegram Channel](https://t.me/awesomeRSSHub) | [Twitter](https://twitter.com/intent/follow?screen_name=_RSSHub) | [中文文档](https://docs.rsshub.app/zh/)
24+
[English docs](https://docs.rsshub.app) | [Telegram Group](https://t.me/rsshub) | [Telegram Channel](https://t.me/awesomeRSSHub) | [Twitter](https://x.com/intent/follow?screen_name=_RSSHub) | [中文文档](https://docs.rsshub.app/zh/)
2525

2626
## Special Thanks
2727

28-
### Special Sponsors
29-
30-
<p>
31-
<a href="https://rss3.io" target="_blank"><img height="50px" src="https://i.imgur.com/lb1dDGK.png"></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="https://xlog.app/" target="_blank"><img height="50px" src="https://i.imgur.com/JuhHTKD.png"></a>
32-
</p>
33-
34-
[![](https://opencollective.com/static/images/become_sponsor.svg)](https://docs.rsshub.app/sponsor/)
35-
3628
### Contributors
3729

3830
[![](https://opencollective.com/RSSHub/contributors.svg?width=890)](https://github.com/DIYgod/RSSHub/graphs/contributors)
@@ -99,4 +91,4 @@ Open source is a very expensive thing. RSSHub would not be possible without the
9991
**RSSHub** © [DIYgod](https://github.com/DIYgod), Released under the [MIT](./LICENSE) License.<br>
10092
Authored and maintained by DIYgod with help from contributors ([list](https://github.com/DIYgod/RSSHub/contributors)).
10193

102-
> Blog [@DIYgod](https://diygod.cc) · GitHub [@DIYgod](https://github.com/DIYgod) · Twitter [@DIYgod](https://twitter.com/DIYgod) · Telegram Channel [@awesomeDIYgod](https://t.me/awesomeDIYgod)
94+
> Blog [@DIYgod](https://diygod.cc) · GitHub [@DIYgod](https://github.com/DIYgod) · Twitter [@DIYgod](https://x.com/DIYgod) · Telegram Channel [@awesomeDIYgod](https://t.me/awesomeDIYgod)

lib/routes-deprecated/universities/bjtu/gs/index.js

-130
This file was deleted.

lib/routes/apnews/rss.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const HOME_PAGE = 'https://apnews.com';
55

66
export const route: Route = {
77
path: '/rss/:rss?',
8-
categories: ['traditional-media'],
8+
categories: ['traditional-media', 'popular'],
99
example: '/apnews/rss/business',
1010
parameters: { rss: 'Route name from the first segment of the corresponding site, or `index` for the front page(default).' },
1111
features: {

lib/routes/bilibili/dynamic.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { BilibiliWebDynamicResponse, Item2, Modules } from './api-interface';
1010

1111
export const route: Route = {
1212
path: '/user/dynamic/:uid/:routeParams?',
13-
categories: ['social-media'],
13+
categories: ['social-media', 'popular'],
1414
example: '/bilibili/user/dynamic/2267573',
1515
parameters: { uid: '用户 id, 可在 UP 主主页中找到', routeParams: '额外参数;请参阅以下说明和表格' },
1616
features: {

lib/routes/bilibili/ranking.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const route: Route = {
66
path: '/ranking/:rid?/:day?/:arc_type?/:disableEmbed?',
77
name: '排行榜',
88
maintainers: ['DIYgod'],
9-
categories: ['social-media'],
9+
categories: ['social-media', 'popular'],
1010
example: '/bilibili/ranking/0/3/1',
1111
parameters: {
1212
rid: '排行榜分区 id, 默认 0',

lib/routes/bilibili/video.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import logger from '@/utils/logger';
66

77
export const route: Route = {
88
path: '/user/video/:uid/:disableEmbed?',
9-
categories: ['social-media'],
9+
categories: ['social-media', 'popular'],
1010
example: '/bilibili/user/video/2267573',
1111
parameters: { uid: '用户 id, 可在 UP 主主页中找到', disableEmbed: '默认为开启内嵌视频, 任意值为关闭' },
1212
features: {

0 commit comments

Comments
 (0)