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

Known bugs are fixed... it's now Beta.

parent 37f7280b
No related branches found
No related tags found
No related merge requests found
Version 1.2
-----------
Aspect ratio enforcement
Support internal smooth scaling
Support toggling scaling blocky vs smooth
Support for telnets
Support for SSH "none" auth method
Support for VGA mode
Start of RIP and SkyPix support (incomplete)
Added a comment field to listings
Default connection type changed to SSH
ALT-Left/ALT-Right for window size snapping, ALT-Up/ALT-Down for speed
Use the colodore C64 palette with "most common" adjustments
On Windows, indicate "awareness" for "High DPI"
Prefer X11 mode over SDL mode
Fix scrolling with left/right margins
Resumed ZModem ETA estimation fix
Version 1.1
-----------
Don't wait for keypress after file transfer completes
......
......@@ -15,7 +15,7 @@ set(CPACK_RESOURCE_FILE_LICENSE ${CMAKE_CURRENT_LIST_DIR}/LICENCE)
set(CPACK_MONOLITHIC_INSTALL TRUE)
set(CPACK_PACKAGE_EXECUTABLES "syncterm;SyncTERM")
set(CPACK_DEBIAN_PACKAGE_NAME syncterm)
set(CPACK_DEBIAN_PACKAGE_VERSION 1.2a)
set(CPACK_DEBIAN_PACKAGE_VERSION 1.2b)
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Stephen Hurd")
INCLUDE(CPack)
######
......
......@@ -21,7 +21,7 @@
<string>SyncTERM</string>
<key>CFBundleShortVersionString</key>
<string>1.2a</string>
<string>1.2b</string>
<key>CFBundleGetInfoString</key>
<string>An ANSI-BBS terminal which supports telnet, rlogin, and SSH</string>
......
#ifndef RIPPER_H
#define RIPPER_H
void init_rip(int enabled);
#include "bbslist.h"
void init_rip(struct bbslist *bbs);
size_t parse_rip(BYTE *buf, unsigned blen, unsigned maxlen);
int rip_getch(void);
int rip_kbhit(void);
......
......@@ -61,8 +61,8 @@ static const KNOWNFOLDERID FOLDERID_ProgramData = {0x62AB5D82,0xFDC1,0x4DC3,{0x
#include "window.h"
#include "scale.h"
char* syncterm_version = "SyncTERM 1.2a"
#define ALPHA
char* syncterm_version = "SyncTERM 1.2b"
//#define ALPHA
#ifdef _DEBUG
" Debug ("__DATE__")"
#endif
......
Summary: An ANSI-BBS terminal which supports telnet, rlogin, and SSH
Name: SyncTERM
Version: 1.2a
Version: 1.2b
Release: 20071001
Copyright: GPL
Group: Applications/Communications
Source: http://prdownloads.sourceforge.net/syncterm/syncterm-1.2a/syncterm-src-1.2a.tgz
Source: http://prdownloads.sourceforge.net/syncterm/syncterm-1.2b/syncterm-src-1.2b.tgz
%description
An ANSI-BBS terminal designed to connect to remote BBSs via telnet, rlogin, or
......
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