From 92cb0486af8000a0478a040b43e178e968ad153b Mon Sep 17 00:00:00 2001 From: G0yp Date: Thu, 2 Apr 2026 16:26:27 -0500 Subject: [PATCH 1/2] fix: change novel.totalPages calculation to divide by 50 instead of 100 --- plugins/english/novelfire.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/english/novelfire.ts b/plugins/english/novelfire.ts index b8be0b8d7..27ec87a3a 100644 --- a/plugins/english/novelfire.ts +++ b/plugins/english/novelfire.ts @@ -285,7 +285,7 @@ class NovelFire implements Plugin.PluginBase { .parent() .text() .trim(); - novel.totalPages = Math.ceil(parseInt(totalChapters) / 100); + novel.totalPages = Math.ceil(parseInt(totalChapters) / 50); if (this.singlePage) { novel.chapters = await this.getAllChaptersForce( novelPath, From bebf83323102bb43cdf284ac90ef32130171288e Mon Sep 17 00:00:00 2001 From: G0yp Date: Thu, 2 Apr 2026 16:30:43 -0500 Subject: [PATCH 2/2] update version number --- plugins/english/novelfire.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/english/novelfire.ts b/plugins/english/novelfire.ts index 27ec87a3a..d5273cd22 100644 --- a/plugins/english/novelfire.ts +++ b/plugins/english/novelfire.ts @@ -9,7 +9,7 @@ import { storage } from '@libs/storage'; class NovelFire implements Plugin.PluginBase { id = 'novelfire'; name = 'Novel Fire'; - version = '1.1.8'; + version = '1.1.9'; icon = 'src/en/novelfire/icon.png'; site = 'https://novelfire.net/';