Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
mienaiyami committed Sep 11, 2023
1 parent c81bd9b commit f77f733
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 16 deletions.
23 changes: 14 additions & 9 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,24 @@ Does not follow semver.

---

<!-- ## Added -->
## Added

- option to sync app settings and themes across instances.
- added #261 and private option in anilist data editor

## Changed

- keyboard focus-able anilist link
- better fit for color input in reader setting
- UI:
- better blurred window titlebar
- context-menu separator
- more
- keyboard accessible settings tab button.
- debian after update download prompt.

## Fixed

- fixed #256.
- fixed: middle mouse button behavior in reader.
- fixed: inaccurate width over 100%, <https://github.com/mienaiyami/yomikiru/issues/241#issuecomment-1695258454>
- fixed loading error when location is drive name
- fixed: wide images width in horizontal fit mode
- fixed #262
- fixed context menu for svg images in epub
- fixed: clicking 'h' not saving manga progress sometimes.

---
---
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "yomikiru",
"productName": "Yomikiru",
"version": "2.17.8",
"description": "App to read manga / comic / epub offline on desktop",
"version": "2.18.0",
"description": "App to read manga / comic / novel offline on desktop",
"main": ".webpack/main",
"author": {
"name": "mienaiyami",
Expand Down Expand Up @@ -88,4 +88,4 @@
"wait-on": "5.3.0",
"worker-loader": "^3.0.8"
}
}
}
4 changes: 2 additions & 2 deletions src/renderer/Components/anilist/AnilistBar.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { faMinus, faPlus, faWrench } from "@fortawesome/free-solid-svg-icons";
import { faMinus, faPlus, faSlidersH } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import React, { useLayoutEffect, useState, memo } from "react";
import InputNumber from "../Element/InputNumber";
Expand Down Expand Up @@ -76,7 +76,7 @@ const AnilistBar = memo(() => {
<FontAwesomeIcon icon={faPlus} />
</button>
<button data-tooltip="More Options" onClick={() => dispatch(setAniEditOpen(true))}>
<FontAwesomeIcon icon={faWrench} />
<FontAwesomeIcon icon={faSlidersH} />
</button>
</div>
);
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2172,7 +2172,7 @@ body {
display: grid;
padding: 0 10px 10px 10px;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 50px;
grid-template-rows: 1fr 1fr 60px;
gap: 10px;
column-gap: 20px;
// input[type="number"] {
Expand All @@ -2184,7 +2184,7 @@ body {
align-items: end;
&.last {
height: 60px;
align-items: center;
// align-items: center;
}
label {
// height: 100%;
Expand Down

0 comments on commit f77f733

Please sign in to comment.