Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Kobo Reader > Kobo Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 12-30-2025, 10:32 AM   #16
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 82,242
Karma: 150871427
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by LakesideMiners View Post
Apologizes if I am missing something obvious, but, should there be something more then just the nickel.yaml in the first post's attachment? Last time I downloaded it, it had a kobopatch.yaml and src and bin folder.
Check the first post for the correct file.
JSWolf is offline   Reply With Quote
Old 12-30-2025, 11:45 AM   #17
Phil_C
Addict
Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.
 
Phil_C's Avatar
 
Posts: 285
Karma: 391602
Join Date: Oct 2009
Location: Chicago, IL USA
Device: Sony PRS-350; Kobo Clara HD; Kobo Clara 2E; Kobo Clara BW
Quote:
Originally Posted by JSWolf View Post
Check the first post for the correct file.
For "Remove Line From Bottom Tab Bar" in libnickel line 980, the offset needs to be 866. This allows the patch to be created, but it has no effect on the Clara BW. The line remains on the home screen.

Not a big deal. Just FYI.

(Earlier Claras HD an 2E still use offset 326 -- and the patch works. The line is removed.)
Phil_C is offline   Reply With Quote
Advert
Old 12-30-2025, 02:01 PM   #18
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,310
Karma: 16800000
Join Date: Sep 2009
Location: UK
Device: ClaraHD, Forma, Libra2, Clara2E, LibraCol, PBTouchHD3
Quote:
Originally Posted by Phil_C View Post
For "Remove Line From Bottom Tab Bar" in libnickel line 980, the offset needs to be 866. This allows the patch to be created, but it has no effect on the Clara BW. The line remains on the home screen.

Not a big deal. Just FYI.

(Earlier Claras HD an 2E still use offset 326 -- and the patch works. The line is removed.)
It's not a patch I've ever used but I think you may be able to achieve this via a nickel.yaml CSS patch instead of the original patch from libnickel.so.1.0.0.yaml.

If you want to try it, add the following patch to nickel.yaml (or your customised version of it) and enable it. To avoid confusion you should probably also disable the one in libnickel.so.1.0.0.yaml.

Code:
Remove line from bottom tab bar via CSS:
  - Enabled: no
  - Description: Removes the line from the top of the bottom tab bar
  - FindZlib: "#activeTabLine" # qss/MainNavButton.qss
  - ReplaceZlibGroup:
      Replacements:
        - {Find: "border-top: 1px solid #666666;", Replace: "border-top: none"}
jackie_w is offline   Reply With Quote
Old 12-30-2025, 07:51 PM   #19
Phil_C
Addict
Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.
 
Phil_C's Avatar
 
Posts: 285
Karma: 391602
Join Date: Oct 2009
Location: Chicago, IL USA
Device: Sony PRS-350; Kobo Clara HD; Kobo Clara 2E; Kobo Clara BW
Quote:
Originally Posted by jackie_w View Post
It's not a patch I've ever used but I think you may be able to achieve this via a nickel.yaml CSS patch instead of the original patch from libnickel.so.1.0.0.yaml.

If you want to try it, add the following patch to nickel.yaml (or your customised version of it) and enable it. To avoid confusion you should probably also disable the one in libnickel.so.1.0.0.yaml.

Code:
Remove line from bottom tab bar via CSS:
  - Enabled: no
  - Description: Removes the line from the top of the bottom tab bar
  - FindZlib: "#activeTabLine" # qss/MainNavButton.qss
  - ReplaceZlibGroup:
      Replacements:
        - {Find: "border-top: 1px solid #666666;", Replace: "border-top: none"}
It works! One difference: There is a heavy line over the icon for the screen you are on -- Home, My Books, More. Not Nickel Menu. (I keep wi-fi off and do not use Discover.)

This is all good, as the bold highlight line over the currently in-use bold icon makes perfect sense. Not needed over Nickel Menu, since it's, well, just a pop-up menu.

Thanks @jackie_w. A genius solution, as usual!
Phil_C is offline   Reply With Quote
Old 12-31-2025, 10:37 AM   #20
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,310
Karma: 16800000
Join Date: Sep 2009
Location: UK
Device: ClaraHD, Forma, Libra2, Clara2E, LibraCol, PBTouchHD3
Quote:
Originally Posted by Phil_C View Post
It works! One difference: There is a heavy line over the icon for the screen you are on -- Home, My Books, More. Not Nickel Menu. (I keep wi-fi off and do not use Discover.)

