View Single Post
Old 03-04-2020, 06:37 PM   #470
jackie_w
Grand Sorcerer
jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.jackie_w ought to be getting tired of karma fortunes by now.
 
Posts: 6,257
Karma: 16544692
Join Date: Sep 2009
Location: UK
Device: ClaraHD, Forma, Libra2, Clara2E, LibraCol, PBTouchHD3
Quote:
Originally Posted by rtiangha View Post
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}"

Last edited by jackie_w; 03-04-2020 at 06:39 PM.
jackie_w is offline   Reply With Quote