FontAwesome: Fix open comments icon

[why]
When creating the renaming table the wrong number has been entered
(twice the same).

[how]
Correct the renaming thereby making the renamed icon visible.
The icon that has been 'kicked out' is moved to the end of the patched
block.

New:
F0E6 F0E6 regular/comments.svg

Moved:
F374 EFC2 brands/avianex.svg (was previously on F0E6)

Renamed:
RENAME comments_o to comment_o (F0E5)

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
This commit is contained in:
Fini Jastrow 2024-04-08 14:39:35 +02:00
parent 9bb694cafc
commit e4ad9ee693

View file

@ -79,7 +79,7 @@ renames = {
0xF0A2: 'bell_o', 0xF0A2: 'bell_o',
0xF0D5: 'google_plus', 0xF0D5: 'google_plus',
0xF0E5: 'comment_o', 0xF0E5: 'comment_o',
0xF0E5: 'comments_o', 0xF0E6: 'comments_o',
0xF0F6: 'file_text_o', 0xF0F6: 'file_text_o',
0xF0F7: 'building_o', 0xF0F7: 'building_o',
0xF10C: 'circle_o', 0xF10C: 'circle_o',
@ -134,7 +134,7 @@ print('#')
# Reorder processing to accomodate for glyph shifts introduced # Reorder processing to accomodate for glyph shifts introduced
all_points = [ *range(0xF000, 0xF900), *range(0xE000, 0xF000) ] all_points = [ *range(0xF000, 0xF900), *range(0xE000, 0xF000) ]
move_or_drop = { 0xF30B: False, 0xF30C: False } move_or_drop = { 0xF30B: False, 0xF30C: False, 0xF374: True }
for code, move in move_or_drop.items(): for code, move in move_or_drop.items():
all_points.remove(code) all_points.remove(code)
if move: if move: