Register Guidelines E-Books Search Today's Posts Mark Forums Read

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

Notices

Reply
 
Thread Tools Search this Thread
Old 10-02-2019, 04:37 PM   #31
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 marshap View Post
Custom font sizes
I have tried to add the custom font sizes patch by copying from an earlier patch and pasting into the libnickel.co.1.0.0.yaml file in this patch but it doesn't work. Doesn't seem like GeoffR is updating this patch, so does anyone know how to add this patch?
try

Spoiler:
Code:
Custom font sizes:
  - Enabled: no
  - 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: 0x90D66C, Find: 18, Replace: 18}
  - ReplaceInt: {Offset: 0x90D518, Find: 14, Replace: 14}
  - ReplaceInt: {Offset: 0x90D654, Find: 12, Replace: 12}
    #
  - ReplaceInt: {Offset: 0x90D540, Find: 21, Replace: 43} # Add font sizes in increments of 1 until this size exceeded}
  - ReplaceInt: {Offset: 0x90D546, Find: 22, Replace: 44} # Continue from this font size}
  - ReplaceInt: {Offset: 0x90D556, Find: 49, Replace: 67} # Add font sizes in increments of 2 until this size exceeded}
  - ReplaceInt: {Offset: 0x90D560, 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: 0x90D670, Find: 195, Replace: 132}
  - ReplaceInt: {Offset: 0x90D528, Find: 150, Replace: 108}
  - ReplaceInt: {Offset: 0x90D68E, Find: 122, Replace: 88}
  - ReplaceInt: {Offset: 0x90D68A, Find: 90,  Replace: 80}
Semwize is offline   Reply With Quote
Old 10-02-2019, 04:42 PM   #32
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,171
Karma: 16228536
Join Date: Sep 2009
Location: UK
Device: Kobo: KA1, ClaraHD, Forma, Libra2, Clara2E. PocketBook: TouchHD3
Quote:
Originally Posted by marshap View Post
Custom font sizes
I have tried to add the custom font sizes patch by copying from an earlier patch and pasting into the libnickel.co.1.0.0.yaml file in this patch but it doesn't work. Doesn't seem like GeoffR is updating this patch, so does anyone know how to add this patch?
You cannot copy patch Custom font sizes from one firmware to the next, it has to be newly calculated every time.

In GeoffR's absence geek1011 is the only one who can confirm (or not) the likely future of this patch.

ETA: It seems Semwize has something you can try but I believe the stuff for LibraH20 users is still missing. I don't know whether Semwize could add that?

Last edited by jackie_w; 10-02-2019 at 04:47 PM. Reason: ETA
jackie_w is offline   Reply With Quote
Advert
Old 10-02-2019, 04:53 PM   #33
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 jackie_w View Post
stuff for LibraH20
Here need Geoffr or geek1011

Last edited by Semwize; 10-02-2019 at 04:55 PM.
Semwize is offline   Reply With Quote
Old 10-02-2019, 04:57 PM   #34
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,171
Karma: 16228536
Join Date: Sep 2009
Location: UK
Device: Kobo: KA1, ClaraHD, Forma, Libra2, Clara2E. PocketBook: TouchHD3
Quote:
Originally Posted by Semwize View Post
Here need Geoffr's or geek1011
Oh, well, it was worth asking.
jackie_w is offline   Reply With Quote
Old 10-02-2019, 05:25 PM   #35
marshap
Enthusiast
marshap began at the beginning.
 
Posts: 26
Karma: 10
Join Date: Apr 2012
Device: Libra 2
Quote:
Originally Posted by Semwize View Post
try

Spoiler:
Code:
Custom font sizes:
  - Enabled: no
  - 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: 0x90D66C, Find: 18, Replace: 18}
  - ReplaceInt: {Offset: 0x90D518, Find: 14, Replace: 14}
  - ReplaceInt: {Offset: 0x90D654, Find: 12, Replace: 12}
    #
  - ReplaceInt: {Offset: 0x90D540, Find: 21, Replace: 43} # Add font sizes in increments of 1 until this size exceeded}
  - ReplaceInt: {Offset: 0x90D546, Find: 22, Replace: 44} # Continue from this font size}
  - ReplaceInt: {Offset: 0x90D556, Find: 49, Replace: 67} # Add font sizes in increments of 2 until this size exceeded}
  - ReplaceInt: {Offset: 0x90D560, 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: 0x90D670, Find: 195, Replace: 132}
  - ReplaceInt: {Offset: 0x90D528, Find: 150, Replace: 108}
  - ReplaceInt: {Offset: 0x90D68E, Find: 122, Replace: 88}
  - ReplaceInt: {Offset: 0x90D68A, Find: 90,  Replace: 80}
