Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | parse_bdf_2_1(): Fix negative bit shift offset | P. J. McDermott | 2014-07-13 | 1 | -2/+7 |
| | | | | | | | | | | | | | If the font width minus the left margin is greater than the number of bits needed for the character plus the character's x offset, the bit shift offset will be negative. For example, with a font width of 17, left margin of 2, character width of 2 bytes, and character x offset of 1, the following happens: x = (font_bbox_w + font_bbox_x) - figure_margin - (bytes_w * 8 + char_bbox_x) x = (17 + 0) - 2 - (2 * 8 + 1) x = -2 | ||||
* | bdf2fbcon: Choose a more sensible output filename | P. J. McDermott | 2014-07-13 | 1 | -20/+23 |
| | |||||
* | write_fbcon(): Add "_WxH" to id, idx, and name | P. J. McDermott | 2014-07-13 | 1 | -0/+3 |
| | |||||
* | write_fbcon() Fix the file handle for some output | P. J. McDermott | 2014-07-12 | 1 | -1/+1 |
| | |||||
* | bdf2fbcon: Adjust font id and idx/name keys | P. J. McDermott | 2014-07-12 | 1 | -8/+10 |
| | |||||
* | bdf2fbcon: Move name and idx normalization logic | P. J. McDermott | 2014-07-12 | 1 | -6/+6 |
| | |||||
* | bdf2fbcon: Add -n option to override font name | P. J. McDermott | 2014-07-12 | 1 | -4/+16 |
| | |||||
* | main(): Drop $SIG{'__WARN__'} setting | P. J. McDermott | 2014-07-12 | 1 | -2/+0 |
| | |||||
* | parse_bdf_2_1(): Add left margin from FIGURE_WIDTH | P. J. McDermott | 2014-07-11 | 1 | -0/+6 |
| | |||||
* | parse_bdf_2_1(): Add horizontal offset | P. J. McDermott | 2014-07-11 | 1 | -2/+7 |
| | |||||
* | parse_bdf_2_1(): Set vertical offset | P. J. McDermott | 2014-07-11 | 1 | -2/+3 |
| | | | | Also fix a variable name. | ||||
* | write_fbcon(): Remove superfluous "my" | P. J. McDermott | 2014-07-11 | 1 | -1/+1 |
| | |||||
* | parse_bdf_2_1(): Use the right function | P. J. McDermott | 2014-07-11 | 1 | -1/+1 |
| | |||||
* | write_fbcon(): Fix bitmap iterator & binary string | P. J. McDermott | 2014-07-11 | 1 | -3/+6 |
| | |||||
* | write_fbcon(): Set undefined bitmaps to 0 | P. J. McDermott | 2014-07-11 | 1 | -0/+1 |
| | |||||
* | parse_bdf_2_1(): Populate bitmap without offsets | P. J. McDermott | 2014-07-11 | 1 | -1/+7 |
| | |||||
* | write_fbcon(): Write bitmaps | P. J. McDermott | 2014-07-11 | 1 | -1/+17 |
| | |||||
* | parse_bdf_2_1(): Get bboxes and look for BITMAP | P. J. McDermott | 2014-07-11 | 1 | -1/+20 |
| | |||||
* | bdf2fbcon: Add a -p option to set the pref | P. J. McDermott | 2014-07-11 | 1 | -3/+13 |
| | |||||
* | init_font(): Really take arguments | P. J. McDermott | 2014-07-11 | 1 | -1/+1 |
| | |||||
* | init_font(): Clear default character name | P. J. McDermott | 2014-07-11 | 1 | -1/+1 |
| | |||||
* | write_fbcon(): Set FONTDATAMAX | P. J. McDermott | 2014-07-11 | 1 | -2/+2 |
| | |||||
* | init_font(), write_fbcon(): Fix char count | P. J. McDermott | 2014-07-11 | 1 | -2/+2 |
| | |||||
* | write_fbcon(): Pad numbers in char comments | P. J. McDermott | 2014-07-11 | 1 | -1/+1 |
| | |||||
* | bdf2fbcon: Split up parsing and generation | P. J. McDermott | 2014-07-11 | 1 | -37/+78 |
| | |||||
* | convert_bdf_2_1(): Write char comments | P. J. McDermott | 2014-07-11 | 1 | -1/+8 |
| | |||||
* | Initial commit | P. J. McDermott | 2014-07-11 | 1 | -0/+299 |