- added support for selecting a current screen buffer. Also, added `select screen' new menu under edit menu.
- added support for showing the device description of COM port on the connection dialog.
- added support of telnet keep-alive.
- TeraTerm will send TELNET NOP command to host when no commucation does for a long time.
- added TelKeepAliveInterval entry in teraterm.ini file. The default value is 300 per seconds. 0 is turn off.
- added telnet keep-alive inputbox on TCP/IP setup dialog.
- added Alt+I accelerator key as disconnect.
- added shift operator ">>", "<<", ">>>" for macro.
- changed the priority of macro operator in the following order:
New:
Priority Operator
1 not ~ ! +(unary) -(unary)
2 * / %
3 + -
4 >> << >>>
5 and &
6 xor ^
7 or |
8 < > <= >=
9 = == <> !=
10 &&
11 ||
Old:
Priority Operator
1 not ~ ! +(unary) -(unary)
2 * / %
2 and &
3 + -
3 or xor | ^
4 = <> < > <= >=
5 &&
6 ||