update docs for new release

This commit is contained in:
Chris Cromer 2019-05-09 19:40:42 -04:00
parent 42c5576595
commit b93a3246e0
Signed by: cromer
GPG Key ID: 39CC813FF3C8708A
8 changed files with 21 additions and 7 deletions

3
README
View File

@ -1,4 +1,4 @@
QT AGI Studio, release 1.3.0 QT AGI Studio, release 1.3.1
About About
===== =====
@ -84,6 +84,7 @@ Credits
* Helen Zommer <helen@cc.huji.ac.il> - primary development * Helen Zommer <helen@cc.huji.ac.il> - primary development
* Jarno Elonen <elonen@iki.fi> - bitmap import, current maintainer * Jarno Elonen <elonen@iki.fi> - bitmap import, current maintainer
* Chris Cromer <chris@cromer.cl> - fix build for gcc 7 with 64bit
* Nat Budin <natb@brandeis.edu> - Win32 port * Nat Budin <natb@brandeis.edu> - Win32 port
* Claudio Matsuoka <claudio@helllabs.org> - sound support * Claudio Matsuoka <claudio@helllabs.org> - sound support
* Peter Kelly <pmk@post.com> - the original Windows version * Peter Kelly <pmk@post.com> - the original Windows version

View File

@ -1,5 +1,5 @@
.\" Hey, EMACS: -*- nroff -*- .\" Hey, EMACS: -*- nroff -*-
.TH AGISTUDIO 1 "August 25, 2012" "agistudio" "QT AGI Studio 1.3.0" .TH AGISTUDIO 1 "May 1, 2019" "agistudio" "QT AGI Studio 1.3.1"
.SH NAME .SH NAME
QT AGI Studio \- an AGI adventure game development environment QT AGI Studio \- an AGI adventure game development environment
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -2,7 +2,7 @@
<HEAD> <HEAD>
<TITLE>TODO list</TITLE></HEAD> <TITLE>TODO list</TITLE></HEAD>
<BODY> <BODY>
<h1>TODO (QT AGI Studio v1.3.0)</h1> <h1>TODO (QT AGI Studio v1.3.1)</h1>
<i>This is not a development plan but rather an unsorted list of ideas. You are welcome to contribute. :-)</i> <i>This is not a development plan but rather an unsorted list of ideas. You are welcome to contribute. :-)</i>

View File

@ -1,3 +1,9 @@
agistudio (1.3.1-1) unstable; urgency=low
* New upstream release.
-- Chris Cromer <chris@cromer.cl> Thu, 09 May 2019 19:38:00 +0300
agistudio (1.3.0-1) unstable; urgency=low agistudio (1.3.0-1) unstable; urgency=low
* New upstream release. * New upstream release.
@ -27,7 +33,7 @@ agistudio (1.2.3-1) unstable; urgency=low
agistudio (1.2.2-1) unstable; urgency=low agistudio (1.2.2-1) unstable; urgency=low
* New upstream release. (Closes: #358291) * New upstream release. (Closes: #358291)
-- Jarno Elonen <elonen@debian.org> Thu, 22 Mar 2006 21:53:23 +0300 -- Jarno Elonen <elonen@debian.org> Thu, 22 Mar 2006 21:53:23 +0300

View File

@ -10,6 +10,7 @@ Upstream authors:
Peter Kelly <ptrkelly@ozemail.com.au> (orig. Agistudio in Pascal) Peter Kelly <ptrkelly@ozemail.com.au> (orig. Agistudio in Pascal)
Lance Ewing (the DOS Picedit) Lance Ewing (the DOS Picedit)
Nat Budin <natb@brandeis.edu> (Win32 fixes) Nat Budin <natb@brandeis.edu> (Win32 fixes)
Chris Cromer <chris@cromer.cl> (gcc7 and 64bit fixes)
Upstream copyright: Upstream copyright:
2000, 2002, 2003 Helen Zommer 2000, 2002, 2003 Helen Zommer

View File

@ -1,10 +1,10 @@
Summary: AGI integrated development environment Summary: AGI integrated development environment
Name: agistudio Name: agistudio
Version: 1.3.0 Version: 1.3.1
Release: 0 Release: 0
Copyright: GPL Copyright: GPL
Group: Development/Tools Group: Development/Tools
Source: agistudio-1.3.0.tar.gz Source: agistudio-1.3.1.tar.gz
URL: http://agistudio.sourceforge.net/ URL: http://agistudio.sourceforge.net/
%description %description
AGI (Adventure Game Interpreter) is the adventure game engine used by AGI (Adventure Game Interpreter) is the adventure game engine used by

View File

@ -1,3 +1,8 @@
Release notes for QT AGI Studio version 1.3.1 (2019-05-09)
- fixes
* fixed code to compile under gcc7 for 64bit distros
Release notes for QT AGI Studio version 1.3.0 (2012-08-25) Release notes for QT AGI Studio version 1.3.0 (2012-08-25)
- new features: - new features:

View File

@ -889,7 +889,7 @@ About::About(QWidget *parent, const char *name )
about->setTextFormat(Qt::RichText); about->setTextFormat(Qt::RichText);
about->setReadOnly(true); about->setReadOnly(true);
about->setText( about->setText(
"<center><b>QT AGI studio v. 1.3.0</b><br>" "<center><b>QT AGI studio v. 1.3.1</b><br>"
"http://agistudio.sourceforge.net/<br>" "http://agistudio.sourceforge.net/<br>"
"<br>" "<br>"
"<b>Authors:</b><br>" "<b>Authors:</b><br>"
@ -897,6 +897,7 @@ About::About(QWidget *parent, const char *name )
"Jarno Elonen (elonen@iki.fi)<br>" "Jarno Elonen (elonen@iki.fi)<br>"
"<br>" "<br>"
"<b>and also:</b><br>" "<b>and also:</b><br>"
"Chris Cromer (chris@cromer.cl)<br>"
"Peter Kelly (pmk@post.com)<br>" "Peter Kelly (pmk@post.com)<br>"
"Lance Ewing (lance.e@ihug.co.nz)<br>" "Lance Ewing (lance.e@ihug.co.nz)<br>"
"Claudio Matsuoka (claudio@helllabs.org)<br>" "Claudio Matsuoka (claudio@helllabs.org)<br>"