Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,21 @@

* ui_main_config.c: Add --igncsi/ignored_csi_list option.

2026-08-14 sporteka <sporteka2@disroot.org>

* man/mlterm.1, etc/main, etc/main.ja, doc/ja/README.ja:
Fix other hardcoded font size range default descriptions.
The man page said the default is 1-10000 and the sample config
files said 1-100, while the actual default range is 1-200 when
USE_FREETYPE is enabled and 1-10000 otherwise.

2026-08-14 sporteka <sporteka2@disroot.org>

* main/main_loop.c:
Fix misleading "font size range for GUI configurator [1-100]"
help description. The actual default range is 1-200 when
USE_FREETYPE is enabled and 1-10000 otherwise.

2026-08-14 Araki Ken <arakiken@user.sf.net>

* ui_im_candidate_screen.[ch]:
Expand Down
2 changes: 1 addition & 1 deletion doc/ja/README.ja
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ comment -*- mode: text; tab-width:2; indent-tabs-mode:nil; coding:euc-jp -*-
���ꤷ�����ˤϡ�fontsize ���ץ������ѹ����Ƥ⡢�ե���ȥ�������(�嵭
��Ǥ� 14 pixel �Τޤ�)�Ѥ��ʤ��ʤ뤿�ᡢ���դ��Ƥ���������

o font_size_range (*1-10000*)
o font_size_range (*1-200*)
�ѹ���ǽ�ʥե���ȥ��������ϰ�

�ե����ޥåȤϰʲ��ΤȤ��ꡣ
Expand Down
2 changes: 1 addition & 1 deletion etc/main
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

# fontsize = 16

# font_size_range = 1-100
# font_size_range = 1-200

# hide_underline = false

Expand Down
2 changes: 1 addition & 1 deletion etc/main.ja
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
# fontsize = 16

# �ѹ���ǽ�ʥե���ȥ��������ϰ�
# font_size_range = 1-100
# font_size_range = 1-200

# ��������饤������褷�ʤ���
# hide_underline = false
Expand Down
6 changes: 5 additions & 1 deletion main/main_loop.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,11 @@ int main_loop_init(int argc, char **argv) {
bl_conf_add_opt(conf, 'h', "help", 1, "help", "show this help message");
bl_conf_add_opt(conf, 'v', "version", 1, "version", "show version message");
bl_conf_add_opt(conf, 'R', "fsrange", 0, "font_size_range",
"font size range for GUI configurator [1-100]");
#ifdef USE_FREETYPE
"font size range for GUI configurator [1-200]");
#else
"font size range for GUI configurator [1-10000]");
#endif
#ifdef COMPOSE_DECSP_FONT
bl_conf_add_opt(conf, 'Y', "decsp", 1, "compose_dec_special_font",
"compose dec special font [false]");
Expand Down
3 changes: 2 additions & 1 deletion man/mlterm.1
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,8 @@ The default is \fBtrue\fR.
\fB\-R\fR, \fB\-\-fsrange\fR=\fIrange\fR
Set acceptable range of font size.
The format is "\fIminsize\fR-\fImaxsize\fR", where \fIminsize\fR and
\fImaxsize\fR are font sizes in pixel (default \fB1-10000\fR).
\fImaxsize\fR are font sizes in pixel (default \fB1-200\fR when freetype
support is enabled, \fB1-10000\fR otherwise).
The GUI configurator and other means for setting fontsize should honor
the range.
.TP
Expand Down