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 07-06-2023, 03:26 PM   #946
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 45,184
Karma: 168808723
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by hatuluang View Post
File 1: unpatched
File 2: patched

hope it's work, thank you
You need to attach the image from your local machine using the Paperclip tool or the Manage Attachments button (see the third image). The user will see a thumbnail which they can click on to see the full image.
Attached Thumbnails
Click image for larger version

Name:	unpatched.png
Views:	137
Size:	264.2 KB
ID:	202490   Click image for larger version

Name:	patched.png
Views:	126
Size:	297.6 KB
ID:	202491   Click image for larger version

Name:	attachments.png
Views:	137
Size:	118.7 KB
ID:	202492  
DNSB is offline   Reply With Quote
Old 07-06-2023, 03:40 PM   #947
hatuluang
Teluk Biru
hatuluang ought to be getting tired of karma fortunes by now.hatuluang ought to be getting tired of karma fortunes by now.hatuluang ought to be getting tired of karma fortunes by now.hatuluang ought to be getting tired of karma fortunes by now.hatuluang ought to be getting tired of karma fortunes by now.hatuluang ought to be getting tired of karma fortunes by now.hatuluang ought to be getting tired of karma fortunes by now.hatuluang ought to be getting tired of karma fortunes by now.hatuluang ought to be getting tired of karma fortunes by now.hatuluang ought to be getting tired of karma fortunes by now.hatuluang ought to be getting tired of karma fortunes by now.
 
hatuluang's Avatar
 
Posts: 154
Karma: 348662
Join Date: Jan 2023
Device: Kobo Clara 2E
Quote:
Originally Posted by DNSB View Post
You need to attach the image from your local machine using the Paperclip tool or the Manage Attachments button (see the third image). The user will see a thumbnail which they can click on to see the full image.
thank you.
hatuluang is offline   Reply With Quote
Advert
Old 07-14-2023, 03:14 PM   #948
John F
Grand Sorcerer
John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.
 
Posts: 7,886
Karma: 70186493
Join Date: Feb 2009
Device: Kobo Clara 2E
Could someone help me out. I just got a Clara 2E and want to use the custom font sizes patch. I don't need the real small sizes, or the real big sizes. This is what I did:

Code:
Custom font sizes:
  - Enabled: yes
  - Description: |
      Changes the range of sizes on the font size slider so that there are more of
      the small sizes and fewer of the large sizes.
      With this patch enabled you will not be able to select the very large font
      sizes, but will be able to make finer adjustment to the smaller sizes.
  # Font sizes depend on the device's screen density. Unpatched, the sizes
  # increase in steps of 1 from the smallest size up to size 44, then in steps
  # of 2 up to size 68, then in steps of 4 up to the largest size:
  #
  #                     Touch/Mini:    8px -  90px  (39 steps)
  #          AuraHD/AuraH2O/Libra2:    8px - 150px  (54 steps)
  #                  GloHD/ClaraHD:   10px - 150px  (52 steps)
  #                       LibraH2O:   11px - 150px  (51 steps)
  #      AuraOne/Forma/Elipsa/Sage:   14px - 195px  (59 steps)
  #                   Aura/Glo/Nia:    8px - 122px  (47 steps)
  #
  # The example replacement values in this patch result in the following ranges,
  # with increases in steps of 1 from the smallest size up to size 44, then
  # steps of 2 up to size 68, then steps of 4 up to the largest size:
  #
  #                     Touch/Mini:    8px -  80px  (52 steps)
  #          AuraHD/AuraH2O/Libra2:    8px - 108px  (59 steps)
  #                  GloHD/ClaraHD:   10px - 108px  (57 steps)
  #                       LibraH2O:   11px - 108px  (56 steps)
  #      AuraOne/Forma/Elipsa/Sage:   14px - 132px  (59 steps)
  #                   Aura/Glo/Nia:    8px -  88px  (54 steps)
  #
  # Note (pgaskin): The device values can be determined with info from
  #    https://gist.github.com/pgaskin/613b...c50ee32f5e167e and
  #    the Device::is* calls.
  #
  # This patch was rewritten for 18220 by @shermp.
  #
  - BaseAddress: "N3FontTypeUtil::fontSizes()"
  # Initial font size:
  #- ReplaceInt: {Offset:  378, Find:   8, Replace:   8} # Other devices
  #- ReplaceInt: {Offset:  374, Find:  11, Replace:  11} # LibraH2O (storm)
  - ReplaceInt: {Offset:   36, Find:  10, Replace:  35} # GloHD/ClaraHD (alyssum nova)
  #- ReplaceInt: {Offset:  404, Find:  14, Replace:  14} # Forma/AuraOne/Sage/Elipsa (daylight)
  # Increment:
  - ReplaceInt: {Offset:  222, Find:  21, Replace:  73} # Add font sizes in increments of 1 until this size exceeded
  - ReplaceInt: {Offset:  228, Find:  22, Replace:  74} # Continue from this font size
  - ReplaceInt: {Offset:  250, Find:  49, Replace:  97} # Add font sizes in increments of 2 until this size exceeded
  - ReplaceInt: {Offset:  256, Find:  50, Replace:  98} # Continue from this font size
  # Now increment by +4 until final font size:
  #- ReplaceInt: {Offset:  420, Find:   90, Replace:   80} # Other devices
  #- ReplaceInt: {Offset:  422, Find:  150, Replace:   88} # Aura/Glo/Nia (phoenix)
  - ReplaceInt: {Offset:   48, Find:  150, Replace:  108} # LibraH2O/AuraHD/ClaraHD/GloHD/AuraH2O/Libra2 (dragon)
  #- ReplaceInt: {Offset:  400, Find:  195, Replace:  132} # Forma/AuraOne/Sage/Elipsa (daylight)
And it doesn't work: I get one or two smaller sizes at the beginning, and then it jumps to a large size.

I used this in the past for a Glo HD:

Code:
Custom font sizes:
  - Enabled: yes
  - Description: |
      Changes the range of sizes on the font size slider so that there are more of
      the small sizes and fewer of the large sizes.
      With this patch enabled you will not be able to select the very large font
      sizes, but will be able to make finer adjustment to the smaller sizes.
    # Font sizes depend on the device's screen resolution. Unpatched, the sizes
    # increase in steps of 1 from the smallest size up to size 22, then in steps
    # of 2 up to size 50, then in steps of 4 up to the largest size:
    #
    #  AuraOne/Forma: 18px - 194px (55 sizes)
    #  GloHD/ClaraHD: 14px - 150px (48 sizes)
    #  AuraHD/H2O:    12px - 150px (50 sizes)
    #  Glo/Aura:      12px - 122px (43 sizes)
    #  Touch/Mini:    12px - 90px  (35 sizes)
    #
    # The example replacement values in this patch result in the following ranges,
    # with increases in steps of 1 from the smallest size up to size 44, then
    # steps of 2 up to size 68, then steps of 4 up to the largest size:
    #
    #  AuraOne/Forma: 18px - 132px (55 sizes)
    #  GloHD/ClaraHD: 14px - 108px (53 sizes)
    #  AuraHD/H2O:    12px - 108px (55 sizes)
    #  Glo/Aura:      12px - 88px (50 sizes)
    #  Touch/Mini:    12px - 80px (48 sizes)
    #
    # Start with this font size: (AuraOne/Forma, GloHD/ClaraHD, Others)
#  - ReplaceInt: {Offset: 0x83BE56, Find: 18, Replace: 18}
  - ReplaceInt: {Offset: 0x83BD10, Find: 14, Replace: 35}
#  - ReplaceInt: {Offset: 0x83BE30, Find: 12, Replace: 12}
    #
  - ReplaceInt: {Offset: 0x83BD38, Find: 21, Replace: 73} # Add font sizes in increments of 1 until this size exceeded}
  - ReplaceInt: {Offset: 0x83BD3E, Find: 22, Replace: 74} # Continue from this font size}
  - ReplaceInt: {Offset: 0x83BD4E, Find: 49, Replace: 97} # Add font sizes in increments of 2 until this size exceeded}
  - ReplaceInt: {Offset: 0x83BD58, Find: 50, Replace: 98} # Continue from this font size}
    #
    # Add font sizes in increments of 4 until this size exceeded:
    # (AuraOne/Forma, AuraHD/H2O/GloHD/ClaraHD, Glo/Aura, Touch/Mini)
#  - ReplaceInt: {Offset: 0x83BE5A, Find: 195, Replace: 132}
  - ReplaceInt: {Offset: 0x83BD20, Find: 150, Replace: 108}
