Skip to content

Commit

Permalink
chore: bump version to v0.3.0
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
agrmohit committed Jan 9, 2024
1 parent b470418 commit 717ebeb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down Expand Up @@ -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`);
}
}

Expand Down

0 comments on commit 717ebeb

Please sign in to comment.