Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
mienaiyami committed May 7, 2023
1 parent 718e190 commit f132783
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,20 @@ Linux distribution currently not available as direct download but can be build e
## Added

- EPub:
- margin+width default for <HR>
- limit img height to viewport option.
- option to disable to paragraph indent.
- added support for URL with `#` / fragment.
- Custom text, link, background color from reader settings.
- Option to invert and blend image.
- Collapse-able Tabs in reader settings.
- Download Progress window.

## Changed

- UI Enhancements.
- Changed lower limit of some epub settings to `0` from `0.1` .
- Disable reader shortcuts when settings is open.


## Fixed

- fixed #107,#111,#112,#113,#114,#115,#118,#121,#122,#123.
- fixed #125,123,#117,#126.

---

Expand Down
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.10.4",
"version": "2.11.0",
"description": "App to read manga/comic/epub offline on desktop",
"main": ".webpack/main",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/Components/LoadingScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const LoadingScreen = () => {
({mangaInReader?.pages}) {mangaInReader?.mangaName} - {mangaInReader?.chapterName}
</div> */}
{unzipping ? (
<div className="unzipping">Unzipping</div>
<div className="unzipping">Unzipping and Loading</div>
) : (
<div className="loadingBarCont">
<div
Expand Down
4 changes: 2 additions & 2 deletions src/MainImports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export const settingValidatorData = {
// all color valeus are hex
useDefault_fontColor: true,
fontColor: "none",
useDefault_linkColor: true,
useDefault_linkColor: false,
linkColor: "none",
useDefault_backgroundColor: true,
backgroundColor: "none",
Expand Down Expand Up @@ -828,7 +828,7 @@ const defaultSettings: AppSettings = {

useDefault_fontColor: true,
fontColor: "none",
useDefault_linkColor: true,
useDefault_linkColor: false,
linkColor: "#0073ff",
useDefault_backgroundColor: true,
backgroundColor: "none",
Expand Down

0 comments on commit f132783

Please sign in to comment.