UNPKG

rsshub

Version:
52 lines (50 loc) 1.42 kB
import "./dist-Bog6z_OM.mjs"; import "./config-MQ-7ebJ_.mjs"; import "./logger-C4avouvV.mjs"; import { t as ofetch_default } from "./ofetch-DKl_Ma9g.mjs"; import { t as parseDate } from "./parse-date-r5WDWHno.mjs"; import { load } from "cheerio"; //#region lib/routes/webcatalog/changelog.ts const route = { path: "/changelog", categories: ["program-update"], example: "/webcatalog/changelog", parameters: {}, features: { requireConfig: false, requirePuppeteer: false, antiCrawler: false, supportBT: false, supportPodcast: false, supportScihub: false }, radar: [{ source: ["desktop.webcatalog.io/:lang/changelog"] }], name: "Changelog", maintainers: ["Tsuyumi25"], handler, url: "desktop.webcatalog.io/en/changelog" }; async function handler() { const url = "https://desktop.webcatalog.io/en/changelog"; const $ = load(await ofetch_default(url)); $(".container article div.mb-20").remove(); return { title: "WebCatalog Changelog", link: url, item: $(".container article").html()?.split("<hr>")?.map((section) => { const $section = load(section); const month = $section("h1").remove().text(); const title = $section("h2").first().remove().text(); return { title: `${month} - ${title}`, description: $section.html(), link: url, pubDate: parseDate(month), guid: `webcatalog-${month}-${title}` }; }), language: "en" }; } //#endregion export { route };