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

SyncTERM 1.5

parent 37766c22
No related branches found
No related tags found
No related merge requests found
Pipeline #8166 passed
Version 1.5b Version 1.5
------------ ------------
Fix Prestel regressions
Use the SAA5050 font for Prestel mode
Prestel mode is 25 rows, not 24
Add setting to invert mouse wheel
Support web-based dialing directories Support web-based dialing directories
Alt+Home now centres the window on the screen Alt+Home now centres the window on the screen
Add setting to invert mouse wheel
Option to defer telnet negotiation Option to defer telnet negotiation
Use the SAA5050 font for Prestel mode
Add BBC Micro Mode 7 mode
Remove delays when sending login data Remove delays when sending login data
Fix Prestel regressions
Version 1.5a
------------
Fix RIP rendering regressions Fix RIP rendering regressions
Fix 80x43 scrolling bottom line corruption Fix 80x43 scrolling bottom line corruption
Fix overlinking with GNUmakefile Fix overlinking with GNUmakefile
......
...@@ -12,7 +12,7 @@ set(CPACK_PACKAGE_NAME SyncTERM) ...@@ -12,7 +12,7 @@ set(CPACK_PACKAGE_NAME SyncTERM)
set(CPACK_PACKAGE_VENDOR Deuce) set(CPACK_PACKAGE_VENDOR Deuce)
set(CPACK_PACKAGE_VERSION_MAJOR 1) set(CPACK_PACKAGE_VERSION_MAJOR 1)
set(CPACK_PACKAGE_VERSION_MINOR 5) set(CPACK_PACKAGE_VERSION_MINOR 5)
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_DESCRIPTION_SUMMARY "SyncTERM is a Telnet/RLogin/SSH BBS Client")
set(CPACK_PACKAGE_INSTALL_DIRECTORY SyncTERM) set(CPACK_PACKAGE_INSTALL_DIRECTORY SyncTERM)
#set(CPACK_PACKAGE_ICON ${CMAKE_CURRENT_LIST_DIR}/syncterm.png) #set(CPACK_PACKAGE_ICON ${CMAKE_CURRENT_LIST_DIR}/syncterm.png)
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<string>SyncTERM</string> <string>SyncTERM</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>1.5b</string> <string>1.5</string>
<key>CFBundleGetInfoString</key> <key>CFBundleGetInfoString</key>
<string>An ANSI-BBS terminal which supports telnet, rlogin, and SSH</string> <string>An ANSI-BBS terminal which supports telnet, rlogin, and SSH</string>
......
:experimental: :experimental:
= SyncTERM v1.5b Manual = SyncTERM v1.5 Manual
Stephen Hurd <shurd@sasktel.net> Stephen Hurd <shurd@sasktel.net>
:toc: :toc:
......
name SyncTERM name SyncTERM
version 1.5~b-1 version 1.5-1
architecture @ARCHITECTURE_TYPE@ architecture @ARCHITECTURE_TYPE@
summary "ANSI-BBS terminal for connecting to BBSs" 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." 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 Package: syncterm
Version: 1.5b Version: 1.5
Maintainer: Deuce <shurd@sasktel.net> Maintainer: Deuce <shurd@sasktel.net>
Architecture: %%ARCH%% Architecture: %%ARCH%%
Description: ANSI Terminal for BBSs Description: ANSI Terminal for BBSs
......
...@@ -2,8 +2,8 @@ resource app_version ...@@ -2,8 +2,8 @@ resource app_version
{ {
major = 1, major = 1,
middle = 5, middle = 5,
variety = B_APPV_BETA, variety = B_APPV_FINAL,
internal = 0, internal = 42,
short_info = "SyncTERM BBS Terminal", short_info = "SyncTERM BBS Terminal",
long_info = "SyncTERM - ANSI-BBS terminal for connecting to BBS" long_info = "SyncTERM - ANSI-BBS terminal for connecting to BBS"
}; };
......
...@@ -102,7 +102,7 @@ enum { ...@@ -102,7 +102,7 @@ enum {
#endif #endif
#endif #endif
const char *syncterm_version = "SyncTERM 1.5b" const char *syncterm_version = "SyncTERM 1.5"
#define ALPHA #define ALPHA
#ifdef _DEBUG #ifdef _DEBUG
......
#include "windows.h" #include "windows.h"
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,5,0,1 FILEVERSION 1,5,1,0
PRODUCTVERSION 1,5,0,1 PRODUCTVERSION 1,5,1,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#ifdef _DEBUG #ifdef _DEBUG
//FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE //FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE
...@@ -19,12 +19,12 @@ BEGIN ...@@ -19,12 +19,12 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "Stephen Hurd (Deuce)\0" VALUE "CompanyName", "Stephen Hurd (Deuce)\0"
VALUE "FileDescription", "SyncTERM BBS Client\0" VALUE "FileDescription", "SyncTERM BBS Client\0"
VALUE "FileVersion", "1.5b\0" VALUE "FileVersion", "1.5\0"
VALUE "InternalName", "syncterm.exe\0" VALUE "InternalName", "syncterm.exe\0"
VALUE "LegalCopyright", "Stephen Hurd (Deuce)\0" VALUE "LegalCopyright", "Stephen Hurd (Deuce)\0"
VALUE "OriginalFilename", "syncterm.exe\0" VALUE "OriginalFilename", "syncterm.exe\0"
VALUE "ProductName", "SyncTERM\0" VALUE "ProductName", "SyncTERM\0"
VALUE "ProductVersion", "1.5b\0" VALUE "ProductVersion", "1.5\0"
END END
END END
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment