Skip to content

Commit

Permalink
deploy: 7d4e332
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 24, 2024
1 parent 7107b75 commit b92afb9
Show file tree
Hide file tree
Showing 4 changed files with 109 additions and 3 deletions.
6 changes: 6 additions & 0 deletions build/maintainers.json
Original file line number Diff line number Diff line change
Expand Up @@ -1743,6 +1743,9 @@
"/ecnu/acm/contest/:category?": [
"a180285"
],
"/ecnu/jwc": [
"markbang"
],
"/ecnu/yjs": [
"shengmaosu"
],
Expand Down Expand Up @@ -5208,6 +5211,9 @@
"/stdaily/digitalpaper": [
"lyqluis"
],
"/steam/appcommunityfeed/:appid/:routeParams?": [
"NyaaaDoge"
],
"/steam/search/:params": [
"moppman"
],
Expand Down
18 changes: 16 additions & 2 deletions build/radar-rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -1948,7 +1948,12 @@
docs:"https://docs.rsshub.app/routes/university",
source:[ "/contest/",
"/" ],
target:"/ecnu/acm/contest/" } ] },
target:"/ecnu/acm/contest/" } ],
"www.jwc":[ { title:"教务处通知",
docs:"https://docs.rsshub.app/routes/university",
source:[ "/",
"/" ],
target:"/ecnu/tzgg" } ] },
"kaoyan.com":{ _name:"East China Normal University 华东师范大学",
yz:[ { title:"研究生院",
docs:"https://docs.rsshub.app/routes/university",
Expand Down Expand Up @@ -5941,8 +5946,17 @@
source:[ "/html/news/xueyuan",
"/" ],
target:"/stbu/xyxw" } ] },
"steamcommunity.com":{ _name:"Steam",
".":[ { title:"Community Hub",
docs:"https://docs.rsshub.app/routes/game",
source:[ "/app/:appid" ],
target:"/steam/appcommunityfeed/:appid" } ] },
"steampowered.com":{ _name:"Steam",
store:[ { title:"Store Search",
store:[ { title:"Community Hub",
docs:"https://docs.rsshub.app/routes/game",
source:[ "/app/:appid/*/" ],
target:"/steam/appcommunityfeed/:appid" },
{ title:"Store Search",
docs:"https://docs.rsshub.app/routes/game",
source:[ "/",
"/search/:params" ],
Expand Down
32 changes: 32 additions & 0 deletions build/radar-rules.json
Original file line number Diff line number Diff line change
Expand Up @@ -4508,6 +4508,17 @@
],
"target": "/ecnu/acm/contest/"
}
],
"www.jwc": [
{
"title": "教务处通知",
"docs": "https://docs.rsshub.app/routes/university",
"source": [
"/",
"/"
],
"target": "/ecnu/tzgg"
}
]
},
"kaoyan.com": {
Expand Down Expand Up @@ -13736,9 +13747,30 @@
}
]
},
"steamcommunity.com": {
"_name": "Steam",
".": [
{
"title": "Community Hub",
"docs": "https://docs.rsshub.app/routes/game",
"source": [
"/app/:appid"
],
"target": "/steam/appcommunityfeed/:appid"
}
]
},
"steampowered.com": {
"_name": "Steam",
"store": [
{
"title": "Community Hub",
"docs": "https://docs.rsshub.app/routes/game",
"source": [
"/app/:appid/*/"
],
"target": "/steam/appcommunityfeed/:appid"
},
{
"title": "Store Search",
"docs": "https://docs.rsshub.app/routes/game",
Expand Down
56 changes: 55 additions & 1 deletion build/routes.json
Original file line number Diff line number Diff line change
Expand Up @@ -17738,6 +17738,27 @@
"url": "acm.ecnu.edu.cn/contest/",
"location": "contest.ts"
},
"/jwc": {
"path": "/jwc",
"categories": [
"university"
],
"example": "/ecnu/jwc",
"radar": [
{
"source": [
"www.jwc.ecnu.edu.cn",
"www.ecnu.edu.cn"
],
"target": "/tzgg"
}
],
"name": "教务处通知",
"maintainers": [
"markbang"
],
"location": "jwc.ts"
},
"/yjs": {
"path": "/yjs",
"categories": [
Expand Down Expand Up @@ -17770,7 +17791,7 @@
}
},
"name": "East China Normal University 华东师范大学",
"url": "acm.ecnu.edu.cn"
"url": "ecnu.edu.cn"
},
"economist": {
"routes": {
Expand Down Expand Up @@ -52246,6 +52267,39 @@
},
"steam": {
"routes": {
"/appcommunityfeed/:appid/:routeParams?": {
"path": "/appcommunityfeed/:appid/:routeParams?",
"categories": [
"game"
],
"example": "/steam/appcommunityfeed/730",
"parameters": {
"appid": "Steam appid, can be found on the community hub page or store page URL.",
"routeParams": "Query parameters."
},
"radar": [
{
"title": "Community Hub",
"source": [
"steamcommunity.com/app/:appid"
],
"target": "/appcommunityfeed/:appid"
},
{
"title": "Community Hub",
"source": [
"store.steampowered.com/app/:appid/*/"
],
"target": "/appcommunityfeed/:appid"
}
],
"description": "Query Parameters:\n\n| Name | Type | Description |\n| ---------------------- | ------ | ----------------------- |\n| p | string | p |\n| rgSections[] | string | rgSections |\n| filterLanguage | string | Filter Language |\n| languageTag | string | Language Tag |\n| nMaxInappropriateScore | string | Max Inappropriate Score |\n\nExample:\n- `/appcommunityfeed/730/p=1&rgSections[]=2&rgSections[]=4&filterLanguage=english&languageTag=english&nMaxInappropriateScore=1` for CS2 Screenshot and Artwork contents.\n- `/appcommunityfeed/730/rgSections[]=6` for CS2 Workshop contents only.\n- `/appcommunityfeed/570/rgSections[]=3&rgSections[]=9` for Dota2 Video and Guides contents.\n\n:::tip\nIt can also access community hub contents that require a logged-in account.\n:::\n",
"name": "Steam Community Hub Feeds",
"maintainers": [
"NyaaaDoge"
],
"location": "appcommunityfeed.ts"
},
"/search/:params": {
"path": "/search/:params",
"categories": [
Expand Down

0 comments on commit b92afb9

Please sign in to comment.