Skip to content

Commit

Permalink
Updates the Terminus font
Browse files Browse the repository at this point in the history
updates the terminus font with a newer version + some fixes i made to it, changes the "use sdl ascii lines" option to false by default, and lowers the minimum font width to 6
  • Loading branch information
Lumi-Virtual committed Jan 29, 2024
1 parent b3a2e0d commit 8db0c3d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions LICENSE-OFL-Terminus-Font.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Copyright (c) 2019 Dimitar Toshkov Zhekov,
Copyright (C) 2020 Dimitar Toshkov Zhekov,
with Reserved Font Name "Terminus Font".

Copyright (c) 2017 tisimst
with Reserved Font Name "Vecterminus"

Copyright (c) 2011 Tilman Blumenbach,
Copyright (c) 2011-2023 Tilman Blumenbach,
with Reserved Font Name "Terminus (TTF)".

This Font Software is licensed under the SIL Open Font License, Version 1.1.
Expand Down
Binary file modified data/font/Terminus.ttf
Binary file not shown.
8 changes: 4 additions & 4 deletions src/options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2310,7 +2310,7 @@ void options_manager::add_options_graphics()

add( "FONT_WIDTH", page_id, to_translation( "Font width" ),
to_translation( "Set the font width. Requires restart." ),
8, 100, 8, COPT_CURSES_HIDE
6, 100, 8, COPT_CURSES_HIDE
);

add( "FONT_HEIGHT", page_id, to_translation( "Font height" ),
Expand All @@ -2325,7 +2325,7 @@ void options_manager::add_options_graphics()

add( "MAP_FONT_WIDTH", page_id, to_translation( "Map font width" ),
to_translation( "Set the map font width. Requires restart." ),
8, 100, 16, COPT_CURSES_HIDE
6, 100, 16, COPT_CURSES_HIDE
);

add( "MAP_FONT_HEIGHT", page_id, to_translation( "Map font height" ),
Expand All @@ -2340,7 +2340,7 @@ void options_manager::add_options_graphics()

add( "OVERMAP_FONT_WIDTH", page_id, to_translation( "Overmap font width" ),
to_translation( "Set the overmap font width. Requires restart." ),
8, 100, 16, COPT_CURSES_HIDE
6, 100, 16, COPT_CURSES_HIDE
);

add( "OVERMAP_FONT_HEIGHT", page_id, to_translation( "Overmap font height" ),
Expand All @@ -2355,7 +2355,7 @@ void options_manager::add_options_graphics()

add( "USE_DRAW_ASCII_LINES_ROUTINE", page_id, to_translation( "SDL ASCII lines" ),
to_translation( "If true, use SDL ASCII line drawing routine instead of Unicode Line Drawing characters. Use this option when your selected font doesn't contain necessary glyphs." ),
true, COPT_CURSES_HIDE
false, COPT_CURSES_HIDE
);
} );
#endif // TILES
Expand Down

0 comments on commit 8db0c3d

Please sign in to comment.