Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(route/mangadex): add three new routes and modify one old route for mangadex.org #18269

Open
wants to merge 57 commits into
base: master
Choose a base branch
from

Conversation

chrisis58
Copy link
Contributor

Involved Issue / 该 PR 相关 Issue

Example for the Proposed Route(s) / 路由地址示例

/mangadex/manga/f98660a1-d2e2-461c-960d-7bd13df8b76d/en
/mangadex/mdlist/10cca803-8dc9-4f0e-86a8-6659a3ce5188

New RSS Route Checklist / 新 RSS 路由检查表

Note / 说明

I've added three new routes:

  • /user/feed/follow/:lang?: User's all followed mangas feed

  • /user/follow/:type?: User's sepecific type of followed mangas feed

    • type can be reading, plan-to-read, completed, on-hold, re-reading or dropped

    I didn't list them in the part [Example for the Proposed Route(s) / 路由地址示例](# Example for the Proposed Route(s) / 路由地址示例) since they need configuration.

  • /mdlist/:id/:lang?: Sepecific MDList feed, once private, it need credentinals configured

, and modify one old route:

  • /:id/:lang? -> /manga/:id/:lang?

    I may have to add a prefix for it otherwise RSSHub cannot resolve other routes. I also refactored this route with new code.

Configuration needed for some of the routes. RSSHub can load the configuration from environment variables:

  • MANGADEX_USERNAME: your MangaDex account
  • MANGADEX_PASSWORD: your MangaDex password
  • MANGADEX_CLIENT_ID: your registered personal Client Id
  • MANGADEX_CLIENT_SECRET: your registerd personal Client Secret
  • MANGADEX_REFRESH_TOKEN: token to retrieve an access token
  • MANGADEX_FILTERED_LANGUAGES (Optional): custom language filter, values separated by commas (e.g., zh,zh-hk,en)

Here’s a flowchart showing how the credentials and tokens relate to each other to get an access_token:

flowchart TD
	subgraph user_credentials
		username
		password
	end
	subgraph client_credentials
		client_secret
		client_id
	end
	user_credentials -.-> refresh_token
	client_credentials -.-> refresh_token
	client_credentials --> access_token
	refresh_token --> access_token
Loading

Actually if the request's grant type is password (by user credentials) , server will return both refresh_token and access_token in the same time.

