From 717ebebbc13dfa2c28c39fa3da1b4b060def65f6 Mon Sep 17 00:00:00 2001 From: Mohit Raj Date: Wed, 10 Jan 2024 00:48:47 +0530 Subject: [PATCH] chore: bump version to v0.3.0 - Reduce default article count from 100 to 15 in order to reduce processing time and output file size (by @zsoltika) - Add new option for search-string specifier which can also be used to change the article fetch order to oldest article first from the current default of newest article first (by @zsoltika) New Contributors: - @zsoltika --- main.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.ts b/main.ts index bc9612d..483dd4c 100644 --- a/main.ts +++ b/main.ts @@ -3,7 +3,7 @@ import sanitizeHtml from "npm:sanitize-html"; import epub, { Chapter } from "npm:epub-gen-memory"; import config from "./config.json" with { type: "json" }; -const currentVersion = "v0.2.0"; +const currentVersion = "v0.3.0"; console.log(`ℹ Omnivore EPUB ${currentVersion}`); console.log("ℹ️ Homepage: https://github.com/agrmohit/omnivore-epub"); @@ -33,6 +33,7 @@ async function checkForUpdates() { if (tags[0].name !== currentVersion) { console.log("ℹ New update available"); console.log(`ℹ ${currentVersion} --> ${tags[0].name}`); + console.log(`ℹ View release notes: https://github.com/agrmohit/omnivore-epub/releases`); } }