Skip to content

Commit

Permalink
Upgrade to C-Kermit 10.0 beta.11
Browse files Browse the repository at this point in the history
  • Loading branch information
davidrg committed Aug 11, 2024
1 parent d75a126 commit 13835e1
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
4 changes: 2 additions & 2 deletions doc/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
21 changes: 13 additions & 8 deletions kermit/k95/ckcmai.c
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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:
Expand Down Expand Up @@ -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 */
Expand Down Expand Up @@ -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. */
Expand Down

0 comments on commit 13835e1

Please sign in to comment.