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 09-29-2019, 03:20 PM   #151
Michal Jancik
Sorry for my English
Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.Michal Jancik ought to be getting tired of karma fortunes by now.
 
Michal Jancik's Avatar
 
Posts: 419
Karma: 3003406
Join Date: Aug 2018
Location: France/Besancon 25000
Device: KOBO H2O,Inkpad 4,ONYX Leaf 2
Hi !
First and foremost, as always very very good work.

1) How to change the sharpness of the system font / book. (with sharpness i mean Antialiasing & blurry -> "OFF")
2) Is it possible to change or set the depth of black?

- I would like to do this on my "Kobo Libra H2O" device, where i would like to have an emphasize on the "depth of the black" and "cleaning a font".

Thanks .

Last edited by Michal Jancik; 09-29-2019 at 05:07 PM.
Michal Jancik is offline   Reply With Quote
Old 09-29-2019, 04:17 PM   #152
Semwize
Guru
Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.Semwize ought to be getting tired of karma fortunes by now.
 
Posts: 873
Karma: 252902
Join Date: Jun 2016
Device: Kobo
Quote:
Originally Posted by MGlitch View Post
- Custom font sizes
try

Spoiler:
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: 0x886A8C, Find: 18, Replace: 18}
  - ReplaceInt: {Offset: 0x886938, Find: 14, Replace: 14}
  - ReplaceInt: {Offset: 0x886A74, Find: 12, Replace: 12}
    #
  - ReplaceInt: {Offset: 0x886960, Find: 21, Replace: 43} # Add font sizes in increments of 1 until this size exceeded}
  - ReplaceInt: {Offset: 0x886966, Find: 22, Replace: 44} # Continue from this font size}
  - ReplaceInt: {Offset: 0x886976, Find: 49, Replace: 67} # Add font sizes in increments of 2 until this size exceeded}
  - ReplaceInt: {Offset: 0x886980, Find: 50, Replace: 68} # 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: 0x886A90, Find: 195, Replace: 132}
  - ReplaceInt: {Offset: 0x886948, Find: 150, Replace: 108}
  - ReplaceInt: {Offset: 0x886AAE, Find: 122, Replace: 88}
  - ReplaceInt: {Offset: 0x886AAA, Find: 90,  Replace: 80}

Last edited by Semwize; 09-29-2019 at 05:05 PM.
Semwize is offline   Reply With Quote
Advert
Old 09-29-2019, 05:01 PM   #153
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: 73,987
Karma: 128903378
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 Semwize View Post
try
You need to edit the post and repaste the patch and put it in a code block. You've lost the formatting and thus, it won't work as is.
JSWolf is offline   Reply With Quote
Old 09-30-2019, 12:17 AM   #154
MGlitch
Wizard
MGlitch ought to be getting tired of karma fortunes by now.MGlitch ought to be getting tired of karma fortunes by now.MGlitch ought to be getting tired of karma fortunes by now.MGlitch ought to be getting tired of karma fortunes by now.MGlitch ought to be getting tired of karma fortunes by now.MGlitch ought to be getting tired of karma fortunes by now.MGlitch ought to be getting tired of karma fortunes by now.MGlitch ought to be getting tired of karma fortunes by now.MGlitch ought to be getting tired of karma fortunes by now.MGlitch ought to be getting tired of karma fortunes by now.MGlitch ought to be getting tired of karma fortunes by now.
 
Posts: 2,841
Karma: 22003124
Join Date: Aug 2014
Device: Kobo Forma, Kobo Sage, Kobo Libra 2
Quote:
Originally Posted by Semwize View Post
try

