RobertJSawyer,
Thank you for the detailed feedback. Sorry for the late response, but somehow I overlooked your posts between the two post by Paola.
Quote:
- the library view (books, shelves): slightly bigger text maybe, or maybe just more ling spacing
|
I guess this does not affect the Aura HD at all, the css block contained in the configuration file concerns possibly only Touch, Mini, Glo, and Aura.
Quote:
- the annotation list and details view: font seems the same size as before
|
Thank you for this information. Please open KBPatcher05\3.1.1_source\
conf_libnickel.txt and find
Code:
action=replace_xor_AC
position=13AA528
note=if this doesn't work, try the following values
#action=replace_xor_11
#position=1401D78
replace this by
Code:
#action=replace_xor_AC
#position=13AA528
note=if this doesn't work, try the following values
action=replace_xor_11
position=1401D78
Quote:
- the search list: line SPACING seems bigger, but font seems the same
|
I am not sure why this does not work, I tried to increase the font-size for the Aura HD from 29px to 39px. You can try increasing in
conf_libnickel.txt the value of the font size in this line, but I think if this line has an effect you would already have noticed it. (Just to clarify, only the text of the history/auto-complete list is concerned)
Code:
newpart=[deviceCodeName="dragon"] {\nfont-size: 39px;\nfont-family: Georgia;\n}\n\n
Quote:
- the dictionary: changes to sans-serif font, but not bigger
|
Concerning the dictionary view, the values are unfortunately not differentiated according to models. I set the values fitting for the Touch/Mini. You can increase the values for the Aura HD.
In conf_libnickel.txt there are three examples of how to change font family and font size of the dictionary view. Search for
name=Dictionary (Georgia),
name=Dictionary (Gothic), and
name=Dictionary (Ryumin). Only one of these three patches must be enabled, the other two must be disabled. Currently, Dictionary (Gothic) is enabled. All of them have the same pattern. The important lines are (I take
Dictionary (Georgia) as example)
Code:
newpart=* { font-family: Georgia ;font-size: 24px; line-height: 28px; } \n
Code:
newpart=ol p { font-size: 24px; font-weight:normal; }
It is important that the length of the "newparts" together is not larger than the length of the "oldparts". If the newparts are longer, the patcher will display a warning and refuse to create an output.
Quote:
- the header and footer texts: header is same as before, but footer is bigger
|
My header modification might work only for Touch (maybe Mini, Glo?). If you would like to try something you can add the following to conf_libnickel.txt. Some font size will be increased, but I am not sure whether of the header or something else.
Code:
<patch>
name=Header for Aura, Aura HD?
enabled=true
action=replace_xor_11
position=142D720
oldpart=* {\n\tbackground-color: transparent;\n\tpadding-top:3px;\n}\n\n
oldpart=[deviceCodeName="dragon"] {\n\tfont-size: 26px;\n}\n\n
oldpart=[deviceCodeName="phoenix"] {\n\tfont-size: 21px;\n}\n\n
oldpart=[localeName="ja_JP"] {\n\tfont-family: A-OTF Gothic MB101 Pr6N;\n\tqproperty-leading: 0;\n}
newpart=* {\n\tbackground-color: transparent;\n\tpadding-top:3px;\n}\n\n
newpart=[deviceCodeName="dragon"] {\n\tfont-size: 36px;\n}\n\n
newpart=[deviceCodeName="phoenix"] {\n\tfont-size: 31px;\n}\n\n
newpart=[localeName="ja_JP"] {\n\tfont-family: A-OTF Gothic MB101 Pr6N;\n\tqproperty-leading: 0;\n}
combineparts
</patch>
Best regards,
Tshering