[go: up one dir, main page]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

some minor fix and optimization #566

Merged
merged 25 commits into from
Mar 5, 2023
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3c829fc
fix: two childs have the same key in historyscreen
nyagami Feb 27, 2023
6e501c3
update: swipe gestures: change chapter on webview
nyagami Feb 27, 2023
78da5ca
minor: change scroll listener timeout
nyagami Feb 27, 2023
061a941
fix: undefined novelId on browse screen
nyagami Feb 27, 2023
14b8325
allow load downloaded images on webview
nyagami Feb 27, 2023
fc3bdbe
refactor: appbar, seekbar, footer in reader
nyagami Mar 1, 2023
17ba794
send scrollHeight after 1s.
nyagami Mar 1, 2023
5d97993
minor fix: bottom percentage
nyagami Mar 1, 2023
614b6be
fix: unescapeHTML for some sources ¯\_(ツ)_/¯
nyagami Mar 1, 2023
e4c3af2
fix: no background img in novel screen
nyagami Mar 1, 2023
13de49b
fix: appbar disappear after long press in novel screen
nyagami Mar 1, 2023
121ee04
fix: two children have same key in edit info
nyagami Mar 1, 2023
9d98a0f
fix: background color opacity in front of cover
nyagami Mar 1, 2023
21e7bc2
fix: edit cover button displays better.
nyagami Mar 1, 2023
f12f9d3
refactor: loading condition
nyagami Mar 1, 2023
cc3dfd5
Remove loading in nove info header.
nyagami Mar 1, 2023
7b3f6cc
minor fix
nyagami Mar 1, 2023
f184d2a
Limit number of characters in category tab.
nyagami Mar 2, 2023
55fe892
Revert "Limit number of characters in category tab."
nyagami Mar 2, 2023
c54c2c4
cleanup: remove package never used (buffer)
nyagami Mar 2, 2023
df596ad
fix: Download button on custom download
nyagami Mar 2, 2023
40eae29
fix: 50ms is not good for low performance device
nyagami Mar 2, 2023
22ef5b8
help text for auto update library
nyagami Mar 2, 2023
3c1d448
Not rendering all images at the same time.
nyagami Mar 2, 2023
33f7820
clean up
nyagami Mar 2, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: background color opacity in front of cover
  • Loading branch information
nyagami committed Mar 1, 2023
commit 9d98a0f09472cfc7b3b86430a5441edf03cf164c
2 changes: 1 addition & 1 deletion src/screens/novel/components/Info/NovelInfoComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const CoverImage = ({ children, source, theme, hideBackdrop }) => {
<View
style={{
flex: 1,
backgroundColor: 'transperant',
backgroundColor: color(theme.background).alpha(0.7).string(),
}}
>
{source.uri ? (
Expand Down