Spoiler:
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: 0x886A8C, Find: 18, Replace: 18}
  - ReplaceInt: {Offset: 0x886938, Find: 14, Replace: 14}
  - ReplaceInt: {Offset: 0x886A74, Find: 12, Replace: 12}
    #
  - ReplaceInt: {Offset: 0x886960, Find: 21, Replace: 43} # Add font sizes in increments of 1 until this size exceeded}
  - ReplaceInt: {Offset: 0x886966, Find: 22, Replace: 44} # Continue from this font size}
  - ReplaceInt: {Offset: 0x886976, Find: 49, Replace: 67} # Add font sizes in increments of 2 until this size exceeded}
  - ReplaceInt: {Offset: 0x886980, Find: 50, Replace: 68} # 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: 0x886A90, Find: 195, Replace: 132}
  - ReplaceInt: {Offset: 0x886948, Find: 150, Replace: 108}
  - ReplaceInt: {Offset: 0x886AAE, Find: 122, Replace: 88}
  - ReplaceInt: {Offset: 0x886AAA, Find: 90,  Replace: 80}
This seems to have worked, thanks for sharing it
MGlitch is offline   Reply With Quote
Old 09-30-2019, 01:39 AM   #155
traycold
Connoisseur
traycold doesn't littertraycold doesn't litter
 
Posts: 63
Karma: 196
Join Date: Oct 2010
Device: Kobo Glo Hd, Kobo H2O2
Quote:
Originally Posted by geek1011 View Post
And traycold, here's your patch (you can customize it here):
thank you very much! apparently it worked.
Apparentrly, because: it didn't cause any crash; the new values are shown correctly in the power-setting window; and setting the 4-days value didn't cause the reader do power-off after 4 hours i.e. the default value corresponding to the custom value; but actually didn't test the actual power-off after 4 days, since this period I normally use the reader almost any day
Anyway, no doubt it will work!
traycold is offline   Reply With Quote
Advert
Old 09-30-2019, 07:45 AM   #156
geek1011
Wizard
geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.
 
Posts: 2,735
Karma: 6990705
Join Date: May 2016
Location: Ontario, Canada
Device: Kobo Mini, Aura Edition 2 v1, Clara HD
Quote:
Originally Posted by MGlitch View Post
This seems to have worked, thanks for sharing it
Yes. Upon a first glance, it's correct, but it's still missing the Libra values.
geek1011 is offline   Reply With Quote
Old 09-30-2019, 08:14 AM   #157
dmapr
Evangelist
dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.
 
Posts: 469
Karma: 600816
Join Date: Sep 2009
Device: Kobo Aura HD, Kobo Aura One
I haven't noticed this until now, does anyone know why these replacements are needed (replacing a value with the same value)?

Code:
  - ReplaceInt: {Offset: 0x886A8C, Find: 18, Replace: 18}
  - ReplaceInt: {Offset: 0x886938, Find: 14, Replace: 14}
  - ReplaceInt: {Offset: 0x886A74, Find: 12, Replace: 12}
dmapr is offline   Reply With Quote
Old 09-30-2019, 08:57 AM   #158
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: 73,987
Karma: 128903378
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 dmapr View Post
I haven't noticed this until now, does anyone know why these replacements are needed (replacing a value with the same value)?

Code:
  - ReplaceInt: {Offset: 0x886A8C, Find: 18, Replace: 18}
  - ReplaceInt: {Offset: 0x886938, Find: 14, Replace: 14}
  - ReplaceInt: {Offset: 0x886A74, Find: 12, Replace: 12}
Which patch is it? Some patches do it that way because it's up to you to customize the values.
JSWolf is offline   Reply With Quote
Old 09-30-2019, 10:19 PM   #159
dmapr
Evangelist
dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.dmapr ought to be getting tired of karma fortunes by now.
 
Posts: 469
Karma: 600816
Join Date: Sep 2009
Device: Kobo Aura HD, Kobo Aura One
Quote:
Originally Posted by JSWolf View Post
Which patch is it? Some patches do it that way because it's up to you to customize the values.
Custom font values posted above. So I bet you're right. I guess I would have expected these "placeholder values" to be in the comments. Thanks!
dmapr is offline   Reply With Quote
Old 10-01-2019, 09:25 AM   #160
David0226
Member
David0226 is clearly one to watchDavid0226 is clearly one to watchDavid0226 is clearly one to watchDavid0226 is clearly one to watchDavid0226 is clearly one to watchDavid0226 is clearly one to watchDavid0226 is clearly one to watchDavid0226 is clearly one to watchDavid0226 is clearly one to watchDavid0226 is clearly one to watchDavid0226 is clearly one to watch
 
