home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CDPD Public Domain Collection for CDTV 3
/
CDPDIII.bin
/
pd
/
graphics
/
viewers
/
mugiff
/
history.def
next >
Wrap
Text File
|
1993-02-19
|
4KB
|
110 lines
(*$ Implementation := FALSE *)
DEFINITION MODULE History;
(*
{* $Revision Header built automatically *************** (do not edit) ************
**
** © Copyright by Mark Rose
**
** File : MUGiff.mod
** Created on : Mittwoch, 13-Jan-93 21:13:20
** Created by : Mark Rose
** Current revision : V1.12
**
**
** Purpose
** -------
** IFF-Viewer with 24bit preview, ANIM- and XPK-support
**
** Revision V1.12
** --------------
** changed on Freitag, 19-Feb-93 10:42:49 by Mark Rose. LogMessage :
** finally included AGA-support. Thanks to Jeff Hobbs for
** helping me in finding the bugs! Optimized some things so
** executable is again shorter.
**
** Revision V1.11
** --------------
** changed on Montag, 08-Feb-93 21:54:43 by Mark Rose. LogMessage :
** added ANIM-play routine. Optimized code, executable is now
** 450 Bytes shorter than last version
**
** Revision V1.10
** --------------
** changed on Freitag, 05-Feb-93 10:00:17 by Mark Rose. LogMessage :
** Added ability to save Pix without RLEN-encoding. Finally ;^)
** Cleaned up ReqTools-FileReq call and optimized IFF.library
** opening sequence. Executable is now shorter than ever !!!
** CHANGED STATUS TO MAILWARE. REFER TO DOCUMENTATION FOR DETAILS
**
** Revision V1.09
** --------------
** changed on Freitag, 05-Feb-93 04:27:32 by Mark Rose. LogMessage :
** Added MultiSelection (requested by Markus Welte)
** Some optimizations in ReqTools-Interface (executable is now
** 240 bytes SHORTER !!!)
**
** Revision V1.08
** --------------
** changed on Freitag, 29-Jan-93 13:05:54 by Mark Rose. LogMessage :
** Optimized ReqTools-FileReq call. Saved 400 bytes.
** Executable now again under 7700 bytes!
**
** Revision V1.07
** --------------
** changed on Freitag, 29-Jan-93 02:04:16 by Mark Rose. LogMessage :
** all references to screen^.bitMap are now
** screen^.rastPort.bitMap for "future compatibility" as
** suggested by C= in the 37.10 release of their IFF-routines
** Modified FileRequester-loop to fix jerky closing of screen
**
** Revision V1.06
** --------------
** changed on Donnerstag, 28-Jan-93 13:06:43 by Mark Rose. LogMessage :
** included ReqTools FileReq. Requested by Markus Welte.
** Bugfix: giving a non-iff-file in the middle of commandline
** resulted in the rest of the line not being parsed.
**
** Revision V1.05
** --------------
** changed on Mittwoch, 27-Jan-93 17:49:11 by Mark Rose. LogMessage :
** Bugfix: small pictures (e.g. brushes) caused an overflow
** because of problems with a CAST.
**
** Revision V1.04
** --------------
** changed on Dienstag, 19-Jan-93 19:05:25 by Mark Rose. LogMessage :
** changed IDCMP-loop for faster reaction on 68000-systems
** as suggested by Thies Wellpott on AmigaLibDisk 771
**
** Revision V1.03
** --------------
** changed on Montag, 18-Jan-93 06:18:22 by Mark Rose. LogMessage :
** fixed bug in request for iff.library
** added scrolling ability, AutoRevisionHeader created
**
** Revision V1.02
** --------------
** changed on Freitag, 15-Jan-93 19:31:15 by Mark Rose. LogMessage :
** rewrite with own routines, more system-friendly
**
** Revision V1.01
** --------------
** changed on Donnerstag, 14-Jan-93 13:14:51 by Mark Rose. LogMessage :
** rewrite porting ShowIFF.c
**
** Revision V1.00
** --------------
** --- Initial release --- (port of EasyExample.c)
**
*********************************************************************************}*)
CONST (* Place all your constants beneith these ones *)
REVISION = "1.12";
REVDATE = "19-Feb-93";
REVTIME = "10:42:49";
AUTHOR = "Mark Rose";
VERNUM = 01;
REVNUM = 12;
END History.