Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mienaiyami committed Jul 24, 2023
1 parent b63564b commit 5120ae0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
20 changes: 11 additions & 9 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,23 @@

## Added

- Auto refresh Home Location List.
- Option to keep extracted/rendered data to open archives, pdf and epub faster.
- **64-bit download option.**
- Exact search, match exact words if search start with a `"`.
- Grayscale filter.

## Changed

- Replaced refresh button in location list with sort.
- Usage & feature text update.
- Better search for bookmark/history.
- Show error dialog for password protected pdf.
- Force close window if there is no response to backend after 5 sec of clicking close.
- Changed/added feature text.
- DEV:
- For image archives, look for first non-empty subfolder instead of first file when no direct image descendant found.
- Multiple changes in packages and configs, 626677c1ed9ce9ad04f457877691d87611ccabed.
- Custom pdfjs-dist to prevent errors.

## Fixed

- PDFs not opening.
- Anilist data deleting after update in portable version.
- Repeated setting file save in epub.
- Reader Side-List not showing history for archive types.
- Bookmark/history search does not work for archives (except epub).
- PDF not rendering when window not visible.

---
9 changes: 4 additions & 5 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -271,10 +271,9 @@ const App = (): ReactElement => {
// .then((e) => {
// if (e) tempFn(tempExtractPath, 1);
// });
if (!window.electron.app.isPackaged)
link =
"http://localhost:33167/stuff/mangas/ln/Eminence%20in%20Shadow/The%20Eminence%20in%20Shadow,%20Vol.%201.pdf";
window.pdfjsLib.PromiseCapability;
// if (!window.electron.app.isPackaged)
// link =
// "http://localhost:33167/stuff/mangas/ln/Eminence%20in%20Shadow/The%20Eminence%20in%20Shadow,%20Vol.%201.pdf";
const doc = window.pdfjsLib.getDocument(link);
doc.onPassword = () => {
window.dialog.customError({
Expand All @@ -294,7 +293,7 @@ const App = (): ReactElement => {
canvas.height = viewport.height;
const context = canvas.getContext("2d");
if (context) {
console.log("starting", i);
// console.log("starting", i);
// (async function fun() {
// await page.render({ canvasContext: context, viewport: viewport }).promise;
// const image = canvas.toDataURL("image/png");
Expand Down

0 comments on commit 5120ae0

Please sign in to comment.