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.