Skip to content
Snippets Groups Projects
Commit e3474596 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Update to 1.4

parent 8696c3cf
No related branches found
Tags syncterm-1.4
No related merge requests found
Pipeline #7849 failed
Version 1.4b
Version 1.4
------------
Fix crashes in text modes due to rip code being called
Add support for JPEG XL graphics in addition to PPM
Massively improve output performance
Lower audio output volume by 12dB
Add option to configure audio output
Add support for ALT+XXX and ALT+0XXXXX key entry
Re-order BBS list entry fields
Support Shell connections on Windows 10+
Windows builds now include a .com (console) and a .exe (GUI) binary
Better socket disconnect detection in SSH and telnets sessions
Fix X11 mode scaling and fullscreen with minimal X servers
Massively improve output performance
Add option to configure audio output
Lower audio output volume by 12dB
Fix crashes in text modes due to rip code being called
Better socket disconnect detection in SSH and telnets sessions
Reimplement status bar code
Version 1.4a
------------
Re-order BBS list entry fields
Fix various Prestel mode bugs
Add support for JPEG XL graphics in addition to PPM
Fix error handling with telnets
Version 1.3
......
......@@ -11,7 +11,7 @@ set(CPACK_PACKAGE_NAME SyncTERM)
set(CPACK_PACKAGE_VENDOR Deuce)
set(CPACK_PACKAGE_VERSION_MAJOR 1)
set(CPACK_PACKAGE_VERSION_MINOR 4)
set(CPACK_PACKAGE_VERSION_PATCH beta)
set(CPACK_PACKAGE_VERSION_PATCH release)
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "SyncTERM is a Telnet/RLogin/SSH BBS Client")
set(CPACK_PACKAGE_INSTALL_DIRECTORY SyncTERM)
#set(CPACK_PACKAGE_ICON ${CMAKE_CURRENT_LIST_DIR}/syncterm.png)
......
......@@ -21,7 +21,7 @@
<string>SyncTERM</string>
<key>CFBundleShortVersionString</key>
<string>1.4b</string>
<string>1.4</string>
<key>CFBundleGetInfoString</key>
<string>An ANSI-BBS terminal which supports telnet, rlogin, and SSH</string>
......
:experimental:
= SyncTERM v1.4b Manual
= SyncTERM v1.4 Manual
Stephen Hurd <shurd@sasktel.net>
:toc:
......
name SyncTERM
version 1.4~b-1
version 1.4-1
architecture @ARCHITECTURE_TYPE@
summary "ANSI-BBS terminal for connecting to BBSs"
description "An ANSI-BBS terminal designed to connect to remote BBSs via telnet, rlogin, or SSH. Supports ANSI music and the IBM charset when possible. Will run from a console, under X11 using XLib, or using SDL."
......
Package: syncterm
Version: 1.4b
Version: 1.4
Maintainer: Deuce <shurd@sasktel.net>
Architecture: %%ARCH%%
Description: ANSI Terminal for BBSs
......
......@@ -2,8 +2,8 @@ resource app_version
{
major = 1,
middle = 4,
variety = B_APPV_BETA,
internal = 0,
variety = B_APPV_FINAL,
internal = 42,
short_info = "SyncTERM BBS Terminal",
long_info = "SyncTERM - ANSI-BBS terminal for connecting to BBS"
};
......
......@@ -102,7 +102,7 @@ enum {
#endif
#endif
const char *syncterm_version = "SyncTERM 1.4b"
const char *syncterm_version = "SyncTERM 1.4"
#define ALPHA
#ifdef _DEBUG
......
#include "windows.h"
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,4,0,1
PRODUCTVERSION 1,4,0,1
FILEVERSION 1,4,1,0
PRODUCTVERSION 1,4,1,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#ifdef _DEBUG
//FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE
......@@ -19,12 +19,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Stephen Hurd (Deuce)\0"
VALUE "FileDescription", "SyncTERM BBS Client\0"
VALUE "FileVersion", "1.4b\0"
VALUE "FileVersion", "1.4\0"
VALUE "InternalName", "syncterm.exe\0"
VALUE "LegalCopyright", "Stephen Hurd (Deuce)\0"
VALUE "OriginalFilename", "syncterm.exe\0"
VALUE "ProductName", "SyncTERM\0"
VALUE "ProductVersion", "1.4b\0"
VALUE "ProductVersion", "1.4\0"
END
END
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment