Fixed Export for symbols with 0 width in "1 per line" format
This commit is contained in:
@@ -342,7 +342,7 @@ namespace McBitFont {
|
|||||||
}
|
}
|
||||||
if (lines == 1) {
|
if (lines == 1) {
|
||||||
// "1 symbol per line" - closing line
|
// "1 symbol per line" - closing line
|
||||||
if (!f.Equals(flast)) output += ",";
|
if (!f.Equals(flast) && f.width > 0) output += ",";
|
||||||
if (com && fcount > 1) {
|
if (com && fcount > 1) {
|
||||||
//...with a comment
|
//...with a comment
|
||||||
output += " // " + f.code.ToString() + " --> " + mainForm.decodeSymbol(f.code);
|
output += " // " + f.code.ToString() + " --> " + mainForm.decodeSymbol(f.code);
|
||||||
|
13
TODO.txt
13
TODO.txt
@@ -1,28 +1,15 @@
|
|||||||
Application:
|
Application:
|
||||||
V Implement "Save" menu
|
|
||||||
V Implement new saved font file format
|
|
||||||
|
|
||||||
Functionality:
|
Functionality:
|
||||||
- Context menu in symbol navigator
|
- Context menu in symbol navigator
|
||||||
- Delete symbols before/after selected
|
- Delete symbols before/after selected
|
||||||
- Shift all symbols on code line (change symbol codes)
|
- Shift all symbols on code line (change symbol codes)
|
||||||
- Specify starting code (extends the shift)
|
- Specify starting code (extends the shift)
|
||||||
V "Only numbers" range in the New dialog
|
|
||||||
V "Specify range" in the New dialog
|
|
||||||
V "Single frame", "only numbers" and "specify range" as radio buttons
|
|
||||||
- Ability to make monospaced font a variable width one
|
- Ability to make monospaced font a variable width one
|
||||||
V Button to Clear/Fill a block
|
|
||||||
- Undo/Redo
|
- Undo/Redo
|
||||||
- Image import from a file
|
- Image import from a file
|
||||||
- Import from a text array
|
- Import from a text array
|
||||||
V Copy-paste to a symbol with different size
|
|
||||||
- Rectangle selection to mass-paint, shift and mirror pixels
|
- Rectangle selection to mass-paint, shift and mirror pixels
|
||||||
V Change height of variable width fonts with ability to choose which side to add pixels to
|
|
||||||
V Make it possible to have zero width chars in VarWidth fonts
|
|
||||||
- "Packed" fonts export
|
- "Packed" fonts export
|
||||||
V Tooltips on main form
|
|
||||||
|
|
||||||
Bugs:
|
Bugs:
|
||||||
V Every char changes its width to default on VarWidth font height change!
|
|
||||||
V App allows to create fonts with a gap in symbol cequence!
|
|
||||||
V File -> New does not check for unsaveed changes!
|
|
Reference in New Issue
Block a user