mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
Replace drop shadow on the Flow Info view too
This commit is contained in:
parent
dd82f1ecb4
commit
3ae3628c1f
@ -24,7 +24,7 @@ Version counting is based on semantic versioning (Major.Feature.Patch)
|
|||||||
* Add a dialog to show information about a library, it includes the number of folders and comics and the number of read comics.
|
* Add a dialog to show information about a library, it includes the number of folders and comics and the number of read comics.
|
||||||
* Fix ocasional crashes when using automatic library updates.
|
* Fix ocasional crashes when using automatic library updates.
|
||||||
* Add setting to hide the "Continue Reading..." banner from the home view.
|
* Add setting to hide the "Continue Reading..." banner from the home view.
|
||||||
* Improve Grid view performance.
|
* Improve Grid and Flow Info comics view scroll performance.
|
||||||
|
|
||||||
### YACReaderLibraryServer
|
### YACReaderLibraryServer
|
||||||
* New command --system-info to print information about the execution environment and available resources (including what image formats are supported and what libraries are used by the app).
|
* New command --system-info to print information about the execution environment and available resources (including what image formats are supported and what libraries are used by the app).
|
||||||
|
@ -118,16 +118,20 @@ Rectangle {
|
|||||||
running: coverElement.status === Image.Loading
|
running: coverElement.status === Image.Loading
|
||||||
}
|
}
|
||||||
|
|
||||||
DropShadow {
|
BorderImage {
|
||||||
anchors.fill: coverElement
|
anchors {
|
||||||
horizontalOffset: 0
|
top: coverElement.top
|
||||||
verticalOffset: 0
|
left: coverElement.left
|
||||||
radius: 6
|
right: coverElement.right
|
||||||
samples: 17
|
bottom: coverElement.bottom
|
||||||
color: "#BB000000"
|
margins: -6
|
||||||
source: coverElement
|
|
||||||
visible: showDropShadow;
|
|
||||||
}
|
}
|
||||||
|
border { left: 10; top: 10; right: 10; bottom: 10 }
|
||||||
|
horizontalTileMode: BorderImage.Stretch
|
||||||
|
verticalTileMode: BorderImage.Stretch
|
||||||
|
source: "prerendered_cover_shadow.png"
|
||||||
|
visible: showDropShadow
|
||||||
|
}
|
||||||
|
|
||||||
Image {
|
Image {
|
||||||
id: coverElement
|
id: coverElement
|
||||||
|
@ -124,16 +124,19 @@ Rectangle {
|
|||||||
running: coverElement.status === Image.Loading
|
running: coverElement.status === Image.Loading
|
||||||
}
|
}
|
||||||
|
|
||||||
DropShadow {
|
BorderImage {
|
||||||
transparentBorder: true
|
anchors {
|
||||||
anchors.fill: coverElement
|
top: coverElement.top
|
||||||
horizontalOffset: 0
|
left: coverElement.left
|
||||||
verticalOffset: 0
|
right: coverElement.right
|
||||||
radius: 6
|
bottom: coverElement.bottom
|
||||||
//samples: 17
|
margins: -6
|
||||||
color: "#BB000000"
|
}
|
||||||
source: coverElement
|
border { left: 10; top: 10; right: 10; bottom: 10 }
|
||||||
visible: showDropShadow;
|
horizontalTileMode: BorderImage.Stretch
|
||||||
|
verticalTileMode: BorderImage.Stretch
|
||||||
|
source: "prerendered_cover_shadow.png"
|
||||||
|
visible: showDropShadow
|
||||||
}
|
}
|
||||||
|
|
||||||
Image {
|
Image {
|
||||||
|
@ -68,6 +68,7 @@ YACReader::WhatsNewDialog::WhatsNewDialog(QWidget *parent)
|
|||||||
" • Add a dialog to show information about a library, including the number of folders, comics, and read comics<br/>"
|
" • Add a dialog to show information about a library, including the number of folders, comics, and read comics<br/>"
|
||||||
" • Fix occasional crashes when using automatic library updates<br/>"
|
" • Fix occasional crashes when using automatic library updates<br/>"
|
||||||
" • Add setting to hide the \"Continue Reading...\" banner from the home view<br/>"
|
" • Add setting to hide the \"Continue Reading...\" banner from the home view<br/>"
|
||||||
|
" • Improve Grid and Flow Info comics view scroll performance<br/>"
|
||||||
"<br/>"
|
"<br/>"
|
||||||
"<span style=\"font-weight:600\">YACReaderLibraryServer</span><br/>"
|
"<span style=\"font-weight:600\">YACReaderLibraryServer</span><br/>"
|
||||||
" • New command --system-info to print information about the execution environment and available resources (including what image formats are supported and what libraries are used by the app).<br/>"
|
" • New command --system-info to print information about the execution environment and available resources (including what image formats are supported and what libraries are used by the app).<br/>"
|
||||||
|
Loading…
Reference in New Issue
Block a user