bump version number, readme

This commit is contained in:
cy384 2020-08-05 22:31:04 -04:00
parent e6d60dbf75
commit cdddf17f97
2 changed files with 7 additions and 8 deletions

View File

@ -4,12 +4,12 @@ ssheven
------- -------
A modern SSH client for Mac OS 7/8/9. A modern SSH client for Mac OS 7/8/9.
Project status: as of 0.2.0 (see github releases), an actual SSH client that only crashes or locks up sometimes, with a zero-features "vanilla" fixed-size terminal Project status: as of 0.3.0 (see github releases), an actual SSH client with a zero-features "vanilla" fixed-size terminal
system requirements system requirements
------------------- -------------------
* CPU: 33 MHz 68040 (or 68LC040) might be fast enough to connect without timeouts (even with mbedtls's hand written assembly in the slow part!). Any PPC processor should be fine. * CPU: 33 MHz 68040 (or 68LC040) might be fast enough to connect without timeouts (any PPC processor should be fine)
* RAM: requires approx 2MB (adjust up via the info box if it crashes) * RAM: requires approx. 2MB
* Disk space: currently about 1MB for the fat binary, or about 600KB for one platform * Disk space: currently about 1MB for the fat binary, or about 600KB for one platform
* System 7.5 recommended, earlier System 7 versions possible with the Thread Manager extension installed * System 7.5 recommended, earlier System 7 versions possible with the Thread Manager extension installed
* Open Transport networking required, version 1.1.1 recommended minimum * Open Transport networking required, version 1.1.1 recommended minimum
@ -19,7 +19,6 @@ to do
* terminal resizing * terminal resizing
* proper region invalidation/redraw * proper region invalidation/redraw
* good console emulation (to be implemented with libvterm) * good console emulation (to be implemented with libvterm)
* menus
* saving/loading connection settings * saving/loading connection settings
* nicer connection dialog * nicer connection dialog
* preferences * preferences

View File

@ -4,11 +4,11 @@
#define __SSHEVEN_CONSTANTS_R__ #define __SSHEVEN_CONSTANTS_R__
/* so many versions */ /* so many versions */
#define SSHEVEN_VERSION "0.2.0" #define SSHEVEN_VERSION "0.3.0"
#define SSHEVEN_LONG_VERSION "0.2.0 prerelease, by cy384" #define SSHEVEN_LONG_VERSION "0.3.0 prerelease, by cy384"
#define SSHEVEN_DESCRIPTION "ssheven 0.2.0 by cy384" #define SSHEVEN_DESCRIPTION "ssheven 0.3.0 by cy384"
#define SSHEVEN_VERSION_MAJOR 0x00 #define SSHEVEN_VERSION_MAJOR 0x00
#define SSHEVEN_VERSION_MINOR 0x20 #define SSHEVEN_VERSION_MINOR 0x30
#define SSHEVEN_VERSION_PRERELEASE 0x01 #define SSHEVEN_VERSION_PRERELEASE 0x01
/* options: development, alpha, beta, release */ /* options: development, alpha, beta, release */