Skip to content

Commit

Permalink
updated for a new release
Browse files Browse the repository at this point in the history
  • Loading branch information
joysfera committed Dec 29, 2023
1 parent 37f4f03 commit fefb7d4
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 7 deletions.
23 changes: 23 additions & 0 deletions DOC/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
Version 5.2.0 (2023/12/29)
==========================

New features:
-------------
* possibility of renaming the host device "letter" from previously hardcoded
H: to any letter but C: (cassette), E:, K: and S:
So if you have e.g. a program with hardcoded "D:" (as for diskette) you
can now use it on a host device as well by renaming the host device to D:
either via the Emulation configuration -> Host device settings menu
or using command line option

-Hdevicename <X>

* little thing but useful (for me at least): tooltip in the settings
menu that reminds users there are virtual host devices with
automatic ATASCII<->ASCII conversions (mainly end-of-line character).

Extremely useful for all text files including ATARI BASIC source code
that can be stored using LIST "H6:PROGRAM.LST" and read back using
ENTER "H6:PROGRAM.LST" (H6 = H1 with ASCII conversion, etc.).


Version 5.1.0 (2023/12/28) - released at SILK
==========================

Expand Down
2 changes: 1 addition & 1 deletion DOC/README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Free and portable Atari 800 Emulator for everybody, Version 5.1.0
Free and portable Atari 800 Emulator for everybody, Version 5.2.0
-----------------------------------------------------------------

Copyright (C) 1995 David Firth. E-Mail: david@signus.demon.co.uk
Expand Down
4 changes: 2 additions & 2 deletions README.TXT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Atari800 emulator version 5.1.0
Atari800 emulator version 5.2.0
-------------------------------

This is a free and portable Atari 8-bit computer and 5200 console emulator,
Expand Down Expand Up @@ -28,7 +28,7 @@ go to original author David Firth and all the people that contributed since then
EnJoy!

Petr Stehlik
Dec 28, 2023
Dec 29, 2023

E-mail: pstehlik@sophics.cz

Expand Down
2 changes: 1 addition & 1 deletion atari800.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# generic defines used by all distributions.
#
%define ver 5.1.0
%define ver 5.2.0
# When adding a target, add an $options_<target_name> variable to the %build
# section, and add %{_bindir}/%{name}-<target_name> to the files list in the
# %files section.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dnl along with Atari800; if not, write to the Free Software
dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

AC_PREREQ(2.57)
AC_INIT(Atari800, 5.1.0, pstehlik@sophics.cz)
AC_INIT(Atari800, 5.2.0, pstehlik@sophics.cz)
AC_CONFIG_SRCDIR(src/atari.c)
AC_CONFIG_HEADER(src/config.h)
AC_CONFIG_MACRO_DIR([m4])
Expand Down
2 changes: 1 addition & 1 deletion src/atari800.man
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH ATARI800 1 "2023-12-28" "Atari800 5.1.0"
.TH ATARI800 1 "2023-12-29" "Atari800 5.2.0"

.SH NAME
atari800 \- emulator of Atari 8-bit computers and the 5200 console
Expand Down
2 changes: 1 addition & 1 deletion util/export
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This scripts helps with building the source .tar.gz file

VER_MAJOR=5
VER_MINOR=1
VER_MINOR=2
VER_MICRO=0
#
VERSION=$VER_MAJOR"."$VER_MINOR"."$VER_MICRO
Expand Down

0 comments on commit fefb7d4

Please sign in to comment.