Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
larryli committed Dec 18, 2024
1 parent 4b75bd5 commit 3bc189d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ CONF_OPTION(serline,
)
CONF_OPTION(serspeed,
VALUE_TYPE(INT),
DEFAULT_INT(9600),
DEFAULT_INT(115200),
SAVE_KEYWORD("SerialSpeed"),
)
CONF_OPTION(serdatabits,
Expand All @@ -498,7 +498,7 @@ CONF_OPTION(serparity,
)
CONF_OPTION(serflow,
VALUE_TYPE(INT),
DEFAULT_INT(SER_FLOW_XONXOFF),
DEFAULT_INT(SER_FLOW_NONE),
SAVE_KEYWORD("SerialFlowControl"),
STORAGE_ENUM(serflow),
)
Expand Down Expand Up @@ -539,7 +539,7 @@ CONF_OPTION(rxvt_homeend,
)
CONF_OPTION(funky_type,
VALUE_TYPE(INT),
DEFAULT_INT(FUNKY_TILDE),
DEFAULT_INT(FUNKY_XTERM),
SAVE_KEYWORD("LinuxFunctionKeys"),
STORAGE_ENUM(funky_type),
)
Expand All @@ -556,7 +556,7 @@ CONF_OPTION(no_applic_c, /* totally disable app cursor keys */
)
CONF_OPTION(no_applic_k, /* totally disable app keypad */
VALUE_TYPE(BOOL),
DEFAULT_BOOL(false),
DEFAULT_BOOL(true),
SAVE_KEYWORD("NoApplicationKeys"),
)
CONF_OPTION(no_mouse_rep, /* totally disable mouse reporting */
Expand Down Expand Up @@ -704,7 +704,7 @@ CONF_OPTION(wintitle, /* initial window title */
/* Terminal options */
CONF_OPTION(savelines,
VALUE_TYPE(INT),
DEFAULT_INT(2000),
DEFAULT_INT(9999),
SAVE_KEYWORD("ScrollbackLines"),
)
CONF_OPTION(dec_om,
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

PuTTY 是自由的跨平台 Telnet/SSH 客户端,同时在 Win32 和 Unix 系统下模拟 xterm 终端。其主要作者是 Simon Tatham。

当前版本为 0.81 测试版,请访问 [PuTTY 网站](http://www.chiark.greenend.org.uk/~sgtatham/putty/)获得更多信息。如果发现英文版本有更新,[请及时通知](https://github.com/larryli/PuTTY/issues/new)
当前版本为 0.82 测试版,请访问 [PuTTY 网站](http://www.chiark.greenend.org.uk/~sgtatham/putty/)获得更多信息。如果发现英文版本有更新,[请及时通知](https://github.com/larryli/PuTTY/issues/new)


## MIT 许可证
Expand Down

0 comments on commit 3bc189d

Please sign in to comment.