Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
mienaiyami committed Aug 8, 2023
1 parent c8951a6 commit 23a32a4
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 240 deletions.
39 changes: 17 additions & 22 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,35 +4,30 @@ Does not follow semver.

## Added

- Option to render multiple pdfs, #216. Access from settings.
- Context menu keyboard navigation.
- Option to mark chapter as unread in home-location-list and reader-side-list, #213.
- EPUB double click fullscreen.
- Search bar and list navigation with keyboard. Check Settings -> Extras -> "Search tab shortcuts" for more.
- Context menu in epub reader.
- Option to clear app cache.
- Context menu
- esc to close.
- shortcut key to open.
- unread all, mark as real, mark all as read.
- #222, Option to disable text select in epub reader.
- Custom option select and color input.

## Changed

- Better keyboard navigation in search inputs.
- UI Changes:
- Moved "usage & features" to "extras" tab.
- Context menu related changes.
- Highlight element on setting link click navigation.
- #220.
- Added custom number input spinner.
- and more.
- Text update in some loading screens.
- EPUB:
- Use default padding and margins for all elements.
- Confirm before opening external links.
- Don't render side list in zen mode, improve performance but lag when exiting zen mode if very high chapter count.
- Context Menu looks. Position in zen mode.
- Anilist data editor changes for better readability.
- DEV:
- Context Menu system changed, made modular and context based rather than redux.
- pdf render optimization.
- Cleaned and improved theme maker code. Isolated theme maker, better theme apply and save
- Switched to color library to handle color conversions.

## Fixed

- Epub without toc does not open.
- Epub side-list performance issue, [more in #202](https://github.com/mienaiyami/yomikiru/issues/202#issuecomment-1655858560).
- Epub "open in new window" error.
- fixed #213, default location url edit.
- removing searched history/bookmark by right click removes other instead.
- highlighted bookmark/history if single item and search is off.
- anilist search not focused on clicking "track".
- side-list closes when context menu closes.

---
215 changes: 0 additions & 215 deletions makeAll.js

This file was deleted.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "yomikiru",
"productName": "Yomikiru",
"version": "2.16.2",
"version": "2.17.0",
"description": "App to read manga / comic / epub offline on desktop",
"main": ".webpack/main",
"author": {
Expand Down Expand Up @@ -92,4 +92,4 @@
"config": {
"forge": "forge.config.js"
}
}
}
2 changes: 2 additions & 0 deletions src/Components/Element/InputColorReal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import InputNumber from "./InputNumber";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faEyeDropper, faSort } from "@fortawesome/free-solid-svg-icons";

// ! not indented to be used without `AppContext::colorSelectData`

const COLOR_FORMATS = ["RGBA", "HEX", "HSLA"] as const;

const VALID_SLIDER = {
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Element/MenuList.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useRef, useState, useEffect, useLayoutEffect, useContext } from "react";
import { AppContext } from "../../App";

// ! not indented to be used without `AppContext::optSelectData`
//todo rename later for select only
const MenuList = () => {
const { optSelectData } = useContext(AppContext);
Expand Down

0 comments on commit 23a32a4

Please sign in to comment.