Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
mienaiyami committed Mar 6, 2023
1 parent 42cebe1 commit c95736f
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 27 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ Offline Manga/Manhwa Reader (not a downloader) built with react and typescript.
## Features

- Lightweight, take low cpu and ram when running.
- Supports most image formats (`".jpg", ".jpeg", ".png", ".webp", ".svg", ".apng", ".gif", ".avif"`) and archive (`.zip, .cbz`)
- Create multiple instances.
- Multiple shortcuts to move between pages, chapter, find page, etc.
- Customizable shortcuts.
- Multiple useful and customizable shortcuts.
- Multiple themes to choose from.
- Customizable themes, make your own theme with just few clicks.
- Reading modes - vertical scrolling, page by page.
- Customizable themes.
- Multiple Reading modes - Vertical Scroll, Left to Right, Right to left.
- Bookmark chapters.
- Keep history.
- Portable version available.
- Zen mode - read manga/manhwa without any UI in full screen.
- Open manga/manhwa directly from you file explorer.
- Zen mode - read without any UI in full screen.
- Open directly from file explorer.

## Screenshots

https://user-images.githubusercontent.com/84740082/160238433-6d5afb62-0992-4183-9374-74e33e3021ce.mp4
<!-- https://user-images.githubusercontent.com/84740082/160238433-6d5afb62-0992-4183-9374-74e33e3021ce.mp4 -->

![demo](github%20assets/1.png)
![demo](github%20assets/2.png)
Expand Down
26 changes: 9 additions & 17 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

## Downloads

[![Download setup](https://img.shields.io/badge/Windows%20Setup%20(exe)-$$EXE_NAME_1$$-brightgreen?logo=windows&logoColor=blue)](https://github.com/mienaiyami/yomikiru/releases/download/v$$TAG$$/$$EXE_NAME$$)
Expand All @@ -8,37 +7,30 @@
---
## Note

- App name will be changing to "Yomikiru".
- App name will be changing to "Yomikiru". Support for app with name as "Manga Reader" will end in April 2024.
- **Change in App state management system, some issues expected, please report.**

## Added

- Open item from location list in reader directly by double clicking (enable from settings).
- Better sorting for archive files as well.
- Options to reset settings and theme.
- Watch for file change; update bookmark and history in other instances of app as well.
- dev:
- remove old shortcuts from settings.
- #74.
- Show shortcut used.
- Apply theme to checkboxes.

## Changed

- Disabled scrollToPage on zen mode toggle when window is maximized.
- dev:
- state management tool changed from context to redux.
- moved theme setting to themes file.

- UI Enhancements.

## Fixed

- Archive files not sorting in right order.
- #76.
- Chapter transition screen not visible on first/last chapter (in "Left to right" and "right to left" reading mode).

---

#### Todo

- ~~Better state management.~~
- Add ability to change image quality in canvas mode for less RAM usage and performance.
- Write tests.
- Adjust app for debian.
- Write tests.
- Add ability to change image quality in canvas mode for less RAM usage and performance.

---
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "yomikiru",
"productName": "Yomikiru",
"version": "2.8.0",
"version": "2.8.1",
"description": "App to read manga on desktop",
"main": ".webpack/main",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Reader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ const Reader = () => {
e.classList.remove("faded");
timeOutId = setTimeout(() => {
e.classList.add("faded");
}, 1000);
}, 500);
}
}
return () => {
Expand Down
2 changes: 1 addition & 1 deletion src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,7 @@ body {
.shortcutClicked{
position: fixed;
display: flex;
background-color: var(--body-bg);
background-color: var(--topBar-color);
font-size: 3em;;
top: 40%;
left: 50%;
Expand Down

0 comments on commit c95736f

Please sign in to comment.