diff --git a/README.md b/README.md index fba7cbc..f0f1006 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Offline Manga/Manhwa/Comic/EPub Reader (not a downloader/host). ## Features(not limited to) - Lightweight, take low cpu and ram when running. -- Supports most image formats (`".jpg", ".jpeg", ".png", ".webp", ".svg", ".apng", ".gif", ".avif"`) and archive (`.zip, .cbz`,`.7z`). `.rar` won't supported and `.pdf` supported coming soon. **It is recommended to use folder as chapters instead of archives like `.zip`, `.cbz`.** +- Supports most image formats (`".jpg", ".jpeg", ".png", ".webp", ".svg", ".apng", ".gif", ".avif"`) and archive (`.zip, .cbz`,`.7z`) and `.pdf` (only as images, non clickable). `.rar` won't be supported. **It is recommended to use folder as chapters instead of archives like `.zip`, `.cbz`.** - Create multiple instances of reader. - Multiple useful and customizable shortcuts. - Scroll with keys and two available custom scrolling speed. diff --git a/changelog.md b/changelog.md index a38f0da..7b15716 100644 --- a/changelog.md +++ b/changelog.md @@ -4,25 +4,24 @@ ## Added -- Automated release for windows and linux(debian). -- EPUB: - - Shortcut keys for font size (epub), #172. - - Quick access font family, #175. - - Custom font weight. -- Better search for bookmark/history tabs. -- 7zip(.7z) support, #171. -- Drag and Drop (file and folder) support, #171. +- PDF support (only as image) and PDF quality control. +- Invert image color in manga reader. +- Better epub history. +- Export theme option, options to make theme sharing easier. ## Changed - UI Enhancements. -- Updated electron/chromium version. -- Clear history moved to settings. +- Downgraded electron/chromium version. +- Update checker, b0322f32a7938857a35ec436f91f37693a8133dd. + ## Fixed -- Location tab's url changed after opening manga with "Open without button..." enabled. -- Clicking on sides does not change chapter in epub at 100% on small screens, #174. -- Epub sidelist not focusing to current chapter, #177. +- Linux app not launching. +- Cant use color filters with fit options. +- Drag and drop errors, #181, #182. +- Window 7 error, #184. +- Bookmark import issue. --- diff --git a/package.json b/package.json index 9888b54..1ac1991 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "yomikiru", "productName": "Yomikiru", - "version": "2.12.1", + "version": "2.12.2", "description": "App to read manga / comic / epub offline on desktop", "main": ".webpack/main", "author": { diff --git a/src/Components/Settings.tsx b/src/Components/Settings.tsx index c786bca..07035cb 100644 --- a/src/Components/Settings.tsx +++ b/src/Components/Settings.tsx @@ -644,8 +644,6 @@ const Settings = (): ReactElement => { window.fs.readFileSync(opt[0], "utf8") ); const dataToAdd: ThemeData[] = []; - //todo: check if in righgt format, if is like themes.json or just allData - // commit msg: fixed bookmark impot issue +... let importedCount = 0; const existingThemeNames = allThemes.map((e) => e.name); if (!(data instanceof Array)) {