This is all good, as the bold highlight line over the currently in-use bold icon makes perfect sense. Not needed over Nickel Menu, since it's, well, just a pop-up menu.
If you would prefer to also remove those thick highlight bars over the currently-active icon then I think a simple tweak of the custom patch in post #18 should do the trick. Change the last line:

From:
Code:
        - {Find: "border-top: 1px solid #666666;", Replace: "border-top: none"}
To:
Code:
        - {Find: "solid", Replace: "none"}
jackie_w is offline   Reply With Quote
Advert
Old 12-31-2025, 11:58 AM   #21
Phil_C
Addict
Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.Phil_C ought to be getting tired of karma fortunes by now.
 
Phil_C's Avatar
 
Posts: 285
Karma: 391602
Join Date: Oct 2009
Location: Chicago, IL USA
Device: Sony PRS-350; Kobo Clara HD; Kobo Clara 2E; Kobo Clara BW
Quote:
Originally Posted by jackie_w View Post
If you would prefer to also remove those thick highlight bars over the currently-active icon then I think a simple tweak of the custom patch in post #18 should do the trick. Change the last line:

From:
Code:
        - {Find: "border-top: 1px solid #666666;", Replace: "border-top: none"}
To:
Code:
        - {Find: "solid", Replace: "none"}
That works, too. Decisions, decisions...

Thanks!
Phil_C is offline   Reply With Quote
Old 01-01-2026, 06:39 PM   #22
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 82,242
Karma: 150871427
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by jackie_w View Post
It's not a patch I've ever used but I think you may be able to achieve this via a nickel.yaml CSS patch instead of the original patch from libnickel.so.1.0.0.yaml.

If you want to try it, add the following patch to nickel.yaml (or your customised version of it) and enable it. To avoid confusion you should probably also disable the one in libnickel.so.1.0.0.yaml.

Code:
Remove line from bottom tab bar via CSS:
  - Enabled: no
  - Description: Removes the line from the top of the bottom tab bar
  - FindZlib: "#activeTabLine" # qss/MainNavButton.qss
  - ReplaceZlibGroup:
      Replacements:
        - {Find: "border-top: 1px solid #666666;", Replace: "border-top: none"}
Thank you for the fix. I've fixed this in the ZIP and replaced it.

Remove line from bottom tab bar via CSS: now works.
JSWolf is offline   Reply With Quote
Old 01-31-2026, 12:39 PM   #23
Bookmonkey
Member
Bookmonkey began at the beginning.
 
Posts: 12
Karma: 10
Join Date: Mar 2011
Device: None
Up until i hit the latest forced firmware upgrade for Kobo Libra Color i was having success using the kobopatch 4.38.x with the latest firmware downloaded and manual editing the yaml to point to it. That isn't working now.

I found this thread and downloaded the zip in the first message, the appropriate firmware and ran the batch file (win10 64). The terminal fires up and immediately exits with nothing in the out folder - no tar and no log.

My only patch edits to the yaml are to say yes to larger covers in library and on Home Screen so I’m not using known non-working patches. I’m a bit lost since I’m not even getting a log file. How do I troubleshoot this? When I try to run the batch file in a 4.38.x version of kobopatch, with manual override to latest firmware, the terminal opens and appears to be applying the patches. However it exits prior to the end instead of where it used to say “waiting 60 seconds because it’s windows”. This is further than I get with the version of kobopatch from this thread where the terminal doesn’t even open long enough to show any messages.

I’d appreciate some guidance!
Bookmonkey is offline   Reply With Quote
Old 01-31-2026, 12:52 PM   #24
PeterT
Grand Sorcerer
PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.PeterT ought to be getting tired of karma fortunes by now.
 
Posts: 13,836
Karma: 80512176
Join Date: Nov 2007
Location: Toronto
Device: Libra H2O, Libra Colour
Maybe I'm old fashioned but I'd rather open a command prompt, change to the correct directory and launch the command from the command line. That way I've a much better chance of seeing any error message.

Sent from my TB350FU using Tapatalk
PeterT is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Unofficial Patches for 4.38.23555 JSWolf Kobo Developer's Corner 11 01-15-2026 04:16 PM
Unofficial Patches for 4.38.23552 JSWolf Kobo Developer's Corner 26 12-20-2025 08:02 PM
Unofficial Patches for 4.38.23429 JSWolf Kobo Developer's Corner 65 12-11-2025 07:30 AM
Unofficial Patches for 4.43.23418 JSWolf Kobo Developer's Corner 13 12-03-2025 10:47 PM
Unofficial Sigil patches varlog Sigil 8 11-12-2014 07:14 PM


All times are GMT -4. The time now is 04:17 PM.


MobileRead.com is a privately owned, operated and funded community.