Skip to content

Commit 08f05e6

Browse files
committed
Update for the impending beta 7 release
1 parent b435d15 commit 08f05e6

File tree

2 files changed

+28
-34
lines changed

2 files changed

+28
-34
lines changed

README.md

+25-34
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,11 @@ Major features include:
2020
From 2013 until August 2024 this project was developed under the name
2121
*C-Kermit for Windows* but the decision has been made to switch back to the
2222
original name, Kermit 95, for the next release (beta 7) to reduce confusion
23-
(plus it's a shorter name and works better on OS/2). The current release
24-
(beta 6) is still called "C-Kermit for Windows".
23+
(plus it's a shorter name and works better on OS/2). While the name may have
24+
changed, it's still the same program
2525

26-
As this code is currently "Pre-Beta 7", all material here now refers to
27-
"Kermit 95" rather than "C-Kermit for Windows" - know that these are just
28-
two names for the same program.
29-
30-
<!--
31-
If you see references to "C-Kermit for Windows", "CKW" or "CKWIN" around the
32-
place know that it refers to the open-source Kermit 95.
33-
-->
34-
35-
To get the latest most stable release as well as other news and information,
36-
visit the [Kermit 95 Beta website](https://www.kermitproject.org/ckw10beta.html).
26+
For more news and information, visit the
27+
[Kermit 95 Beta website](https://www.kermitproject.org/ckw10beta.html).
3728
This software is currently based on C-Kermit version 10.0 Beta.11 of
3829
29-JUN-2024 and is available under the 3-clause BSD license.
3930

@@ -43,21 +34,22 @@ Requirements (Windows)
4334
----------------------
4435

4536
Kermit 95 supports virtually all 32bit and 64bit releases of Microsoft Windows
46-
on all CPU architectures. The only exceptions are [Windows NT 3.10](https://github.com/davidrg/ckwin/issues/164),
47-
and MIPS Windows NT 3.50 (issues with the compiler in the NT 3.1 SDK). However,
37+
on all CPU architectures. The only remaining exception is
38+
[Windows NT 3.10](https://github.com/davidrg/ckwin/issues/164). However,
4839
due to lack of hardware Itanium and ARM64 are not actively tested
4940
so bug reports from users on these platforms are essential.
5041

5142
Unfortunately despite best efforts certain features in K95 do have a minimum version
5243
requirement:
5344

54-
| Feature | Minimum Windows Version | Description / Notes |
55-
|---------|-------------------------|--------------------------------------------------------------------------------|
56-
| PTY | Windows 10 version 1809 | Windows cmd/powershell/WSL using the K95 terminal emulator |
57-
| SSH | Windows XP SP 3 | Earlier Windows releases will require writing an alternative SSH module based on some other SSH implementation |
58-
| SSL/TLS | Windows XP SP 3 | This includes https, ftps and secure telnet support |
59-
| TAPI | Windows 95 or NT 4.0 | Modem dialing via `set modem` should still work on earlier versions of windows |
60-
| Toolbar | Windows NT 3.51 | Some GUI dialogs also require at least NT 3.51 |
45+
| Feature | Minimum Windows Version | Description / Notes |
46+
|---------|-------------------------|----------------------------------------------------------------------------------------------------------------------|
47+
| PTY | Windows 10 version 1809 | Windows cmd/powershell/WSL using the K95 terminal emulator |
48+
| SSH | Windows XP SP 3 | Earlier Windows releases will require writing an alternative SSH module based on some other SSH implementation |
49+
| SSL/TLS | Windows XP SP 3 | This includes https, ftps and secure telnet support |
50+
| TAPI | Windows 95 or NT 4.0 | Modem dialing via `set modem` should still work on earlier versions of windows |
51+
| Toolbar | Windows NT 3.51 | Some GUI dialogs also require at least NT 3.51 |
52+
| GUI | Windows NT 3.50 (x86), NT 3.51 (alpha/mips) | The GUI version (k95g.exe) is not currently available on the Alpha and MIPS versions of NT 3.50. |
6153

6254
OS/2 Support
6355
------------
@@ -68,7 +60,7 @@ support should work with IBM TCP/IP 2.0 or newer.
6860
There are still a number of outstanding issues caused by the switch from IBM
6961
C/C++ 3.6 (for which the project has no license) to Open Watcom 1.9 (see issue
7062
[#8](https://github.com/davidrg/ckwin/issues/8)), but none of these affect
71-
making basic telnet or serial connections.
63+
making basic telnet, serial or NetBIOS connections.
7264

7365
Supported Terminal Emulations
7466
-----------------------------
@@ -91,19 +83,18 @@ supported and can be configured via the `set mouse reporting` command.
9183
Documentation
9284
-------------
9385

94-
The documentation is currently being updated for v3.0. In the meantime, the
95-
[Kermit 95 manual v2.1](https://www.kermitproject.org/k95manual/) still covers
96-
current releases quite well and is the first place to look for details on
97-
features and capabilities specific to Windows and OS/2. The SSH Client reference
98-
is now a little out of date, so consult the [SSH Readme](doc/ssh-readme.md) for more
99-
details on what has changed in the Kermit 95 SSH implementation.
100-
There is also a [Kermit 95 How-To](https://www.kermitproject.org/ckwhowto.html)
101-
which may be useful for new users.
86+
The Kermit 95 manual has mostly been revised for K95 v3.0 and is now included
87+
as of beta 7. To view it, choose _Manual_ from the _Help_ menu, or type the
88+
`manual` command at the K-95 prompt. There is also a
89+
[Kermit 95 How-To](https://www.kermitproject.org/ckwhowto.html) which may be
90+
useful for new users.
10291

103-
For everything else, consult the [C-Kermit Documentation](https://www.kermitproject.org/ckbindex.html).
92+
The full documentation for the built-in SSH client is now included in the
93+
_SSH Client Reference_ section of the users guide, but for a quick summary
94+
you can consult the [SSH Readme](doc/ssh-readme.md).
10495

105-
If you previously used Kermit 95 and would like to know what's changed since v2.1,
106-
see the [Kermit 95 Change Log](doc/changes.md) as well as the C-Kermit 9.0
96+
If you previously used Kermit 95 v2.1 or earlier and would like to know what's
97+
changed, see the [Kermit 95 Change Log](doc/changes.md) as well as the C-Kermit 9.0
10798
and 10.0 changelogs
10899

109100
New Features

doc/changes.md

+3
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ by OpenSSH on modern versions of windows, add the command
100100
so via command line arguments rather than the new `set gui` commands so they
101101
can't be turned back on with the new `set gui` commands.
102102
* Added support xterms Bracketed Paste feature
103+
* Most of the users guide has been revised for this release and is now included
104+
as part of the release. The _Kermit Security Reference_ and sections dealing
105+
with installing and uninstalling kermit 95 are still waiting to be overhauled.
103106

104107
### Minor Enhancements and other changes
105108
* All executables (*.exe, *.dll) now have proper versioninfo resources

0 commit comments

Comments
 (0)