Skip to content

Commit

Permalink
deploy: eb3d0d4
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 11, 2025
1 parent 762ab94 commit 5d121e2
Show file tree
Hide file tree
Showing 4 changed files with 156 additions and 35 deletions.
5 changes: 3 additions & 2 deletions build/maintainers.json
Original file line number Diff line number Diff line change
Expand Up @@ -2621,8 +2621,9 @@
"/gcores/radios/:category?": [
"eternasuno"
],
"/gcores/tag/:tag/:category?": [
"StevenRCE0"
"/gcores/tags/:id/:tab?": [
"StevenRCE0",
"nczitzk"
],
"/gdsrx/:id?": [],
"/gdufs/news": [
Expand Down
33 changes: 26 additions & 7 deletions build/radar-rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -5754,7 +5754,31 @@
{ title:"资讯",
docs:"https://docs.rsshub.app/routes/game",
source:[ "/news" ],
target:"/gcores/gcores/news" } ],
target:"/gcores/gcores/news" },
{ title:"标签",
docs:"https://docs.rsshub.app/routes/game",
source:[ "/tags/:id/originals" ],
target:"/gcores(params,url)=>{const urlObj=new URL(url);const id=params.id;const tab=urlObj.searchParams.get(\"tab\")??void 0;return`/gcores/tags/${id}/${tab?`/${tab}`:\"\"}`}" },
{ title:"全部",
docs:"https://docs.rsshub.app/routes/game",
source:[ "/tags/:id/originals" ],
target:"/gcores/gcores/tags/:id" },
{ title:"播客",
docs:"https://docs.rsshub.app/routes/game",
source:[ "/tags/:id/originals" ],
target:"/gcores/gcores/tags/:id/radios" },
{ title:"文章",
docs:"https://docs.rsshub.app/routes/game",
source:[ "/tags/:id/originals" ],
target:"/gcores/gcores/tags/:id/articles" },
{ title:"资讯",
docs:"https://docs.rsshub.app/routes/game",
source:[ "/tags/:id/originals" ],
target:"/gcores/gcores/tags/:id/news" },
{ title:"视频",
docs:"https://docs.rsshub.app/routes/game",
source:[ "/tags/:id/originals" ],
target:"/gcores/gcores/tags/:id/videos" } ],
".":[ { title:"分类",
docs:"https://docs.rsshub.app/routes/new-media",
source:[ "/:category" ],
Expand All @@ -5766,12 +5790,7 @@
{ title:"播客",
docs:"https://docs.rsshub.app/routes/new-media",
source:[ "/categories/:category" ],
target:"/gcores/radios/:category" },
{ title:"标签",
docs:"https://docs.rsshub.app/routes/new-media",
source:[ "/categories/:tag",
"/" ],
target:"/gcores/tag/:tag" } ] },
target:"/gcores/radios/:category" } ] },
"gdufs.edu.cn":{ _name:"广东外语外贸大学",
www:[ { title:"新闻",
docs:"https://docs.rsshub.app/routes/university",
Expand Down
57 changes: 48 additions & 9 deletions build/radar-rules.json
Original file line number Diff line number Diff line change
Expand Up @@ -12511,6 +12511,54 @@
"/news"
],
"target": "/gcores/gcores/news"
},
{
"title": "标签",
"docs": "https://docs.rsshub.app/routes/game",
"source": [
"/tags/:id/originals"
],
"target": "/gcores(params,url)=>{const urlObj=new URL(url);const id=params.id;const tab=urlObj.searchParams.get(\"tab\")??void 0;return`/gcores/tags/${id}/${tab?`/${tab}`:\"\"}`}"
},
{
"title": "全部",
"docs": "https://docs.rsshub.app/routes/game",
"source": [
"/tags/:id/originals"
],
"target": "/gcores/gcores/tags/:id"
},
{
"title": "播客",
"docs": "https://docs.rsshub.app/routes/game",
"source": [
"/tags/:id/originals"
],
"target": "/gcores/gcores/tags/:id/radios"
},
{
"title": "文章",
"docs": "https://docs.rsshub.app/routes/game",
"source": [
"/tags/:id/originals"
],
"target": "/gcores/gcores/tags/:id/articles"
},
{
"title": "资讯",
"docs": "https://docs.rsshub.app/routes/game",
"source": [
"/tags/:id/originals"
],
"target": "/gcores/gcores/tags/:id/news"
},
{
"title": "视频",
"docs": "https://docs.rsshub.app/routes/game",
"source": [
"/tags/:id/originals"
],
"target": "/gcores/gcores/tags/:id/videos"
}
],
".": [
Expand All @@ -12537,15 +12585,6 @@
"/categories/:category"
],
"target": "/gcores/radios/:category"
},
{
"title": "标签",
"docs": "https://docs.rsshub.app/routes/new-media",
"source": [
"/categories/:tag",
"/"
],
"target": "/gcores/tag/:tag"
}
]
},
Expand Down
96 changes: 79 additions & 17 deletions build/routes.json
Original file line number Diff line number Diff line change
Expand Up @@ -33170,40 +33170,102 @@
"url": "gcores.com/radios",
"location": "radio.ts"
},
"/tag/:tag/:category?": {
"path": "/tag/:tag/:category?",
"categories": [
"new-media",
"popular"
"/tags/:id/:tab?": {
"path": "/tags/:id/:tab?",
"name": "标签",
"url": "www.gcores.com",
"maintainers": [
"StevenRCE0",
"nczitzk"
],
"example": "/gcores/tag/42/articles",
"example": "/gcores/tags/1/articles",
"parameters": {
"tag": "标签名,可在选定标签分类页面的 URL 中找到,如视觉动物——42",
"category": "分类名"
"id": {
"description": "标签 ID,可在对应标签页 URL 中找到"
},
"tab": {
"description": "类型,默认为空,即全部,可在对应标签页 URL 中找到",
"options": [
{
"label": "全部",
"value": ""
},
{
"label": "播客",
"value": "radios"
},
{
"label": "文章",
"value": "articles"
},
{
"label": "资讯",
"value": "news"
},
{
"label": "视频",
"value": "videos"
}
]
}
},
"description": ":::tip\n若订阅 [美国 - 文章](https://www.gcores.com/tags/1/originals?tab=articles),网址为 `https://www.gcores.com/tags/1/originals?tab=articles`,请截取 `https://www.gcores.com/tags/` 到末尾 `/originals` 的部分 `1` 作为 `id` 参数填入,截取 `articles` 作为 `tab` 参数填入,此时目标路由为 [`/gcores/tags/1/articles`](https://rsshub.app/gcores/tags/1/articles)。\n:::\n\n| 全部 | 播客 | 文章 | 资讯 | 视频 |\n| ---- | ------ | -------- | ---- | ------ |\n| | radios | articles | news | videos |\n",
"categories": [
"game"
],
"features": {
"requireConfig": false,
"requirePuppeteer": false,
"antiCrawler": false,
"supportRadar": true,
"supportBT": false,
"supportPodcast": false,
"supportScihub": false
},
"radar": [
{
"source": [
"gcores.com/categories/:tag",
"gcores.com/"
"www.gcores.com/tags/:id/originals"
]
},
{
"title": "全部",
"source": [
"www.gcores.com/tags/:id/originals"
],
"target": "/tag/:tag"
"target": "/gcores/tags/:id"
},
{
"title": "播客",
"source": [
"www.gcores.com/tags/:id/originals"
],
"target": "/gcores/tags/:id/radios"
},
{
"title": "文章",
"source": [
"www.gcores.com/tags/:id/originals"
],
"target": "/gcores/tags/:id/articles"
},
{
"title": "资讯",
"source": [
"www.gcores.com/tags/:id/originals"
],
"target": "/gcores/tags/:id/news"
},
{
"title": "视频",
"source": [
"www.gcores.com/tags/:id/originals"
],
"target": "/gcores/tags/:id/videos"
}
],
"name": "标签",
"maintainers": [
"StevenRCE0"
],
"description": "分类名同上。",
"location": "tag.ts"
"view": 0,
"location": "tags.ts"
}
},
"name": "机核网",
Expand Down

0 comments on commit 5d121e2

Please sign in to comment.