Description<\/h2>(.+)<\/p><\/td>/)[1]
- .replace(/
/g, '\n')
- .replace(/(.+)<\/a>/g, '[$2]($1)');
- return {
- id: id[1],
- url: `https://vndb.org/v${id}`,
- title: text.match(/(.+)<\/title>/)[1],
- developer,
- description: description === '-' ? null : description,
- image: text.match(/https:\/\/s.vndb.org\/cv\/[0-9]+\/[0-9]+\.jpg/)[0]
- };
- }
-
- async fetchDeveloper(id) {
- const { text } = await request.get(`https://vndb.org/p${id}`);
- return {
- name: text.match(/(.+)<\/title>/)[1],
- url: `https://vndb.org/p${id}`
- };
- }
-};
diff --git a/package.json b/package.json
index a76941a6..9cb841ae 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "xiao",
- "version": "107.9.0",
+ "version": "108.0.0",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {