update docs for new release
This commit is contained in:
parent
42c5576595
commit
b93a3246e0
3
README
3
README
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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>
|
||||||
|
|
||||||
|
@ -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.
|
||||||
|
@ -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
|
||||||
|
@ -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
|
||||||
|
5
relnotes
5
relnotes
@ -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:
|
||||||
|
@ -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>"
|
||||||
|
Loading…
Reference in New Issue
Block a user