#  - ReplaceInt: {Offset: 0x83BE78, Find: 122, Replace: 88}
#  - ReplaceInt: {Offset: 0x83BE74, Find: 90,  Replace: 80}
Thank you for the help.
John F is offline   Reply With Quote
Old 07-14-2023, 08:51 PM   #949
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: 274
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 John F View Post
Could someone help me out. I just got a Clara 2E and want to use the custom font sizes patch. I don't need the real small sizes, or the real big sizes. This is what I did:


And it doesn't work: I get one or two smaller sizes at the beginning, and then it jumps to a large size.
I just tried some experimental values of my own (although I've been happy using the default patch for my Clara HD and 2E). Similar problem to yours. My starting value was 42. Maybe that value can't be too high? Dunno.
Phil_C is offline   Reply With Quote
Old 07-14-2023, 11:22 PM   #950
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: 274
Karma: 391602
Join Date: Oct 2009
Location: Chicago, IL USA
Device: Sony PRS-350; Kobo Clara HD; Kobo Clara 2E; Kobo Clara BW
I adjusted the replacement values for the Claras to 10,43,44,87,88,108. Yes, I left the lower numbers as default, but adjusted the rest to give me finer control over the range of font sizes I might use. Works perfectly. I don't need the many tiny sizes, but can just ignore them.
Phil_C is offline   Reply With Quote
Advert
Old 07-15-2023, 08:04 AM   #951
John F
Grand Sorcerer
John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.
 
Posts: 7,886
Karma: 70186493
Join Date: Feb 2009
Device: Kobo Clara 2E
Thank you Phil_C. Your suggestion led me to use these values:

Code:
 # Initial font size:
  #- ReplaceInt: {Offset:  378, Find:   8, Replace:   8} # Other devices
  #- ReplaceInt: {Offset:  374, Find:  11, Replace:  11} # LibraH2O (storm)
  - ReplaceInt: {Offset:   36, Find:  10, Replace:  10} # GloHD/ClaraHD (alyssum nova)
  #- ReplaceInt: {Offset:  404, Find:  14, Replace:  14} # Forma/AuraOne/Sage/Elipsa (daylight)
  # Increment:
  - ReplaceInt: {Offset:  222, Find:  21, Replace:  108} # Add font sizes in increments of 1 until this size exceeded
  - ReplaceInt: {Offset:  228, Find:  22, Replace:  110} # Continue from this font size
  - ReplaceInt: {Offset:  250, Find:  49, Replace:  108} # Add font sizes in increments of 2 until this size exceeded
  - ReplaceInt: {Offset:  256, Find:  50, Replace:  110} # Continue from this font size
  # Now increment by +4 until final font size:
  #- ReplaceInt: {Offset:  420, Find:   90, Replace:   80} # Other devices
  #- ReplaceInt: {Offset:  422, Find:  150, Replace:   88} # Aura/Glo/Nia (phoenix)
  - ReplaceInt: {Offset:   48, Find:  150, Replace:  150} # LibraH2O/AuraHD/ClaraHD/GloHD/AuraH2O/Libra2 (dragon)
  #- ReplaceInt: {Offset:  400, Find:  195, Replace:  132} # Forma/AuraOne/Sage/Elipsa (daylight)
I still get a bunch of too small font sizes, but I now get more mid size choices.
John F is offline   Reply With Quote
Old 07-15-2023, 10:18 AM   #952
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: 274
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 John F View Post
I still get a bunch of too small font sizes, but I now get more mid size choices.
Wow! So you have 98 increments of 1. The font size slider must hardly move at all when you press the left or right arrows. I wondered if there was a limit to the total number of steps. But since it works for you, I may try similar numbers. I like more choices in the 56-76 range, which this would give me.
Phil_C is offline   Reply With Quote
Old 07-15-2023, 11:48 AM   #953
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: 274
Karma: 391602
Join Date: Oct 2009
Location: Chicago, IL USA
Device: Sony PRS-350; Kobo Clara HD; Kobo Clara 2E; Kobo Clara BW
After some final experimentation, I found that the starting size of 10 can be replaced with 20. I did not try 21, but 22 did not work. Anyway, a few more tiny sizes can be eliminated this way.

My final numbers for the Clara HD and Clara 2E are 20,81,82,95,96,108. In case anyone is interested.
Phil_C is offline   Reply With Quote
Old 07-15-2023, 12:48 PM   #954
Ned
Ebook reader
Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.
 
Ned's Avatar
 
Posts: 389
Karma: 5899335
Join Date: Oct 2008
Location: York, England
Device: Kobo Aura H2O (ed 2, v1), Kobo Forma, Kobo Libra 2
I wonder if it would be possible for the Kobo dropdown list of three books (swipe down from top while reading) which was recently introduced to be increased to a more useful (to me) figure of say ten books?
Apart from the fact that recently added books go straight on the list and wipe off what I was really reading, it doesn't tale much darting about in my library to render the three not very useful
Ned is offline   Reply With Quote
Old 07-16-2023, 12:33 AM   #955
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 45,184
Karma: 168808723
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by Ned View Post
I wonder if it would be possible for the Kobo dropdown list of three books (swipe down from top while reading) which was recently introduced to be increased to a more useful (to me) figure of say ten books?
Apart from the fact that recently added books go straight on the list and wipe off what I was really reading, it doesn't tale much darting about in my library to render the three not very useful
Considering the amount of the screen used by 3 books, 6 books would fill the entire screen. Perhaps going to the Books screen with a filter of reading would be more useful for your purposes.
DNSB is offline   Reply With Quote
Old 07-16-2023, 03:37 AM   #956
Ned
Ebook reader
Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.
 
Ned's Avatar
 
Posts: 389
Karma: 5899335
Join Date: Oct 2008
Location: York, England
Device: Kobo Aura H2O (ed 2, v1), Kobo Forma, Kobo Libra 2
Quote:
Originally Posted by DNSB View Post
Considering the amount of the screen used by 3 books, 6 books would fill the entire screen. Perhaps going to the Books screen with a filter of reading would be more useful for your purposes.
Thank you, an ill-considered request.
Ned is offline   Reply With Quote
Old 07-16-2023, 12:28 PM   #957
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 45,184
Karma: 168808723
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Libra Colour, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by Ned View Post
Thank you, an ill-considered request.
I would have liked more items in the list as well but that way the books are displayed pretty much precludes that. Now if Kobo filtered the dropdown list to reading, it would be more useful.
DNSB is offline   Reply With Quote
Old 07-19-2023, 07:23 AM   #958
Ned
Ebook reader
Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.Ned ought to be getting tired of karma fortunes by now.
 
Ned's Avatar
 
Posts: 389
Karma: 5899335
Join Date: Oct 2008
Location: York, England
Device: Kobo Aura H2O (ed 2, v1), Kobo Forma, Kobo Libra 2
Quote:
Originally Posted by DNSB View Post
Perhaps going to the Books screen with a filter of reading would be more useful for your purposes.
Btw, I hadn't even noticed that filter, which as you point out does exactly what I wanted. Thank you
Ned is offline   Reply With Quote
Old 08-15-2023, 02:06 PM   #959
John F
Grand Sorcerer
John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.
 
Posts: 7,886
Karma: 70186493
Join Date: Feb 2009
Device: Kobo Clara 2E
Downloaded authors only

In My Books, in the Authors tab, could we please have a patch to only show authors for downloaded books?

Thank you
John F is offline   Reply With Quote
Old 08-15-2023, 02:09 PM   #960
John F
Grand Sorcerer
John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.John F ought to be getting tired of karma fortunes by now.
 
Posts: 7,886
Karma: 70186493
Join Date: Feb 2009
Device: Kobo Clara 2E
In My Books, In the Series tab, can we have a patch to only show Series for downloaded books?

Thank you.
John F is offline   Reply With Quote
Reply

Tags
kobopatch, patches, patching, request, requests


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Request for PW3 kernel [posted in another thread] mustdie Kindle Developer's Corner 5 10-21-2015 04:28 PM
Kobobooks.com future feature request thread Mrs_Often Kobo Reader 47 11-08-2012 11:59 AM
[Old Thread] Calibre 'feature request' thread Waba Calibre 2 02-10-2010 07:52 PM
Feature request thread? Dahak Calibre 1 08-02-2009 12:51 AM
3rd party software request thread Adam B. iRex 23 11-28-2008 01:08 PM


All times are GMT -4. The time now is 02:24 PM.


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