diff --git a/README.md b/README.md index 68ae86aa..8029e4bf 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ Major features include: To get the latest most stable release as well as other news and information, visit the [C-Kermit for Windows Beta website](https://www.kermitproject.org/ckw10beta.html). -This software is currently based on C-Kermit version 10.0 Pre-Beta.11 of -29-JUN-2024 and is available under the 3-clause BSD license. +This software is currently based on C-Kermit version 10.0 Beta.11 of +8-AUG-2024 and is available under the 3-clause BSD license. ![Screenshot](doc/screenshot-w11.png) diff --git a/doc/changes.md b/doc/changes.md index 661fb00c..5740f6d4 100644 --- a/doc/changes.md +++ b/doc/changes.md @@ -4,7 +4,7 @@ This document covers what has changed in each release of C-Kermit for Windows check the git commit log. -## C-Kermit for Windows 10.0b10 beta 6 - coming soon +## C-Kermit for Windows 10.0b11 beta 6 - coming soon This is a minor release focused on upgrading from OpenSSL 1.1.1 (which is now out of support) to OpenSSL 3.0.x, and libssh 0.10.5 to 0.10.6. Also @@ -69,7 +69,7 @@ Windows XP. public key, keyboard-interactive, password. * Binaries are now provided for Windows NT running on Alpha, MIPS and PowerPC systems. -* Upgraded to C-Kermit 10.0 Pre-Beta.11 +* Upgraded to C-Kermit 10.0 Beta.11 * About window (Help -> About) now includes the beta number * Added help text for `set terminal autopage` and `set terminal autoscroll` * Increased the maximum number of terminal columns from 256 to 512 in K95G. diff --git a/kermit/k95/ckcmai.c b/kermit/k95/ckcmai.c index 160bdbcf..a6b4fd4f 100644 --- a/kermit/k95/ckcmai.c +++ b/kermit/k95/ckcmai.c @@ -1,8 +1,13 @@ /* ckcmai.c - Main program for C-Kermit plus some miscellaneous functions */ -#define EDITDATE "5 Jun 2024" /* Last edit date dd mmm yyyy */ -#define EDITNDATE "20240605" /* Keep them in sync */ -/* Wed Jun 5 13:44:42 2024 */ +#ifdef COMMENT +#define EDITDATE "8 Aug 2024" /* Last edit date dd mmm yyyy */ +#else +#define EDITDATE "2024/08/08" /* Last edit date ISO format */ +#endif /* COMMENT */ + +#define EDITNDATE "20240808" /* Keep them in sync */ +/* Thu Aug 8 12:25:04 2024 */ /* As of 27 September 2022 BETATEST is defined in ckcdeb.h, not here, because it's also used in other modules. @@ -13,7 +18,7 @@ FOR NEW VERSION (development, alpha, beta, release candidate, formal release): . Change the 3 dates just above; . Change ck_cryear = "xxxx"; (copyright year) just below, if necessary; . For test versions change ck_s_test and ck_s_tver (below) appropriately: - Dev, Alpha, Beta, or RC (Release Candidate); + Dev, Alpha, Pre-Beta, Beta, or RC (Release Candidate); . Change makefile CKVER and BUILDID definitions and timestamp at top. If the version number has changed, also: @@ -61,7 +66,7 @@ char *ck_s_test = "Beta"; char *ck_s_tver = "11/Windows-06"; #else /* Can also use "Pre-Beta" here for in between "daily" uploads */ -char *ck_s_test = "pre-Beta"; /* "Dev","Alpha","pre-Beta","Beta","RC", or "" */ +char *ck_s_test = "Beta"; /* "Dev","Alpha","pre-Beta","Beta","RC", or "" */ char *ck_s_tver = "11"; /* Test version number */ #endif /* OS2 */ #else /* BETATEST */ @@ -104,9 +109,9 @@ int offtsize = 0; /* Size of OFF_T */ Macintosh), just C-Kermit for each platform (except the original Mac). */ char *ck_s_ver = "10.0"; /* C-Kermit version string */ -char *ck_s_edit = "413"; /* Edit number (for Debian package) */ -char *ck_s_xver = "10.0.413"; /* eXtended version string */ -long ck_l_ver = 1000413L; /* C-Kermit version number */ +char *ck_s_edit = "414"; /* Edit number (for Debian package) */ +char *ck_s_xver = "10.0.414"; /* eXtended version string */ +long ck_l_ver = 1000414L; /* C-Kermit version number */ char *ck_s_name = "C-Kermit"; /* Name of this program */ char *ck_s_who = ""; /* Where customized, "" = not. */ char *ck_patch = ""; /* Patch info, if any. */