Posts: 18
Karma: 10992
Join Date: Oct 2012
Device: Nook Simple Touch, Nook Glowlight Plus, Kobo Aura One
A big THANK YOU to all who did the significant work re-writing patches for this release.

I do have one question. On geek1011's new interactive demo page, there is a "Don't uppercase header/footer text" setting I would like to implement, but I can't find that patch in any of the files. Is it part of a patch named differently?
David0226 is offline   Reply With Quote
Old 10-01-2019, 09:30 AM   #161
geek1011
Wizard
geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.geek1011 ought to be getting tired of karma fortunes by now.
 
Posts: 2,735
Karma: 6990705
Join Date: May 2016
Location: Ontario, Canada
Device: Kobo Mini, Aura Edition 2 v1, Clara HD
Quote:
Originally Posted by David0226 View Post
A big THANK YOU to all who did the significant work re-writing patches for this release.

I do have one question. On geek1011's new interactive demo page, there is a "Don't uppercase header/footer text" setting I would like to implement, but I can't find that patch in any of the files. Is it part of a patch named differently?
Yes, that's a new patch which will be released tonight.
geek1011 is offline   Reply With Quote
Old 10-01-2019, 10:44 AM   #162
droopy
Guru
droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.
 
Posts: 833
Karma: 2912460
Join Date: Apr 2009
Device: Kobo Forma
Don't uppercase header/footer text

In https://pgaskin.net/kobopatch-patche...tch-13651.html,
there's a patch for
Code:
Don't uppercase header/footer text
Which yaml file in the /src/ folder is that line of code in? I checked libnickel, nickel, librmsdk, and keyword-searched uppercase, but couldn't find the relevant line.
droopy is offline   Reply With Quote
Old 10-01-2019, 11:17 AM   #163
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: 73,987
Karma: 128903378
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Don't bother patching 4.17.13694. 4.18.13737 has been released and the patches for that will be released tonight (geek1011's tonight). So wait. Then you can install 4.18.13737 and then patch instead of bothering with 4.17.13694 and having to do it all over again for 4.18.13737.
JSWolf is offline   Reply With Quote
Old 10-01-2019, 12:58 PM   #164
droopy
Guru
droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.droopy ought to be getting tired of karma fortunes by now.
 
Posts: 833
Karma: 2912460
Join Date: Apr 2009
Device: Kobo Forma
Quote:
Originally Posted by JSWolf View Post
Don't bother patching 4.17.13694. 4.18.13737 has been released and the patches for that will be released tonight (geek1011's tonight). So wait. Then you can install 4.18.13737 and then patch instead of bothering with 4.17.13694 and having to do it all over again for 4.18.13737.
Thanks for letting me know. Didn't realize a new firmware (4.18) was out. Love getting new firmware. It makes me feel like my device is getting better.
droopy is offline   Reply With Quote
Old 10-01-2019, 02:59 PM   #165
IanScuffling
Enthusiast
IanScuffling began at the beginning.
 
Posts: 43
Karma: 10
Join Date: Mar 2019
Location: Washington DC
Device: Kobo Aura HD
Yep

Quote:
Originally Posted by droopy View Post
Thanks for letting me know. Didn't realize a new firmware (4.18) was out. Love getting new firmware. It makes me feel like my device is getting better.
Yes, the good old placebo effect!
IanScuffling is offline   Reply With Quote
Reply

Tags
kobopatch, patch, patch32lsb, patches, patching


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Instructions for patching firmware 3.18.0 GeoffR Kobo Developer's Corner 151 10-21-2016 06:15 AM
Instructions for patching firmware 3.11.0 GeoffR Kobo Developer's Corner 226 06-01-2015 05:32 AM
Instructions for patching firmware 3.12.1 GeoffR Kobo Developer's Corner 56 03-20-2015 05:14 AM
Instructions for patching firmware 3.3.x, 3.4.x, 3.5.x GeoffR Kobo Developer's Corner 285 08-27-2014 10:06 AM
Instructions for patching firmware 3.1.1 GeoffR Kobo Developer's Corner 64 04-18-2014 01:23 PM


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


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