Semwize, I think you did it! At least for an H2O2 it produces the KoboRoot file. I haven't yet fully tried it on the H2O2 but I expect it will work great. Thank you.
marshap is offline   Reply With Quote
Advert
Old 10-02-2019, 06:06 PM   #36
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: 34,535
Karma: 144552660
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Forma, Clara HD, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by JSWolf View Post
The first patch sets the font size scale the same.And ePub is tiny like you get in kepub when you come from ePub.

The second makes them both larger then tiny, but in ePub it's smaller then normal. If I can get the value for ePub, then kepub will be better.
Hmmm... if you use the font size slider to increase the font size, it should be sticky so going forward, both epub and kepub would still be the same.
DNSB is online now   Reply With Quote
Old 10-02-2019, 06:16 PM   #37
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,654
Karma: 127838196
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 DNSB View Post
Hmmm... if you use the font size slider to increase the font size, it should be sticky so going forward, both epub and kepub would still be the same.
The thing is, I don't want to up the slider. I want to make the scale as close to what ePub uses by default as close as possible. I need to know if I have to increase or decrease the number to try to do that.
JSWolf is offline   Reply With Quote
Old 10-02-2019, 06:31 PM   #38
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,839
Karma: 22003124
Join Date: Aug 2014
Device: Kobo Forma, Kobo Sage, Kobo Libra 2
Quote:
Originally Posted by JSWolf View Post
The thing is, I don't want to up the slider. I want to make the scale as close to what ePub uses by default as close as possible. I need to know if I have to increase or decrease the number to try to do that.
It takes minutes at most to change this out on your own Jon. There are 15 variations one of which you already eliminated. It’s been hours since you asked the question. Testing out different scales is harmless. You’d know your answer by now if you just try using those variables yourself.
MGlitch is offline   Reply With Quote
Old 10-02-2019, 07:24 PM   #39
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,700
Karma: 6254413
Join Date: May 2016
Location: Ontario, Canada
Device: Kobo Mini, Aura Edition 2 v1, Clara HD
Quote:
Originally Posted by jackie_w View Post
Oh, well, it was worth asking.
Yes, and I'll update it after I take a break for a week or two.
geek1011 is offline   Reply With Quote
Old 10-02-2019, 07:57 PM   #40
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,654
Karma: 127838196
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 geek1011 View Post
Yes, and I'll update it after I take a break for a week or two.
Hopefully no new firmware in that break time.
JSWolf is offline   Reply With Quote
Old 10-03-2019, 12:04 AM   #41
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: 34,535
Karma: 144552660
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Forma, Clara HD, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by JSWolf View Post
The thing is, I don't want to up the slider. I want to make the scale as close to what ePub uses by default as close as possible. I need to know if I have to increase or decrease the number to try to do that.
Be an experimentalist, Jon. There are 15 values and you have already eliminated 2 (8 and 14). Try the other 14 which should take about 3 minutes each since you can be generating the next patch file as one is installing.

Please report the results here.
DNSB is online now   Reply With Quote
Old 10-03-2019, 06:52 AM   #42
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,654
Karma: 127838196
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
To fix the two patches for adjust the font scale so ePub and kepub are the same heres what to do...

1. Set ePub uniform font scale: to yes
2. Set Set font scale factor: to yes
3. In Set font scale factor: set the ePub replace value to 4 and set the KePub replace value to 14.
Code:
Set font scale factor:
  - Enabled: yes
  - Description: |
      This patch sets the font scale factor for ePub and KePub readers.
      See also `ePub uniform font scale` and `Custom font sizes` patches.
  # Font scale factor is calculated as (font size slider) / (X+32)
  # Original value X=14, so original scale factor is (font size slider) / 46.
  # Allowed replacement values for X: 0-15 (smaller X --> larger scale factor)
  - ReplaceInt: {Offset: 0x52767A, Find: 14, Replace: 4} # ePub
  - ReplaceInt: {Offset: 0xAE037C, Find: 14, Replace: 4} # KePub
Values of 4 and 4 keeps the scale matching what's used with ePub. So that will improve kepub as well and it will allow kepub to have some larger font sizes should that be needed.

If you also use the patch KePub stylesheet additions:, do not use Example 4: Make KePub font sizes match ePub font sizes: ePubs render with 1.5 times the font size of KePubs by default. With this enabled they match as it will throw off the font sizes.

@Geek1011, can you please change the scale values from 8 to 4? Thanks.

Last edited by JSWolf; 10-06-2019 at 03:31 PM.
JSWolf is offline   Reply With Quote
Old 10-03-2019, 07:41 AM   #43
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,700
Karma: 6254413
Join Date: May 2016
Location: Ontario, Canada
Device: Kobo Mini, Aura Edition 2 v1, Clara HD
Quote:
Originally Posted by JSWolf View Post
To fix the two patches for adjust the font scale so ePub and kepub are the same heres what to do...

1. Set ePub uniform font scale: to yes
2. Set Set font scale factor: to yes
3. In Set font scale factor: set the two replace values to 4.
Code:
Set font scale factor:
  - Enabled: yes
  - Description: |
      This patch sets the font scale factor for ePub and KePub readers.
      See also `ePub uniform font scale` and `Custom font sizes` patches.
  # Font scale factor is calculated as (font size slider) / (X+32)
  # Original value X=14, so original scale factor is (font size slider) / 46.
  # Allowed replacement values for X: 0-15 (smaller X --> larger scale factor)
  - ReplaceInt: {Offset: 0x52767A, Find: 14, Replace: 4} # ePub
  - ReplaceInt: {Offset: 0xAE037C, Find: 14, Replace: 4} # KePub
A value of 4 keeps the scale matching what's used with ePub. So that will improve kepub as well and it will allow kepub to have some larger font sizes should that be needed.

@Geek1011, can you please change the scale values from 8 to 4? Thanks.
Thanks for testing! Can you send me the kepub and epub books used for testing so I can ensure they are proper? If so, I'll update the values. The thing is, some epubs modify the base font size, which messes up the whole font scaling thing.

P.S. I was just thinking about the long feedback loop when testing libnickel patches, so I've decided to look at options for speeding the process up. I might try (after I take a break) something with live-patching the binary using ptrace (something like https://github.com/darx0r/poke), but I haven't ever tried this sort of thing before, so I don't know how feasible it'll be. It partly depends on how much funny stuff Qt does and how new the kernel is. Note that this won't work for CSS patches, although I've been doing some experiments with that recently. No guarantees this will work, though. This paper looks interesting: https://www.kernel.org/doc/ols/2008/...es-245-254.pdf.

Last edited by geek1011; 10-03-2019 at 07:55 AM.
geek1011 is offline   Reply With Quote
Old 10-03-2019, 07:47 AM   #44
tammmy
Junior Member
tammmy began at the beginning.
 
Posts: 2
Karma: 10
Join Date: Oct 2019
Device: Kobo H2O(2014)
Smile patch which Replaces keys on the Extended Latin keypad with Bulgarian alternatives

Hi
I'm new and sorry if this is not the right place but I want to ask
is there a patch which Replaces keys on the Extended Latin keypad with Bulgarian alternatives for firmware 4.18.13737.
tammmy is offline   Reply With Quote
Old 10-03-2019, 08:00 AM   #45
Svens
Enthusiast
Svens began at the beginning.
 
Svens's Avatar
 
Posts: 39
Karma: 10
Join Date: Apr 2019
Device: Кіndlе5,NGL,PB650, KPW3,KPW4,KPW5, Kobo Aura One
Can the "Cyrillic Keyboard (GloHD / ClaraHD / AuraOne / H2O2)" patch from 4.15.12920 be applied without modification to 4.18.13737?
Thanks!

Last edited by Svens; 10-03-2019 at 08:05 AM.
Svens is offline   Reply With Quote
Reply

Tags
kobopatch, patch, patch32lsb, patches, patching

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Instructions for patching firmware 3.13.1 GeoffR Kobo Developer's Corner 56 07-01-2016 09:59 AM
Instructions for patching firmware 3.15.0 GeoffR Kobo Developer's Corner 146 05-24-2016 06:10 AM
Instructions for patching firmware 3.16.10 GeoffR Kobo Developer's Corner 12 08-14-2015 03:40 AM
Instructions for patching firmware 3.2.0 DNSB Kobo Developer's Corner 66 12-05-2014 07:28 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


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


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