Quote:
Originally Posted by rtiangha
A version of Increase library cover size but for the Series tab in firmware 4.20+. It's a cool feature but I was trying to figure out why list view looked off to me, and I think it's because it's using the original thumbnail size rather than the larger one used in the My Books tab. Messes with my OCD, lol.
|
Caveat: *** This is experimental (
and a bit messy) ***
Your info panel says you have a GloHD so try adding this test patch (for Dragon devices only at the moment, i.e. AuraHD, H2O, GloHD, ClaraHD) to wherever you keep your custom patches for nickel.yaml
Code:
test Increase Series list cover thumbnails:
- Enabled: no
- Description: Series list. Enlarge cover thumbnails
- FindZlib: "#seriesCoverPack"
- ReplaceZlibGroup:
Replacements:
# #seriesWidgetContainer reduce top/bottom margins of each entry
- {Find: "topMargin: 14px;", Replace: "topMargin: 5px;"} # Dragon
- {Find: "bottomMargin: 14px;", Replace: "bottomMargin: 0px;"} # Dragon
# #seriesCoverPack increase cover thumbnail
- {Find: "width: 108px;", Replace: "width: 141px;"} # Dragon
- {Find: "height: 175px;", Replace: "height: 200px;"} # Dragon
# all models #hBooks Move bookcount line up & away from horizontal gridline
- Find: "#hBooks {\n padding-left: 0px;\n padding-bottom: 0px;"
Replace: "#hBooks {\n padding-left: 0px;\n padding-bottom:20px;"
If the above patch truncates the thumbnail for the bottom Series entry on each page then also add this second test patch for nickel.yaml
Code:
test Reduce height of page navigator arrows:
- Enabled: no
- Description: Change page navigator footer height - booklist, serieslist
- FindZlib: "QWidget[footerFixedHeight=true][qApp_deviceIsTrilogy=true]"
- ReplaceZlibGroup:
Replacements:
# Dragon devices (AuraHD, H20, GloHD, ClaraHD)
- Find: "QWidget[footerFixedHeight=true][qApp_deviceIsDragon=true] {\n min-height: 120px;\n max-height: 120px;\n}"
Replace: "QWidget[footerFixedHeight=true][qApp_deviceIsDragon=true] {\n min-height: 90px;\n max-height: 90px;\n}"