Referring to [(API docs) Personal clients](https://api.mangadex.org/docs/02-authentication/personal-clients/) to register a personal Client.

Note that access_token has an expire time for 15 minutes, refresh_token also has its expire time.

To obtain the access_token, you'll need to either configure user_credentials for long-term use or configure refresh_token for privacy.

chrisis58 and others added 30 commits October 15, 2024 22:19
为中国计量大学研究生院添加路由
支持将`教师通知`和`研究生通知`页面转化为 RSS 订阅源
修改 radar 规则,以正确提供订阅源
增加异常处理
在 radar 规则中列出全部的类型
修改行尾符为 LF
Added a utility function `getFilteredLanguages` to retrieve filtered languages based on the current user's configuration.
Original implementation by @vzz64 was embedded in modules.
Extracted the common logic into a standalone function for better code reusability and maintainability.
Change result type from object to array by remove `total` param.
- Add docstring for util functions
- Add a new combination function
- Improve code type inference
- **important**: add a prefix to the route for space for other routes in namespace, not compatiable to former route
- use integrated utility to retrieve details of a single manga
@github-actions github-actions bot added the Route label Feb 3, 2025

const languages = [...(typeof lang === 'string' ? [lang] : lang || []), ...(await getFilteredLanguages())].filter(Boolean);

return rawMangaMetas.reduce((map, rawMangaMeta) => {

Check warning

Code scanning / ESLint

Disallow `Array#reduce()` and `Array#reduceRight()`. Warning

Array#reduce() is not allowed. Prefer other types of loop for readability.
@github-actions github-actions bot added the Auto: Route Test Complete Auto route test has finished on given PR label Feb 3, 2025
Copy link
Contributor

github-actions bot commented Feb 3, 2025

Successfully generated as following:

http://localhost:1200/mangadex/manga/f98660a1-d2e2-461c-960d-7bd13df8b76d/en - Success ✔️
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>カノジョと秘密と恋もよう</title>
    <link>https://mangadex.org/title/f98660a1-d2e2-461c-960d-7bd13df8b76d</link>
    <atom:link href="http://localhost:1200/mangadex/manga/f98660a1-d2e2-461c-960d-7bd13df8b76d/en" rel="self" type="application/rss+xml"></atom:link>
    <description>A yuri comedy between two girls who seem different but are actually quite similar, each with a secret of her own. - Powered by RSSHub</description>
    <generator>RSSHub</generator>
    <webMaster>[email protected] (RSSHub)</webMaster>
    <language>en</language>
    <lastBuildDate>Mon, 03 Feb 2025 13:43:09 GMT</lastBuildDate>
    <ttl>5</ttl>
    <item>
      <title>Vol. 2 Ch. 19</title>
      <description></description>
      <link>https://mangadex.org/chapter/b902c44d-cb34-4077-9501-c90b1216f2fb</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/b902c44d-cb34-4077-9501-c90b1216f2fb</guid>
      <pubDate>Sun, 23 Jan 2022 04:54:07 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 18</title>
      <description></description>
      <link>https://mangadex.org/chapter/3f5443d2-eed8-458c-aa58-ddd9092d37d7</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/3f5443d2-eed8-458c-aa58-ddd9092d37d7</guid>
      <pubDate>Sat, 18 Dec 2021 04:55:56 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 17</title>
      <description></description>
      <link>https://mangadex.org/chapter/2022c36a-77c0-4fac-991a-1bfc6fd2b71b</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/2022c36a-77c0-4fac-991a-1bfc6fd2b71b</guid>
      <pubDate>Sun, 25 Jul 2021 02:46:14 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 16</title>
      <description></description>
      <link>https://mangadex.org/chapter/e18a74c6-144d-4f87-b4b0-919f01998d08</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/e18a74c6-144d-4f87-b4b0-919f01998d08</guid>
      <pubDate>Thu, 22 Jul 2021 23:09:26 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 15</title>
      <description></description>
      <link>https://mangadex.org/chapter/779ea403-f3d7-4f9f-8e26-6c61a9efdc4a</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/779ea403-f3d7-4f9f-8e26-6c61a9efdc4a</guid>
      <pubDate>Thu, 22 Jul 2021 23:08:26 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 14</title>
      <description></description>
      <link>https://mangadex.org/chapter/c28e40f9-9795-4f51-8b4c-de9fb1f99d02</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/c28e40f9-9795-4f51-8b4c-de9fb1f99d02</guid>
      <pubDate>Thu, 22 Jul 2021 23:07:10 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 13</title>
      <description></description>
      <link>https://mangadex.org/chapter/93fd11f3-64a5-4f21-b48a-3b5ce022ee08</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/93fd11f3-64a5-4f21-b48a-3b5ce022ee08</guid>
      <pubDate>Thu, 22 Jul 2021 23:06:21 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 12</title>
      <description></description>
      <link>https://mangadex.org/chapter/3e6c929b-d2b1-4f4b-932e-f5039f5365bf</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/3e6c929b-d2b1-4f4b-932e-f5039f5365bf</guid>
      <pubDate>Thu, 22 Jul 2021 23:03:49 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 11</title>
      <description></description>
      <link>https://mangadex.org/chapter/db2cb9be-c020-4fbd-bef2-6ebd53a6eedf</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/db2cb9be-c020-4fbd-bef2-6ebd53a6eedf</guid>
      <pubDate>Thu, 22 Jul 2021 23:03:10 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 10</title>
      <description></description>
      <link>https://mangadex.org/chapter/3418ec3b-189d-4ff6-b405-bd01b1f1df19</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/3418ec3b-189d-4ff6-b405-bd01b1f1df19</guid>
      <pubDate>Thu, 22 Jul 2021 23:01:36 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 9</title>
      <description></description>
      <link>https://mangadex.org/chapter/4aa5c295-6408-46ae-83cb-aa904887c642</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/4aa5c295-6408-46ae-83cb-aa904887c642</guid>
      <pubDate>Sun, 14 Mar 2021 18:12:40 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 8.5</title>
      <description></description>
      <link>https://mangadex.org/chapter/6faec034-7342-40b4-b59a-84ec9705d7c9</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/6faec034-7342-40b4-b59a-84ec9705d7c9</guid>
      <pubDate>Sun, 07 Mar 2021 21:25:31 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 8</title>
      <description></description>
      <link>https://mangadex.org/chapter/aeb49852-3223-4c49-a6cc-c7a297ac1b0c</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/aeb49852-3223-4c49-a6cc-c7a297ac1b0c</guid>
      <pubDate>Sat, 27 Feb 2021 22:55:15 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 7</title>
      <description></description>
      <link>https://mangadex.org/chapter/7249ffd8-fcea-4b12-afe4-56bcf99e8f61</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/7249ffd8-fcea-4b12-afe4-56bcf99e8f61</guid>
      <pubDate>Tue, 23 Feb 2021 03:29:22 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 6</title>
      <description></description>
      <link>https://mangadex.org/chapter/f0bb52e5-43b9-4fda-8c4e-f35eeb54d9fd</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/f0bb52e5-43b9-4fda-8c4e-f35eeb54d9fd</guid>
      <pubDate>Mon, 22 Feb 2021 19:36:13 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 5</title>
      <description></description>
      <link>https://mangadex.org/chapter/4a5fda4e-f971-4334-9fcd-95cd96633a42</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/4a5fda4e-f971-4334-9fcd-95cd96633a42</guid>
      <pubDate>Sun, 14 Feb 2021 19:44:20 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 4</title>
      <description></description>
      <link>https://mangadex.org/chapter/15eeca35-022a-460a-b1c5-03d304d453a3</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/15eeca35-022a-460a-b1c5-03d304d453a3</guid>
      <pubDate>Sun, 14 Feb 2021 01:26:20 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 3</title>
      <description></description>
      <link>https://mangadex.org/chapter/ee7fd31e-6a1b-4bc5-b895-daa4e968b562</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/ee7fd31e-6a1b-4bc5-b895-daa4e968b562</guid>
      <pubDate>Sat, 06 Feb 2021 23:58:11 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 2</title>
      <description></description>
      <link>https://mangadex.org/chapter/34d7aa78-457a-4d5d-979e-aa21600e61ba</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/34d7aa78-457a-4d5d-979e-aa21600e61ba</guid>
      <pubDate>Sun, 31 Jan 2021 23:35:14 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 1</title>
      <description></description>
      <link>https://mangadex.org/chapter/ce698ef8-d8bf-4e50-8fb0-8d5a18353a4d</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/ce698ef8-d8bf-4e50-8fb0-8d5a18353a4d</guid>
      <pubDate>Mon, 25 Jan 2021 05:05:53 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
  </channel>
</rss>
http://localhost:1200/mangadex/mdlist/10cca803-8dc9-4f0e-86a8-6659a3ce5188 - Success ✔️
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>MangaDex MDList - DemoList by chrisis58</title>
    <link>https://mangadex.org/list/10cca803-8dc9-4f0e-86a8-6659a3ce5188/demolist?tab=feed</link>
    <atom:link href="http://localhost:1200/mangadex/mdlist/10cca803-8dc9-4f0e-86a8-6659a3ce5188" rel="self" type="application/rss+xml"></atom:link>
    <description>The latest updates of all the manga in a sepcific list - Powered by RSSHub</description>
    <generator>RSSHub</generator>
    <webMaster>[email protected] (RSSHub)</webMaster>
    <language>en</language>
    <lastBuildDate>Mon, 03 Feb 2025 13:43:11 GMT</lastBuildDate>
    <ttl>5</ttl>
    <item>
      <title>ガルルガール</title>
      <description>Ch. 11</description>
      <link>https://mangadex.org/chapter/93a9f0d6-38b5-4abd-a10e-23944a11506e</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/93a9f0d6-38b5-4abd-a10e-23944a11506e</guid>
      <pubDate>Sun, 02 Feb 2025 01:39:10 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/ab541412-f0d0-4fcf-a7a3-084a835d9d4a/1298620b-1f2d-4097-9490-214b0f176a66.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 160 I Want Some Encouragement</description>
      <link>https://mangadex.org/chapter/bccb0252-7ad2-41c6-a76f-c715cb50f9ca</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/bccb0252-7ad2-41c6-a76f-c715cb50f9ca</guid>
      <pubDate>Fri, 24 Jan 2025 17:35:59 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 159.2 Twitter Extra</description>
      <link>https://mangadex.org/chapter/0f99bfeb-f37d-4b49-8ab0-7c399c0b7b97</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/0f99bfeb-f37d-4b49-8ab0-7c399c0b7b97</guid>
      <pubDate>Fri, 24 Jan 2025 17:35:27 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>ガルルガール</title>
      <description>Vol. 1 Ch. 2</description>
      <link>https://mangadex.org/chapter/43b3edf8-e436-4e20-9dd8-e64b491225bc</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/43b3edf8-e436-4e20-9dd8-e64b491225bc</guid>
      <pubDate>Sun, 19 Jan 2025 21:41:16 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/ab541412-f0d0-4fcf-a7a3-084a835d9d4a/1298620b-1f2d-4097-9490-214b0f176a66.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 159 Estou me sentindo solitário</description>
      <link>https://mangadex.org/chapter/5a1809c3-295c-4ec5-bcaf-48883dd4c6b2</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/5a1809c3-295c-4ec5-bcaf-48883dd4c6b2</guid>
      <pubDate>Sat, 11 Jan 2025 14:09:17 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>ガルルガール</title>
      <description>Vol. 1 Ch. 1</description>
      <link>https://mangadex.org/chapter/e6eaf964-0dce-48ad-bd5c-90f8139881e5</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/e6eaf964-0dce-48ad-bd5c-90f8139881e5</guid>
      <pubDate>Fri, 10 Jan 2025 04:33:04 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/ab541412-f0d0-4fcf-a7a3-084a835d9d4a/1298620b-1f2d-4097-9490-214b0f176a66.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>ガルルガール</title>
      <description>Ch. 10</description>
      <link>https://mangadex.org/chapter/273d2cab-8a90-45ab-82a0-7e4d4af9b927</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/273d2cab-8a90-45ab-82a0-7e4d4af9b927</guid>
      <pubDate>Fri, 03 Jan 2025 03:15:09 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/ab541412-f0d0-4fcf-a7a3-084a835d9d4a/1298620b-1f2d-4097-9490-214b0f176a66.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 159.1 Twitter Extra - New Year 2025</description>
      <link>https://mangadex.org/chapter/f0129fc1-a4cc-4ab5-98a0-35a0a35b5749</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/f0129fc1-a4cc-4ab5-98a0-35a0a35b5749</guid>
      <pubDate>Thu, 02 Jan 2025 04:57:36 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 159 I&#39;m Feeling Lonely</description>
      <link>https://mangadex.org/chapter/e4ce2e6e-451c-42c1-a252-78c85d854645</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/e4ce2e6e-451c-42c1-a252-78c85d854645</guid>
      <pubDate>Fri, 27 Dec 2024 04:27:23 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 158.1 Twitter Extra</description>
      <link>https://mangadex.org/chapter/d3ed9be0-5272-430a-b396-d5f663afe46e</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/d3ed9be0-5272-430a-b396-d5f663afe46e</guid>
      <pubDate>Fri, 27 Dec 2024 04:26:56 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 158 Cheguei em casa de manhã</description>
      <link>https://mangadex.org/chapter/b2a78717-c4c0-4ed6-b26f-57d8f1d8f3ad</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/b2a78717-c4c0-4ed6-b26f-57d8f1d8f3ad</guid>
      <pubDate>Sat, 21 Dec 2024 13:20:08 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 158 I Got Home in the Morning</description>
      <link>https://mangadex.org/chapter/600562cb-e408-40ab-84b6-cd56c1fccf37</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/600562cb-e408-40ab-84b6-cd56c1fccf37</guid>
      <pubDate>Thu, 12 Dec 2024 19:21:01 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 157.1 Twitter Extra</description>
      <link>https://mangadex.org/chapter/575fb1c1-bf15-4d1d-b1b9-b1bad0a0d57b</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/575fb1c1-bf15-4d1d-b1b9-b1bad0a0d57b</guid>
      <pubDate>Thu, 12 Dec 2024 19:20:09 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 157 Eu não sei o que estou fazendo</description>
      <link>https://mangadex.org/chapter/19eefd96-f77c-4319-9db0-4c4fa41a5dda</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/19eefd96-f77c-4319-9db0-4c4fa41a5dda</guid>
      <pubDate>Sun, 08 Dec 2024 12:26:21 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>ガルルガール</title>
      <description>Ch. 9</description>
      <link>https://mangadex.org/chapter/e8ddc16a-eccd-49c9-94e3-7ea940463905</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/e8ddc16a-eccd-49c9-94e3-7ea940463905</guid>
      <pubDate>Sat, 07 Dec 2024 10:27:30 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/ab541412-f0d0-4fcf-a7a3-084a835d9d4a/1298620b-1f2d-4097-9490-214b0f176a66.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 156</description>
      <link>https://mangadex.org/chapter/7957cb17-e120-4cc6-9abf-9face02b0e65</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/7957cb17-e120-4cc6-9abf-9face02b0e65</guid>
      <pubDate>Thu, 05 Dec 2024 17:40:21 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 155</description>
      <link>https://mangadex.org/chapter/c9de07cc-19f0-4d4b-b71d-a548007567b7</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/c9de07cc-19f0-4d4b-b71d-a548007567b7</guid>
      <pubDate>Thu, 05 Dec 2024 17:40:07 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 154</description>
      <link>https://mangadex.org/chapter/9161d56e-2081-4fdb-bebb-fb246d8efce9</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/9161d56e-2081-4fdb-bebb-fb246d8efce9</guid>
      <pubDate>Thu, 05 Dec 2024 17:39:53 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 153</description>
      <link>https://mangadex.org/chapter/5d376a43-6b5f-4119-9826-b8005958d84a</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/5d376a43-6b5f-4119-9826-b8005958d84a</guid>
      <pubDate>Thu, 05 Dec 2024 17:39:40 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 152</description>
      <link>https://mangadex.org/chapter/3ecddcf9-bac9-4c5b-a3b4-9260f46082a6</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/3ecddcf9-bac9-4c5b-a3b4-9260f46082a6</guid>
      <pubDate>Thu, 05 Dec 2024 17:39:26 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 151</description>
      <link>https://mangadex.org/chapter/a3dbd8f1-5147-4b71-a0c0-b5178c04da56</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/a3dbd8f1-5147-4b71-a0c0-b5178c04da56</guid>
      <pubDate>Thu, 05 Dec 2024 17:39:12 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 150</description>
      <link>https://mangadex.org/chapter/6c637866-62cb-4df5-9f4f-b9de6a41c4e8</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/6c637866-62cb-4df5-9f4f-b9de6a41c4e8</guid>
      <pubDate>Thu, 05 Dec 2024 17:38:57 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 149</description>
      <link>https://mangadex.org/chapter/a7d04338-b314-4b7b-be9b-048b4b377824</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/a7d04338-b314-4b7b-be9b-048b4b377824</guid>
      <pubDate>Thu, 05 Dec 2024 17:38:44 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 148</description>
      <link>https://mangadex.org/chapter/dd6078d8-a1c6-45f2-b8e2-2c2230280811</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/dd6078d8-a1c6-45f2-b8e2-2c2230280811</guid>
      <pubDate>Thu, 05 Dec 2024 17:38:33 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 147</description>
      <link>https://mangadex.org/chapter/173d2eb7-36c1-4256-aed1-ebafab503b91</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/173d2eb7-36c1-4256-aed1-ebafab503b91</guid>
      <pubDate>Thu, 05 Dec 2024 17:38:21 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
  </channel>
</rss>

@chrisis58 chrisis58 changed the title Add three new routes and modify one old route for mangadex.org feat(route/mangadex): add three new routes and modify one old route for mangadex.org Feb 3, 2025
Copy link
Contributor

github-actions bot commented Feb 3, 2025

Successfully generated as following:

http://localhost:1200/mangadex/manga/f98660a1-d2e2-461c-960d-7bd13df8b76d/en - Success ✔️
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>カノジョと秘密と恋もよう</title>
    <link>https://mangadex.org/title/f98660a1-d2e2-461c-960d-7bd13df8b76d</link>
    <atom:link href="http://localhost:1200/mangadex/manga/f98660a1-d2e2-461c-960d-7bd13df8b76d/en" rel="self" type="application/rss+xml"></atom:link>
    <description>A yuri comedy between two girls who seem different but are actually quite similar, each with a secret of her own. - Powered by RSSHub</description>
    <generator>RSSHub</generator>
    <webMaster>[email protected] (RSSHub)</webMaster>
    <language>en</language>
    <lastBuildDate>Mon, 03 Feb 2025 13:56:40 GMT</lastBuildDate>
    <ttl>5</ttl>
    <item>
      <title>Vol. 2 Ch. 19</title>
      <description></description>
      <link>https://mangadex.org/chapter/b902c44d-cb34-4077-9501-c90b1216f2fb</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/b902c44d-cb34-4077-9501-c90b1216f2fb</guid>
      <pubDate>Sun, 23 Jan 2022 04:54:07 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 18</title>
      <description></description>
      <link>https://mangadex.org/chapter/3f5443d2-eed8-458c-aa58-ddd9092d37d7</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/3f5443d2-eed8-458c-aa58-ddd9092d37d7</guid>
      <pubDate>Sat, 18 Dec 2021 04:55:56 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 17</title>
      <description></description>
      <link>https://mangadex.org/chapter/2022c36a-77c0-4fac-991a-1bfc6fd2b71b</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/2022c36a-77c0-4fac-991a-1bfc6fd2b71b</guid>
      <pubDate>Sun, 25 Jul 2021 02:46:14 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 16</title>
      <description></description>
      <link>https://mangadex.org/chapter/e18a74c6-144d-4f87-b4b0-919f01998d08</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/e18a74c6-144d-4f87-b4b0-919f01998d08</guid>
      <pubDate>Thu, 22 Jul 2021 23:09:26 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 15</title>
      <description></description>
      <link>https://mangadex.org/chapter/779ea403-f3d7-4f9f-8e26-6c61a9efdc4a</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/779ea403-f3d7-4f9f-8e26-6c61a9efdc4a</guid>
      <pubDate>Thu, 22 Jul 2021 23:08:26 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 14</title>
      <description></description>
      <link>https://mangadex.org/chapter/c28e40f9-9795-4f51-8b4c-de9fb1f99d02</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/c28e40f9-9795-4f51-8b4c-de9fb1f99d02</guid>
      <pubDate>Thu, 22 Jul 2021 23:07:10 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 13</title>
      <description></description>
      <link>https://mangadex.org/chapter/93fd11f3-64a5-4f21-b48a-3b5ce022ee08</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/93fd11f3-64a5-4f21-b48a-3b5ce022ee08</guid>
      <pubDate>Thu, 22 Jul 2021 23:06:21 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 12</title>
      <description></description>
      <link>https://mangadex.org/chapter/3e6c929b-d2b1-4f4b-932e-f5039f5365bf</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/3e6c929b-d2b1-4f4b-932e-f5039f5365bf</guid>
      <pubDate>Thu, 22 Jul 2021 23:03:49 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 11</title>
      <description></description>
      <link>https://mangadex.org/chapter/db2cb9be-c020-4fbd-bef2-6ebd53a6eedf</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/db2cb9be-c020-4fbd-bef2-6ebd53a6eedf</guid>
      <pubDate>Thu, 22 Jul 2021 23:03:10 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 10</title>
      <description></description>
      <link>https://mangadex.org/chapter/3418ec3b-189d-4ff6-b405-bd01b1f1df19</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/3418ec3b-189d-4ff6-b405-bd01b1f1df19</guid>
      <pubDate>Thu, 22 Jul 2021 23:01:36 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 2 Ch. 9</title>
      <description></description>
      <link>https://mangadex.org/chapter/4aa5c295-6408-46ae-83cb-aa904887c642</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/4aa5c295-6408-46ae-83cb-aa904887c642</guid>
      <pubDate>Sun, 14 Mar 2021 18:12:40 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 8.5</title>
      <description></description>
      <link>https://mangadex.org/chapter/6faec034-7342-40b4-b59a-84ec9705d7c9</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/6faec034-7342-40b4-b59a-84ec9705d7c9</guid>
      <pubDate>Sun, 07 Mar 2021 21:25:31 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 8</title>
      <description></description>
      <link>https://mangadex.org/chapter/aeb49852-3223-4c49-a6cc-c7a297ac1b0c</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/aeb49852-3223-4c49-a6cc-c7a297ac1b0c</guid>
      <pubDate>Sat, 27 Feb 2021 22:55:15 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 7</title>
      <description></description>
      <link>https://mangadex.org/chapter/7249ffd8-fcea-4b12-afe4-56bcf99e8f61</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/7249ffd8-fcea-4b12-afe4-56bcf99e8f61</guid>
      <pubDate>Tue, 23 Feb 2021 03:29:22 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 6</title>
      <description></description>
      <link>https://mangadex.org/chapter/f0bb52e5-43b9-4fda-8c4e-f35eeb54d9fd</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/f0bb52e5-43b9-4fda-8c4e-f35eeb54d9fd</guid>
      <pubDate>Mon, 22 Feb 2021 19:36:13 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 5</title>
      <description></description>
      <link>https://mangadex.org/chapter/4a5fda4e-f971-4334-9fcd-95cd96633a42</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/4a5fda4e-f971-4334-9fcd-95cd96633a42</guid>
      <pubDate>Sun, 14 Feb 2021 19:44:20 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 4</title>
      <description></description>
      <link>https://mangadex.org/chapter/15eeca35-022a-460a-b1c5-03d304d453a3</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/15eeca35-022a-460a-b1c5-03d304d453a3</guid>
      <pubDate>Sun, 14 Feb 2021 01:26:20 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 3</title>
      <description></description>
      <link>https://mangadex.org/chapter/ee7fd31e-6a1b-4bc5-b895-daa4e968b562</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/ee7fd31e-6a1b-4bc5-b895-daa4e968b562</guid>
      <pubDate>Sat, 06 Feb 2021 23:58:11 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 2</title>
      <description></description>
      <link>https://mangadex.org/chapter/34d7aa78-457a-4d5d-979e-aa21600e61ba</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/34d7aa78-457a-4d5d-979e-aa21600e61ba</guid>
      <pubDate>Sun, 31 Jan 2021 23:35:14 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>Vol. 1 Ch. 1</title>
      <description></description>
      <link>https://mangadex.org/chapter/ce698ef8-d8bf-4e50-8fb0-8d5a18353a4d</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/ce698ef8-d8bf-4e50-8fb0-8d5a18353a4d</guid>
      <pubDate>Mon, 25 Jan 2021 05:05:53 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/f98660a1-d2e2-461c-960d-7bd13df8b76d/fbc3245d-96ee-4f48-9401-78f7570e9273.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
  </channel>
</rss>
http://localhost:1200/mangadex/mdlist/10cca803-8dc9-4f0e-86a8-6659a3ce5188 - Success ✔️
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
  <channel>
    <title>MangaDex MDList - DemoList by chrisis58</title>
    <link>https://mangadex.org/list/10cca803-8dc9-4f0e-86a8-6659a3ce5188/demolist?tab=feed</link>
    <atom:link href="http://localhost:1200/mangadex/mdlist/10cca803-8dc9-4f0e-86a8-6659a3ce5188" rel="self" type="application/rss+xml"></atom:link>
    <description>The latest updates of all the manga in a sepcific list - Powered by RSSHub</description>
    <generator>RSSHub</generator>
    <webMaster>[email protected] (RSSHub)</webMaster>
    <language>en</language>
    <lastBuildDate>Mon, 03 Feb 2025 13:56:42 GMT</lastBuildDate>
    <ttl>5</ttl>
    <item>
      <title>ガルルガール</title>
      <description>Ch. 11</description>
      <link>https://mangadex.org/chapter/93a9f0d6-38b5-4abd-a10e-23944a11506e</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/93a9f0d6-38b5-4abd-a10e-23944a11506e</guid>
      <pubDate>Sun, 02 Feb 2025 01:39:10 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/ab541412-f0d0-4fcf-a7a3-084a835d9d4a/1298620b-1f2d-4097-9490-214b0f176a66.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 160 I Want Some Encouragement</description>
      <link>https://mangadex.org/chapter/bccb0252-7ad2-41c6-a76f-c715cb50f9ca</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/bccb0252-7ad2-41c6-a76f-c715cb50f9ca</guid>
      <pubDate>Fri, 24 Jan 2025 17:35:59 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 159.2 Twitter Extra</description>
      <link>https://mangadex.org/chapter/0f99bfeb-f37d-4b49-8ab0-7c399c0b7b97</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/0f99bfeb-f37d-4b49-8ab0-7c399c0b7b97</guid>
      <pubDate>Fri, 24 Jan 2025 17:35:27 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>ガルルガール</title>
      <description>Vol. 1 Ch. 2</description>
      <link>https://mangadex.org/chapter/43b3edf8-e436-4e20-9dd8-e64b491225bc</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/43b3edf8-e436-4e20-9dd8-e64b491225bc</guid>
      <pubDate>Sun, 19 Jan 2025 21:41:16 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/ab541412-f0d0-4fcf-a7a3-084a835d9d4a/1298620b-1f2d-4097-9490-214b0f176a66.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 159 Estou me sentindo solitário</description>
      <link>https://mangadex.org/chapter/5a1809c3-295c-4ec5-bcaf-48883dd4c6b2</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/5a1809c3-295c-4ec5-bcaf-48883dd4c6b2</guid>
      <pubDate>Sat, 11 Jan 2025 14:09:17 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>ガルルガール</title>
      <description>Vol. 1 Ch. 1</description>
      <link>https://mangadex.org/chapter/e6eaf964-0dce-48ad-bd5c-90f8139881e5</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/e6eaf964-0dce-48ad-bd5c-90f8139881e5</guid>
      <pubDate>Fri, 10 Jan 2025 04:33:04 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/ab541412-f0d0-4fcf-a7a3-084a835d9d4a/1298620b-1f2d-4097-9490-214b0f176a66.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>ガルルガール</title>
      <description>Ch. 10</description>
      <link>https://mangadex.org/chapter/273d2cab-8a90-45ab-82a0-7e4d4af9b927</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/273d2cab-8a90-45ab-82a0-7e4d4af9b927</guid>
      <pubDate>Fri, 03 Jan 2025 03:15:09 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/ab541412-f0d0-4fcf-a7a3-084a835d9d4a/1298620b-1f2d-4097-9490-214b0f176a66.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 159.1 Twitter Extra - New Year 2025</description>
      <link>https://mangadex.org/chapter/f0129fc1-a4cc-4ab5-98a0-35a0a35b5749</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/f0129fc1-a4cc-4ab5-98a0-35a0a35b5749</guid>
      <pubDate>Thu, 02 Jan 2025 04:57:36 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 159 I&#39;m Feeling Lonely</description>
      <link>https://mangadex.org/chapter/e4ce2e6e-451c-42c1-a252-78c85d854645</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/e4ce2e6e-451c-42c1-a252-78c85d854645</guid>
      <pubDate>Fri, 27 Dec 2024 04:27:23 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 158.1 Twitter Extra</description>
      <link>https://mangadex.org/chapter/d3ed9be0-5272-430a-b396-d5f663afe46e</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/d3ed9be0-5272-430a-b396-d5f663afe46e</guid>
      <pubDate>Fri, 27 Dec 2024 04:26:56 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 158 Cheguei em casa de manhã</description>
      <link>https://mangadex.org/chapter/b2a78717-c4c0-4ed6-b26f-57d8f1d8f3ad</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/b2a78717-c4c0-4ed6-b26f-57d8f1d8f3ad</guid>
      <pubDate>Sat, 21 Dec 2024 13:20:08 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 158 I Got Home in the Morning</description>
      <link>https://mangadex.org/chapter/600562cb-e408-40ab-84b6-cd56c1fccf37</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/600562cb-e408-40ab-84b6-cd56c1fccf37</guid>
      <pubDate>Thu, 12 Dec 2024 19:21:01 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 157.1 Twitter Extra</description>
      <link>https://mangadex.org/chapter/575fb1c1-bf15-4d1d-b1b9-b1bad0a0d57b</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/575fb1c1-bf15-4d1d-b1b9-b1bad0a0d57b</guid>
      <pubDate>Thu, 12 Dec 2024 19:20:09 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 157 Eu não sei o que estou fazendo</description>
      <link>https://mangadex.org/chapter/19eefd96-f77c-4319-9db0-4c4fa41a5dda</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/19eefd96-f77c-4319-9db0-4c4fa41a5dda</guid>
      <pubDate>Sun, 08 Dec 2024 12:26:21 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>ガルルガール</title>
      <description>Ch. 9</description>
      <link>https://mangadex.org/chapter/e8ddc16a-eccd-49c9-94e3-7ea940463905</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/e8ddc16a-eccd-49c9-94e3-7ea940463905</guid>
      <pubDate>Sat, 07 Dec 2024 10:27:30 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/ab541412-f0d0-4fcf-a7a3-084a835d9d4a/1298620b-1f2d-4097-9490-214b0f176a66.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 156</description>
      <link>https://mangadex.org/chapter/7957cb17-e120-4cc6-9abf-9face02b0e65</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/7957cb17-e120-4cc6-9abf-9face02b0e65</guid>
      <pubDate>Thu, 05 Dec 2024 17:40:21 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Ch. 155</description>
      <link>https://mangadex.org/chapter/c9de07cc-19f0-4d4b-b71d-a548007567b7</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/c9de07cc-19f0-4d4b-b71d-a548007567b7</guid>
      <pubDate>Thu, 05 Dec 2024 17:40:07 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 154</description>
      <link>https://mangadex.org/chapter/9161d56e-2081-4fdb-bebb-fb246d8efce9</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/9161d56e-2081-4fdb-bebb-fb246d8efce9</guid>
      <pubDate>Thu, 05 Dec 2024 17:39:53 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 153</description>
      <link>https://mangadex.org/chapter/5d376a43-6b5f-4119-9826-b8005958d84a</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/5d376a43-6b5f-4119-9826-b8005958d84a</guid>
      <pubDate>Thu, 05 Dec 2024 17:39:40 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 152</description>
      <link>https://mangadex.org/chapter/3ecddcf9-bac9-4c5b-a3b4-9260f46082a6</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/3ecddcf9-bac9-4c5b-a3b4-9260f46082a6</guid>
      <pubDate>Thu, 05 Dec 2024 17:39:26 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 151</description>
      <link>https://mangadex.org/chapter/a3dbd8f1-5147-4b71-a0c0-b5178c04da56</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/a3dbd8f1-5147-4b71-a0c0-b5178c04da56</guid>
      <pubDate>Thu, 05 Dec 2024 17:39:12 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 150</description>
      <link>https://mangadex.org/chapter/6c637866-62cb-4df5-9f4f-b9de6a41c4e8</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/6c637866-62cb-4df5-9f4f-b9de6a41c4e8</guid>
      <pubDate>Thu, 05 Dec 2024 17:38:57 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 149</description>
      <link>https://mangadex.org/chapter/a7d04338-b314-4b7b-be9b-048b4b377824</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/a7d04338-b314-4b7b-be9b-048b4b377824</guid>
      <pubDate>Thu, 05 Dec 2024 17:38:44 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 148</description>
      <link>https://mangadex.org/chapter/dd6078d8-a1c6-45f2-b8e2-2c2230280811</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/dd6078d8-a1c6-45f2-b8e2-2c2230280811</guid>
      <pubDate>Thu, 05 Dec 2024 17:38:33 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
    <item>
      <title>僕ヤバ</title>
      <description>Vol. 11 Ch. 147</description>
      <link>https://mangadex.org/chapter/173d2eb7-36c1-4256-aed1-ebafab503b91</link>
      <guid isPermaLink="false">https://mangadex.org/chapter/173d2eb7-36c1-4256-aed1-ebafab503b91</guid>
      <pubDate>Thu, 05 Dec 2024 17:38:21 GMT</pubDate>
      <enclosure url="https://uploads.mangadex.org/covers/3df1a9a3-a1be-47a3-9e90-9b3e55b1d0ac/60b13fdd-6541-48e5-9181-fe1903d840f5.jpg.512.jpg" type="image/jpeg"></enclosure>
    </item>
  </channel>
</rss>

@TonyRL TonyRL requested a review from Copilot February 3, 2025 14:19

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot reviewed 5 out of 11 changed files in this pull request and generated no comments.

Files not reviewed (6)
  • lib/config.ts: Evaluated as low risk
  • lib/routes/mangadex/user/feed.ts: Evaluated as low risk
  • lib/routes/mangadex/user/follows.ts: Evaluated as low risk
  • lib/routes/mangadex/index.ts: Evaluated as low risk
  • lib/routes/mangadex/namespace.ts: Evaluated as low risk
  • lib/routes/mangadex/_constants.ts: Evaluated as low risk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Auto: Route Test Complete Auto route test has finished on given PR Route
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant