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 05-03-2015, 09:31 AM   #46
cramoisi
Librarian
cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.
 
Posts: 346
Karma: 72225
Join Date: Apr 2015
Location: Liège - Belgium
Device: kobo gloHD - KA1
Hi !

About the "My 15 line spacing values"

Quote:
# Note that the kepub reader can have problems when the line spacing value is
# below about 0.85 (depending on the font family), resulting in the top line of
# text being cut off and the cut-off part showing at the bottom of the previous
I never noticed an issue but applied the patch anyway. Then i noticed this issue, but only after applied the patch, for all line-spacing slider positions before 50%. So i disabled this patch. Is anything I've done wrong ?
cramoisi is offline   Reply With Quote
Old 05-03-2015, 12:20 PM   #47
GeoffR
Wizard
GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.
 
GeoffR's Avatar
 
Posts: 3,821
Karma: 19162882
Join Date: Nov 2012
Location: Te Riu-a-Māui
Device: Kobo Glo
Quote:
Originally Posted by cramoisi View Post
About the "My 15 line spacing values"

Quote:
Quote:
# Note that the kepub reader can have problems when the line spacing value is
# below about 0.85 (depending on the font family), resulting in the top line of
# text being cut off and the cut-off part showing at the bottom of the previous

I never noticed an issue but applied the patch anyway. Then i noticed this issue, but only after applied the patch, for all line-spacing slider positions before 50%. So i disabled this patch. Is anything I've done wrong ?
No problem, that is expected. The reason there isn't a problem without the patch is that without the patch the minimum line spacing is 1.0.

If you read epubs then you can use any line spacing value without a problem, but if you only read kepubs then you might want to change the replacement values in the patch to avoid the smaller ones that cause problems for the kepub reader. Which minimum value to choose will depend a bit on the font you use.

For example if you use the Kobo Nickel font, which has an extremely wide line spacing, then you might use a value of 0.75 without problem. If you use Georgia then you might have problems with values smaller than 0.85.

Here is a set of more conservative replacement values that should avoid problems with most fonts in kepubs:
Code:
# 15 values for replacement:
replace_float = 604A48, 1.0, 0.9
replace_float = 604B10, 1.05, 0.92
replace_float = 604B18, 1.07, 0.94
replace_float = 604B20, 1.1, 0.96
replace_float = 604A50, 1.2, 0.98
replace_float = 604B28, 1.35, 1.0
replace_float = 604A58, 1.5, 1.05
replace_float = 604B30, 1.7, 1.1
replace_float = 604B38, 1.8, 1.15
replace_float = 604A60, 2.0, 1.2
replace_float = 604B40, 2.2, 1.25
replace_float = 604B48, 2.4, 1.3
replace_float = 604B50, 2.6, 1.35
replace_float = 604B58, 2.8, 1.4
replace_float = 604A68, 3.0, 1.5
GeoffR is offline   Reply With Quote
Advert
Old 05-03-2015, 12:26 PM   #48
GeoffR
Wizard
GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.
 
GeoffR's Avatar
 
Posts: 3,821
Karma: 19162882
Join Date: Nov 2012
Location: Te Riu-a-Māui
Device: Kobo Glo
Quote:
Originally Posted by booklover6 View Post
It's very squished on the Glo HD. There are 11 book tiles. (On my Glo there are 8)
The `Compact homescreen layout` patches are for the Glo and Aura only, I wouldn't expect them to work properly on the GloHD or any other devices.
GeoffR is offline   Reply With Quote
Old 05-03-2015, 12:58 PM   #49
booklover6
Grand Sorcerer
booklover6 ought to be getting tired of karma fortunes by now.booklover6 ought to be getting tired of karma fortunes by now.booklover6 ought to be getting tired of karma fortunes by now.booklover6 ought to be getting tired of karma fortunes by now.booklover6 ought to be getting tired of karma fortunes by now.booklover6 ought to be getting tired of karma fortunes by now.booklover6 ought to be getting tired of karma fortunes by now.booklover6 ought to be getting tired of karma fortunes by now.booklover6 ought to be getting tired of karma fortunes by now.booklover6 ought to be getting tired of karma fortunes by now.booklover6 ought to be getting tired of karma fortunes by now.
 
booklover6's Avatar
 
Posts: 6,534
Karma: 14008730
Join Date: May 2008
Location: PA (USA)
Device: Kobo Clara, 2E, Libre 1, PW4, PW5, 2022 Kindle, Kobo Libre Colour
Quote:
Originally Posted by GeoffR View Post
The `Compact homescreen layout` patches are for the Glo and Aura only, I wouldn't expect them to work properly on the GloHD or any other devices.
Ok, thanks, I realized that.

I re-ran the patch with the compact layout disabled, but the home screen didn't change. Of course, now I don't remember how many tiles were on it originally.
booklover6 is offline   Reply With Quote
Old 05-03-2015, 01:07 PM   #50
GeoffR
Wizard
GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.
 
GeoffR's Avatar
 
Posts: 3,821
Karma: 19162882
Join Date: Nov 2012
Location: Te Riu-a-Māui
Device: Kobo Glo
Quote:
Originally Posted by booklover6 View Post
Ok, thanks, I realized that.

I re-ran the patch with the compact layout disabled, but the home screen didn't change. Of course, now I don't remember how many tiles were on it originally.
Someone else had this happen, the problem seems to be that on devices other than Glo/Aura the cover images get resized smaller to fit the patched layout, but are not resized again when the patch is removed. You might need to delete the books that had their cover images resized, reboot the device, then load the books again. (Edit: Or if you use calibre to send covers, just resend them for those books using the KoboUtilities plugin.)

I should add a warning about this in the patches.

Last edited by GeoffR; 05-03-2015 at 01:15 PM. Reason: ... if you use calibre to send covers ...
GeoffR is offline   Reply With Quote
Advert
Old 05-03-2015, 01:58 PM   #51
Nick_1964
Bookworm
Nick_1964 ought to be getting tired of karma fortunes by now.Nick_1964 ought to be getting tired of karma fortunes by now.Nick_1964 ought to be getting tired of karma fortunes by now.Nick_1964 ought to be getting tired of karma fortunes by now.Nick_1964 ought to be getting tired of karma fortunes by now.Nick_1964 ought to be getting tired of karma fortunes by now.Nick_1964 ought to be getting tired of karma fortunes by now.Nick_1964 ought to be getting tired of karma fortunes by now.Nick_1964 ought to be getting tired of karma fortunes by now.Nick_1964 ought to be getting tired of karma fortunes by now.Nick_1964 ought to be getting tired of karma fortunes by now.
 
Nick_1964's Avatar
 
Posts: 975
Karma: 768585
Join Date: Aug 2010
Location: Netherlands
Device: Sony prs-650, Kobo Glo HD (2x), Kobo Glo
Quote:
Originally Posted by booklover6 View Post
Ok, thanks, I realized that.

I re-ran the patch with the compact layout disabled, but the home screen didn't change. Of course, now I don't remember how many tiles were on it originally.
It was me, I had the same, it is the best to put on the unpatched firmware again,then disable it in the patch and then run the patch again.
After that you use the extended plugin to send the covers again to the device.
For some reason,just disable it and re-patch doesn't returns it to the original state.
It also renders some covers that where on the homescreen,they remain small in the library screen to,so that is why I re-upload the pictures with Calibre and the extended plugin.
Nick_1964 is offline   Reply With Quote
Old 05-04-2015, 03:19 AM   #52
cramoisi
Librarian
cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.cramoisi did not drink the Kool Aid.
 
Posts: 346
Karma: 72225
Join Date: Apr 2015
Location: Liège - Belgium
Device: kobo gloHD - KA1
Quote:
Originally Posted by GeoffR View Post
No problem, that is expected. The reason there isn't a problem without the patch is that without the patch the minimum line spacing is 1.0.

If you read epubs then you can use any line spacing value without a problem, but if you only read kepubs then you might want to change the replacement values in the patch to avoid the smaller ones that cause problems for the kepub reader. Which minimum value to choose will depend a bit on the font you use.

For example if you use the Kobo Nickel font, which has an extremely wide line spacing, then you might use a value of 0.75 without problem. If you use Georgia then you might have problems with values smaller than 0.85.

Here is a set of more conservative replacement values that should avoid problems with most fonts in kepubs:
Code:
# 15 values for replacement:
replace_float = 604A48, 1.0, 0.9
replace_float = 604B10, 1.05, 0.92
replace_float = 604B18, 1.07, 0.94
replace_float = 604B20, 1.1, 0.96
replace_float = 604A50, 1.2, 0.98
replace_float = 604B28, 1.35, 1.0
replace_float = 604A58, 1.5, 1.05
replace_float = 604B30, 1.7, 1.1
replace_float = 604B38, 1.8, 1.15
replace_float = 604A60, 2.0, 1.2
replace_float = 604B40, 2.2, 1.25
replace_float = 604B48, 2.4, 1.3
replace_float = 604B50, 2.6, 1.35
replace_float = 604B58, 2.8, 1.4
replace_float = 604A68, 3.0, 1.5
It's working ! Thanks a lot for your help.
cramoisi is offline   Reply With Quote
Old 05-06-2015, 09:03 AM   #53
Rizla
Member Retired
Rizla ought to be getting tired of karma fortunes by now.Rizla ought to be getting tired of karma fortunes by now.Rizla ought to be getting tired of karma fortunes by now.Rizla ought to be getting tired of karma fortunes by now.Rizla ought to be getting tired of karma fortunes by now.Rizla ought to be getting tired of karma fortunes by now.Rizla ought to be getting tired of karma fortunes by now.Rizla ought to be getting tired of karma fortunes by now.Rizla ought to be getting tired of karma fortunes by now.Rizla ought to be getting tired of karma fortunes by now.Rizla ought to be getting tired of karma fortunes by now.
 
Posts: 3,183
Karma: 11721895
Join Date: Nov 2010
Device: Nook STR (rooted) & Sony T2
Is there a description of what functionality this patch adds?
Rizla is offline   Reply With Quote
Old 05-06-2015, 09:16 AM   #54
GERGE
Guru
GERGE ought to be getting tired of karma fortunes by now.GERGE ought to be getting tired of karma fortunes by now.GERGE ought to be getting tired of karma fortunes by now.GERGE ought to be getting tired of karma fortunes by now.GERGE ought to be getting tired of karma fortunes by now.GERGE ought to be getting tired of karma fortunes by now.GERGE ought to be getting tired of karma fortunes by now.GERGE ought to be getting tired of karma fortunes by now.GERGE ought to be getting tired of karma fortunes by now.GERGE ought to be getting tired of karma fortunes by now.GERGE ought to be getting tired of karma fortunes by now.
 
Posts: 732
Karma: 5797160
Join Date: Jun 2010
Location: Istanbul
Device: Kobo Libra
It is explained within the patch files.
GERGE is offline   Reply With Quote
Old 05-06-2015, 04:28 PM   #55
Rnway
Junior Member
Rnway began at the beginning.
 
Posts: 8
Karma: 10
Join Date: Jan 2015
Device: Kobo Aura H2O
I'd like to replicate the dicthtml->micthtml replacement from the 3.12.1 patcher for 3.15 (This prevents the Kobo from overwriting custom dictionaries in the micthtml files.)

What tools do you use to find the right places to patch?

The code below is for 3.12.1:
Code:
<Patch>
patch_name = `Change dicthtml strings to micthtml`
patch_enable = `yes`
# `%1/dicthtml%2.zip` --> `%1/micthtml%2.zip`
#replace_string = C94734, `%1/dicthtml%2.zip`, `%1/micthtml%2.zip`
# `%1/dicthtml%2` --> `%1/micthtml%2`
replace_string = C9B834, `%\01\0/\0d\0i\0c\0t\0h\0t\0m\0l\0%\02\0`, `%\01\0/\0m\0i\0c\0t\0h\0t\0m\0l\0%\02\0`
# `dicthtml` --> `micthtml`
replace_string = C9B87C, `d\0i\0c\0t\0h\0t\0m\0l\0`, `m\0i\0c\0t\0h\0t\0m\0l\0`
# `dicthtml*` --> `micthtml*`
#replace_string = C9B9B8, `d\0i\0c\0t\0h\0t\0m\0l\0*\0`, `m\0i\0c\0t\0h\0t\0m\0l\0*\0`
# `%1/dicthtml%2` --> `%1/micthtml%2`
replace_string = C9BD54, `%\01\0/\0d\0i\0c\0t\0h\0t\0m\0l\0%\02\0`, `%\01\0/\0m\0i\0c\0t\0h\0t\0m\0l\0%\02\0`
# `%1/dicthtml%2` --> `%1/micthtml%2`
replace_string = C9BDB8, `%\01\0/\0d\0i\0c\0t\0h\0t\0m\0l\0%\02\0`, `%\01\0/\0m\0i\0c\0t\0h\0t\0m\0l\0%\02\0`
# `%1/dicthtml%2` --> `%1/micthtml%2`
replace_string = C9BE1C, `%\01\0/\0d\0i\0c\0t\0h\0t\0m\0l\0%\02\0`, `%\01\0/\0m\0i\0c\0t\0h\0t\0m\0l\0%\02\0`
# `%1/%2/dict/dicthtml%3` --> `%1/%2/dict/micthtml%3`
replace_string = C9BE80, `%\01\0/\0%\02\0/\0d\0i\0c\0t\0/\0d\0i\0c\0t\0h\0t\0m\0l\0%\03\0`, `%\01\0/\0%\02\0/\0d\0i\0c\0t\0/\0m\0i\0c\0t\0h\0t\0m\0l\0%\03\0`
# `dicthtml*` --> `micthtml*`
#replace_string = CA98AC, `d\0i\0c\0t\0h\0t\0m\0l\0*\0`, `m\0i\0c\0t\0h\0t\0m\0l\0*\0`
# `dicthtml%1` --> `micthtml%1`
#replace_string = CC26D0, `d\0i\0c\0t\0h\0t\0m\0l\0%\01\0`, `m\0i\0c\0t\0h\0t\0m\0l\0%\01\0`
</Patch>
Rnway is offline   Reply With Quote
Old 05-06-2015, 06:11 PM   #56
GeoffR
Wizard
GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.
 
GeoffR's Avatar
 
Posts: 3,821
Karma: 19162882
Join Date: Nov 2012
Location: Te Riu-a-Māui
Device: Kobo Glo
Quote:
Originally Posted by Rnway View Post
I'd like to replicate the dicthtml->micthtml replacement from the 3.12.1 patcher for 3.15 (This prevents the Kobo from overwriting custom dictionaries in the micthtml files.)
Here is that patch updated for firmware 3.15.0. Some said that this patch doesn't work, and I don't use custom dictionaries myself so I've just updated the locations, it hasn't been tested.

Spoiler:
Code:
<Patch>
patch_name = `Change dicthtml strings to micthtml`
patch_enable = `yes`
# `%1/dicthtml%2.zip` --> `%1/micthtml%2.zip`
#replace_string = B7EF88, `%1/dicthtml%2.zip`, `%1/micthtml%2.zip`
# `%1/dicthtml%2` --> `%1/micthtml%2`
replace_string = B8423C, `%\01\0/\0d\0i\0c\0t\0h\0t\0m\0l\0%\02\0`, `%\01\0/\0m\0i\0c\0t\0h\0t\0m\0l\0%\02\0`
# `dicthtml` --> `micthtml`
replace_string = B84284, `d\0i\0c\0t\0h\0t\0m\0l\0`, `m\0i\0c\0t\0h\0t\0m\0l\0`
# `dicthtml*` --> `micthtml*`
#replace_string = B843A8, `d\0i\0c\0t\0h\0t\0m\0l\0*\0`, `m\0i\0c\0t\0h\0t\0m\0l\0*\0`
# `%1/dicthtml%2` --> `%1/micthtml%2`
replace_string = B84624, `%\01\0/\0d\0i\0c\0t\0h\0t\0m\0l\0%\02\0`, `%\01\0/\0m\0i\0c\0t\0h\0t\0m\0l\0%\02\0`
# `%1/dicthtml%2` --> `%1/micthtml%2`
replace_string = B84688, `%\01\0/\0d\0i\0c\0t\0h\0t\0m\0l\0%\02\0`, `%\01\0/\0m\0i\0c\0t\0h\0t\0m\0l\0%\02\0`
# `%1/dicthtml%2` --> `%1/micthtml%2`
replace_string = B846EC, `%\01\0/\0d\0i\0c\0t\0h\0t\0m\0l\0%\02\0`, `%\01\0/\0m\0i\0c\0t\0h\0t\0m\0l\0%\02\0`
# `%1/%2/dict/dicthtml%3` --> `%1/%2/dict/micthtml%3`
replace_string = B84750, `%\01\0/\0%\02\0/\0d\0i\0c\0t\0/\0d\0i\0c\0t\0h\0t\0m\0l\0%\03\0`, `%\01\0/\0%\02\0/\0d\0i\0c\0t\0/\0m\0i\0c\0t\0h\0t\0m\0l\0%\03\0`
# `dicthtml*` --> `micthtml*`
#replace_string = B8A654, `d\0i\0c\0t\0h\0t\0m\0l\0*\0`, `m\0i\0c\0t\0h\0t\0m\0l\0*\0`
# `dicthtml%1` --> `micthtml%1`
#replace_string = B8C6D8, `d\0i\0c\0t\0h\0t\0m\0l\0%\01\0`, `m\0i\0c\0t\0h\0t\0m\0l\0%\01\0`
</Patch>


Quote:
What tools do you use to find the right places to patch?
For patches like this one where it is just text strings I just use a hex editor (Emacs in hexl-mode, but any hex editor would do.) If you have GNU binutils you could also use the 'strings' command.

For patches which alter the code itself I use a disassembler ('objdump' from GNU binutils.)
GeoffR is offline   Reply With Quote
Old 05-06-2015, 06:21 PM   #57
GeoffR
Wizard
GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.GeoffR ought to be getting tired of karma fortunes by now.
 
GeoffR's Avatar
 
Posts: 3,821
Karma: 19162882
Join Date: Nov 2012
Location: Te Riu-a-Māui
Device: Kobo Glo
Quote:
Originally Posted by Rizla View Post
Is there a description of what functionality this patch adds?
I've started working on it in the Index to the Metazoa firmware patches thread, but it will take time, like many programming related things it seems to take more effort to explain what something does than it takes to create it in the first place.

That thread will link to the 'Instructions for patching firmware ...' thread for the latest firmware version, and eventually will have a post explaining what each patch does, with screenshots etc.

Idealy that thread will be the only sticky one, and this and other 'Instructions for patching ...' threads it links to could be unstuck.
GeoffR is offline   Reply With Quote
Old 05-07-2015, 03:43 PM   #58
aceflor
Wizard
aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.aceflor ought to be getting tired of karma fortunes by now.
 
aceflor's Avatar
 
Posts: 3,470
Karma: 48036360
Join Date: Aug 2009
Location: where the sun lives, or so they say
Device: Pocketbook Era, Pocketbook Inkpad 4, Kobo Libra 2, Kindle Scribe
Quote:
Originally Posted by GeoffR View Post
I've started working on it in the Index to the Metazoa firmware patches thread, but it will take time, like many programming related things it seems to take more effort to explain what something does than it takes to create it in the first place.

That thread will link to the 'Instructions for patching firmware ...' thread for the latest firmware version, and eventually will have a post explaining what each patch does, with screenshots etc.

Idealy that thread will be the only sticky one, and this and other 'Instructions for patching ...' threads it links to could be unstuck.


I never had problems following your patch instructions, but this new structure will be great !
aceflor is offline   Reply With Quote
Old 05-07-2015, 05:42 PM   #59
Thor
Member
Thor will become famous soon enoughThor will become famous soon enoughThor will become famous soon enoughThor will become famous soon enoughThor will become famous soon enoughThor will become famous soon enough
 
Posts: 23
Karma: 550
Join Date: Jan 2012
Device: Kobo Aura H2O
Indeed the new instructions are very helpful! Thanks for the explanations! :-)
Thor is offline   Reply With Quote
Old 05-08-2015, 05:02 AM   #60
mamado
Member
mamado ought to be getting tired of karma fortunes by now.mamado ought to be getting tired of karma fortunes by now.mamado ought to be getting tired of karma fortunes by now.mamado ought to be getting tired of karma fortunes by now.mamado ought to be getting tired of karma fortunes by now.mamado ought to be getting tired of karma fortunes by now.mamado ought to be getting tired of karma fortunes by now.mamado ought to be getting tired of karma fortunes by now.mamado ought to be getting tired of karma fortunes by now.mamado ought to be getting tired of karma fortunes by now.mamado ought to be getting tired of karma fortunes by now.
 
Posts: 15
Karma: 215014
Join Date: Feb 2015
Device: Kobo Aura
Many thanks GeoffR for the patches and instructions.

You had a patch previously to change book titles style from Italic to Normal, so that it works for Arabic
https://www.mobileread.com/forums/sho...1&postcount=17

I couldn't find it in the new patch files, and when I tried to use it, I got an error, can you please let me know how to update it?

Thanks.

Just noticed you mentioned that this patch was hard in #8, sorry to hear that, I am not sure if I can be of any help. Thanks again for your efforts, and please let us know when you are able to fix it.

Last edited by mamado; 05-08-2015 at 01:53 PM.
mamado is offline   Reply With Quote
Reply


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.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.12.0 GeoffR Kobo Developer's Corner 165 02-07-2015 09:22 AM
Instructions for patching firmware 3.2.0 DNSB Kobo Developer's Corner 66 12-05-2014 07:28 AM


All times are GMT -4. The time now is 06:57 PM.


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