2011-12-20  (1.98) Lucas M. Schnorr <schnorr@gmail.com>
	* New release. Second RC before 2.0.

2011-12-18  Lucas M. Schnorr <schnorr@gmail.com>
	* General/NSColor+Additions.m: bug fix, correctly parsing RGB
	colors from trace using a NSScanner. The fix considers that a RGB
	color in the trace file is defined as three values from 0 to 1
	that defines the red, green and blue components. This is defined
	in the Paje trace file format description.
	* FileReader/PajeFileReader.m: bug fix, was casting NSData to a
	NSMutableData, causing an exception when running with the Cocoa's
	NSFileHandle implementation. In Linux, the used method to read
	from the file returned a NSMutableData, hiding the bug.
	* fixing several compilation warnings

2011-12-17  Lucas M. Schnorr <schnorr@gmail.com>
	* many: Fix several compilation warnings detected by gcc, clang
	and gcc by Apple.

2011-06-01  Lucas M. Schnorr <schnorr@gmail.com>
	* General/PSortedArray.[mh]: performance optimization in array
	insertion by using a smarter algorithm; if the object is to be
	inserted in an empty array or in the last position of the array,
	just add it to the end; otherwise, do a binary insertion. This
	change benefits only the reading of un-ordered trace files.

2011-03-15  Lucas M. Schnorr <schnorr@gmail.com>
	* General/PajeType.[mh]: color dictionaries must not have keys
	with white spaces in the beginning. If values for states start
	with white spaces, we trimm them out before registering the
	colors.

2011-02-21  Lucas M. Schnorr <schnorr@gmail.com>
	* General/PajeType.[mh], General/HierarchyBrowser.m,
	General/PajeEntityInspector.m, PajeSimulator/PajeSimul+Events.m
	PajeSimulator/PajeSimul.m, ReductionFilter/BusyNode.m,
	ReductionFilter/ReduceEntityType.[mh]: types have an ident (its
	unique identification, usually the alias) and a
	description (usually its name).  Old attributes (name,
	uniqueAlias) are removed to reflect this new layout.  The -name
	method is removed, objects should call description on type to get
	its name.

2011-02-16  Lucas M. Schnorr <schnorr@gmail.com>
	* General/PajeType.[mh], PajeSimulator/PajeSimul+Events.m
	PajeSimulator/PajeSimul.m: bugfix, multiple types with same name
	are correctly managed by the simulator. Types were used as keys in
	the userEntities dictionary, but their hashes were the name, and
	not the unique identifier of the type (an optional alias).  This
	commit addresses this issue by creating a new attribute to the
	PajeType that corresponds to the alias defined in the trace or the
	name (if alias not present). PajeTypes' hash is based on this new
	attribute.

2010-12-15  Lucas M. Schnorr <schnorr@gmail.com>
	* Paje/Paje.gorm/*: bugfix, changing the selected filter on popup
	updates the current filter of the "Filter" window

2010-11-24  Lucas M. Schnorr <schnorr@gmail.com>
	* FileReader/PajeFileReader.[hm]: method to obtain the porcentage
	of the trace file that has already been read.

2010-07-13  Lucas M. Schnorr <schnorr@gmail.com>
	* FileReader/PajeFileReader.[hm], General/Protocols.h: let the
	user specify the chunk size used during the reading of a trace
	file.

2010-07-01  Lucas M. Schnorr <schnorr@gmail.com>
	* General/PajeFilter.[hm], StorageController/AnchorFilter.m:
	fixing the return type for the protocol method
	containerTypeForType (it was PajeEntityType, but it always return
	PajeContainerType).
	* Removed some compilation warnings

2010-03-10  Lucas M. Schnorr <schnorr@gmail.com>
	* PajeSimulator/SimulContainer.[mh]: maxValueForEntityType and
	minValueForEntityType were returning NSNumber* instead of
	double (as defined by the PajeFilter protocol).

2010-02-23  Benhur Stein <benhur@inf.ufsm.br>
	* Documentation/lang-paje/typeevent.tex,
	PajeSimulator/PajeSimul+Events.m, PajeSimulator/PajeSimul.m: some
	code cleanup; change the way aliases work: now, if an alias is
	defined, all references must be to the alias, they cannot be to
	the name anymore. This allows for different entities to have the
	same name when in a different container.

2009-12-23 Lucas M. Schnorr <schnorr@gmail.com>
	* Tracers/JRastro/libRastro/*: using autotools (automake, ...) to
	create a configuration environment for libRastro

2009-10-09 Lucas M. Schnorr <schnorr@gmail.com>
	* PajeSimulator/UserLink.[mh]: new method "key" for UserLink class
	so other objects are allowed to obtain the key used for the link
	and specified in the tracefile

2009-09-23 Lucas M. Schnorr <schnorr@gmail.com>
	* PajeSimulator/PajeSimul+Events.m,PajeSimul.m,SimulContainer.[h|m]:
	changes to make containers keep extra fields when specified in
	PajeCreateContainer events in the trace file. The SimulContainer
	class now has an attribute extraFields and two new methods to
	intercept queries about fields (fieldNames and valueOfFieldnamed:)

2009-05-17  Benhur Stein <benhur@inf.ufsm.br>
	* PajeSimul/SimulContainer.m: create (and use) auxiliary class to
	keep container state in chunks
	* PajeSimulator/PajeSimul: remove userNumberToContainer variable

2009-05-17  Benhur Stein <benhur@inf.ufsm.br>
    * Tracers/JRastro/libRastro/many: cleanup for 64-bit compiling

2008-05-17  Benhur Stein <benhur@inf.ufsm.br>
    * SpaceTimeViewer/DrawView+Drawing.m,HirarchyRuler.m: small changes
      to make it compile and work on windows

2008-04-19  Benhur Stein <benhur@inf.ufsm.br>
    * AggregatingFilter/AggregatingChunkArray.m General/EntityChunk.h
      General/EntityChunk.m PajeEventDecoder/PajeEventDecoder.h
      PajeEventDecoder/PajeEventDecoder.m PajeSimulator/SimulChunk.h
      PajeSimulator/SimulChunk.m: chunk code cleanup

2008-03-07  Benhur Stein <benhur@inf.ufsm.br>
    * General/: correct some #includes

2008-02-21  Benhur Stein <benhur@inf.ufsm.br>
    * SpaceTimeViewer/DrawView.m: register a default size for aggregation

2008-02-21  Benhur Stein <benhur@inf.ufsm.br>
    * Paje/PajeController.m General/NSDate+Additions.m: move locale
      setting to a more global place

2008-02-21  Benhur Stein <benhur@inf.ufsm.br>
    * all GNUmakefile: clean some compiling/linking issues (patches by
      Yavor Doganov and Vincent Danjean)

2007-11-11  Benhur Stein <benhur@inf.ufsm.br>
    * correct some coloring issues

2007-11-06  Benhur Stein <benhur@inf.ufsm.br>
    * better display of fields

2007-11-06  Benhur Stein <benhur@inf.ufsm.br>
    * FieldFilter/FieldFilter.m, ImbricationFilter/InsetLimit.m: add
      missing method enumeratorOfCompleteEntitiesTyped:...

2007-11-06  Benhur Stein <benhur@inf.ufsm.br>
    * remove a log message

2007-11-05  Benhur Stein <benhur@inf.ufsm.br>
    * SpaceTimeViewer/HierarchyRuler.m: correct typo/missing line break

2007-11-03  Benhur Stein <benhur@inf.ufsm.br>
    * better drawing code for variables

2007-11-03  Benhur Stein <benhur@inf.ufsm.br>
    * Clean some compilation warnings; simplify compilation on MacOSX and
      Linux; change installations instructions in README

2007-07-19  Benhur Stein <benhur@inf.ufsm.br>
    * */*.nib: add missing files

2007-07-19  Benhur Stein <benhur@inf.ufsm.br>
    * General/GNUmakefile: define installation domain; General framework
      needs to be installed separately, before compiling Paje
    * README: change installation howto

2007-07-19  Benhur Stein <benhur@inf.ufsm.br>
    * */GNUmakefile: make General into a framework

2007-07-19  Benhur Stein <benhur@inf.ufsm.br>
	* AggregatingFilter/AggregatingChunk.m: use -latestTime instead of
      [lastEntity time]
	* General/PajeEntityInspector.m: change box size calculations so that it
      looks better on Mac
    * Paje/PajeTraceController.m: change default order of filters
    * SpaceTimeViewer/DrawView+Drawing.m: change way of highlighting entities
    * SpaceTimeViewer/DrawView.h: add aux variables for new highlighting
    * SpaceTimeViewer/DrawView.m: call new highlighting
    * SpaceTimeViewer/HierarchyRuler.m: change drawing of ruler to a way
      that is compatible with MacOSX
    * SpaceTimeViewer/STLayoutEditor.[hm]: add steppers for editing numbers
    * SpaceTimeViewer/Shape.m: correct some shapes

2007-07-19  Benhur Stein <benhur@inf.ufsm.br>
	* General/Association.m, General/CStringCallBacks.m,
	  General/NSArray+Additions.m, General/NSDate+Additions.h, 
	  General/PajeFilter.m, General/PajeType.m, General/Protocols.h,
	  General/UniqueString.m, OrderFilter/Order.m, Paje/PajeController.m,
	  SpaceTimeViewer/DrawView+Finding.m: change some small incompatibilities
	  with MacOSX (include files, type declarations)

2007-07-19  Benhur Stein <benhur@inf.ufsm.br>
	* ReductionFilter/ReduceEntity.m, SpaceTimeViewer/STEntityTypeLayout.m,
	  SpaceTimeViewer/STLayoutEditor.m, StatViewer/StatArray.m: rename
	  subclassResponsibility to _subclassResponsibility (does not exist in Mac)

2007-07-19  Benhur Stein <benhur@inf.ufsm.br>
	* ContainerFilter/ContainerSelector.nib, OrderFilter/Order.nib,
	  EntityTypeFilter/EntityTypeSelector.nib, Paje/Paje.nib,
	  FieldFilter/FieldFilter.nib, ReductionFilter/ReductionFilter.nib,
	  General/HierarchyBrowser.nib, SpaceTimeViewer/STEntityTypeLayout.nib,
	  General/PajeEntityInspector.nib, SpaceTimeViewer/SpaceTime.nib,
	  General/SourceTextViewer.nib, StatViewer/StatViewer.nib,
	  ImbricationFilter/InsetLimit.nib: new interface files for MacOSX
	* ContainerFilter/GNUmakefile, EntityTypeFilter/GNUmakefile,
	  FieldFilter/GNUmakefile, General/GNUmakefile,
	  ImbricationFilter/GNUmakefile, OrderFilter/GNUmakefile,
	  Paje/GNUmakefile, ReductionFilter/GNUmakefile,
	  SpaceTimeViewer/GNUmakefile, StatViewer/GNUmakefile: declare nib files
	  as resources

2007-07-19  Benhur Stein <benhur@inf.ufsm.br>
	* General/Macros.h: declare debug log macros missing in MacOSX

2007-07-18  Benhur Stein <benhur@inf.ufsm.br>
	* FileReader/PajeFileReader.m: remove file compression support
	  when on MacOSX (GNUstep extension)

2007-07-18  Benhur Stein <benhur@inf.ufsm.br>
	* EntityTypeFilter/EntityTypeSelector.m: make ColoredSwitchButtonCell
	  appear on MacOSX; add missing enumerator method

2007-07-18  Benhur Stein <benhur@inf.ufsm.br>
	* AggregatingFilter/AggregateValue.[hm]: avoid inter-bundle
	dependency (derive from PajeEntity instead of UserValue)

2007-07-18  Benhur Stein <benhur@inf.ufsm.br>
	* AggregatingFilter/AggregateEvent.h, StatViewer/PieCell.m:
	  correct method name (subValueAtIndex:)

2007-07-18  Benhur Stein <benhur@inf.ufsm.br>
	* General/PajeEvent.m: fix 'for' limit (bug report from Lucas Schnorr)

2007-03-11  Benhur Stein <benhur@inf.ufsm.br>
	* Change makefiles to be compatible with gnustep-make v2

2007-02-27  (1.97) Vincent Danjean <Vincent.Danjean@ens-lyon.org>
	* New release. First RC before 2.0 ;-)

2007-02-16  Benhur Stein <benhur@inf.ufsm.br>
	* put version info

2007-02-16  Benhur Stein <benhur@inf.ufsm.br>
	* change chunk sizes.
	* version 1.97 (first pre 2.0)

2007-02-16  Benhur Stein <benhur@inf.ufsm.br>
        * AggregatingFilter/AggregatingFilter.m: correct wrong enumerator use

2007-02-16  Benhur Stein <benhur@inf.ufsm.br>
        * SpaceTime/DrawView+Drawing.m: better drawing of incomplete links
          and min/max values

2007-02-16  Benhur Stein <benhur@inf.ufsm.br>
	* AggregatingFilter/AggregatingChunk.m: remove debug messages

2007-02-16  Benhur Stein <benhur@inf.ufsm.br>
        * SpaceTime/DrawView.m: test for nil window when drawing;
          correct trackingRect setting.

2007-02-15  Benhur Stein <benhur@inf.ufsm.br>
        * General/EntityChunk.h: added missing method declarations
        * PajeSimulator/PajeSimul.h: ditto
        * PajeSimulator/SimulChunk.h: ditto
        * SpaceTimeViewer/STController: abort initialisation if interface
          cannot be loaded

2007-02-15  Benhur Stein <benhur@inf.ufsm.br>
        * SpaceTimeViewer/STController: better initialisation code for when
          more than one interface file is loaded

2007-02-15  Benhur Stein <benhur@inf.ufsm.br>
        * ReductionFilter/BusyArray: add new enumerator
        * ReductionFilter/BusyNode: add new enumerator
        * ReductionFilter/ReduceEntity: add min/maxValue methods
        * ReductionFilter/ReduceEntityType: call new notification limitsChanged
          instead of dataChanged

2007-02-15  Benhur Stein <benhur@inf.ufsm.br>
        * AggregatingFilter/AggregatingChunk: new class
        * AggregatingFilter/AggregatingChunkArray: move aggregator to 
          AggregatingChunk class; major refactoring, removing most subclasses
        * AggregatingFilter/AggregatingFilter.m: clear cache when
          hierarchyChanged
        * AggregatingFilter/EntityAggregator: implement OneLinkAggregator,
          auxiliary class for LinkAggregator (aggregates one src-dest pair);
          retain temporary times;
        * AggregatingFilter/GNUmakefile: compile new file

2007-02-15  Benhur Stein <benhur@inf.ufsm.br>
        * PajeSimulator/SimulContainer: remove missing chunk notif;
          PajeSimulator/UserLink: better comparision of matching links,
          should work when re-simulating

2007-02-15  Benhur Stein <benhur@inf.ufsm.br>
        * PajeSimulator/SimulChunk: cope with changes in EntityChunk;
          remove aggregation subclasses;
          test for indexOfLastObject... returning NSNotFound

2007-02-14  Benhur Stein <benhur@inf.ufsm.br>
        * General/ChunkArray: use exception instead of notif for missing chk;
          add new enumerators
        * General/EntityChunk.[hm]: use new enumerators; store entities here,
          not in subclasses.
        * General/PSortedArray: new enumerators
        * General/NSArray+Additions.m: allow range out of array

2007-02-14  Benhur Stein <benhur@inf.ufsm.br>
        * FileReader: add support for reading gzipped files
          add control of when a chunk can end
        * PajeEventDecoder: ditto
        * PajeSimulator: ditto

2007-02-14  Benhur Stein <benhur@inf.ufsm.br>
	* add timeLimitsChanged notification for better control of when to
	  recalculate layouts

2007-02-14  Benhur Stein <benhur@inf.ufsm.br>
	* Paje/PajeTraceController.m; PajeSimulator/PajeSimul.m:
	  call missingChunk directly instead of thru a notification

2007-02-14  Benhur Stein <benhur@inf.ufsm.br>
	* Paje/Paje*Controller.[hm]: cleaned finalisation code

2007-02-14  Benhur Stein <benhur@inf.ufsm.br>
	* Paje/Paje.gorm: small changes in interface file

2006-11-02  Benhur Stein <benhur@inf.ufsm.br>
        * SpaceTimeViewer/DrawView.m: corrected trackingRect handling
        * SpaceTimeViewer/SpaceTime.gorm: corrected autosizing

2006-10-30  Benhur Stein <benhur@inf.ufsm.br>
        * EntityTypeFilter/EntityTypeSelector.m: indentation;
          removed unused code
        * General/ChunkArray.m,EntityChunk.m,PajeEvent.[hm],PajeType.[hm]:
          removed debug or unused code
        * SpaceTimeViewer/Shape.m: remove unused code
        * PajeEventDecoder/PajeEventDecoder.[hm]: removed unused code
        * PajeSimulator/PajeSimul.[hm],SimulChunk.m,UserLink.m,UserState.m:
          removed unused code
        * AggregatingFilter/AggregatingChunkArray.m: removed unused code
        * StorageController/Encapsulate.m: removed unused code
        * StorageController/*Aggreg*[hm]: removed files moved to
          AggregatingFilter/

2006-10-29  Benhur Stein <benhur@inf.ufsm.br>
	* */*: rewrote file reading and simulation for better speed.
          (events are kept pointing into original string from file;
          events cannot be retained anymore;
          fields are made into objects only when needed, by the simulator).
          new AggregatingFilter, with some code from StorageController;
          completed missing entity types (values); still needing some
          refactoring.
          made distinction between -value and -doubleValue for all entity types.

2006-10-29  Benhur Stein <benhur@inf.ufsm.br>
	* SpaceTimeDiagram/*: major overhaul in drawing code, mainly to
	  substitute PS functions by NSBezierPath.
	  variables now have a vertical scale; all variables use the same
	  scale in a container.

2006-06-24  Benhur Stein <benhur@inf.ufsm.br>
        * StorageController/AggregateEvent.m: get startTime and endTime of
          entity to aggregate separetely (for when it is already an aggregation)
        * StorageController/AggregatingChunkArray.[hm]: new initialisation
          method that returns a subclass depending on entityType;
          new AggregatingEventChunkArray subclass;
          in aggregateEntitiesUntilTime:, try to aggregate entities at end, when
          there is an interval without entities just before time.
        * StorageController/Encapsulate.m: use new initialisation method;
          support for aggregating events as well as states
        * StorageController/EventAggregator.[hm]: new method aggregateBefore:;
          take into account possibility of aggregated events have different
          start and end times (when already aggregated).

2006-06-22  Benhur Stein <benhur@inf.ufsm.br>
	* StorageController/AggregatingChunkArray.[hm]: refactored to define
	  private subclasses for each entity type
	* StorageController/Encapsulate.m: use new interface to AggChArr.

2006-06-20  Benhur Stein <benhur@inf.ufsm.br>
        * PajeSimulator/UserEvent.[hm]: -setEvent: new method
        * PajeSimulator/UserLink.[hm]: remove direct access to event ivar
        * StorageController/EventAggregator.[hm]: changed maxDuration to
          aggregationDuration; added a new initialization method; refactored
          some methods; changed to agglomerate events added in increasing
          date; added copyWithZone: method
        * StorageController/StateAggregator.[hm]: some refactoring;
          changed aggregation to work with states being added in increasing 
          endTime order; added copyWithZone: method
        * StorageController/AggregateState.m: get entities in reverse order
        * StorageController/AggregatingChunkArray.[hm]: new class
        * StorageController/GNUmakefile: include new class
        * General/ChunkArray.[hm]: new method for enumeration of only completed
          entities, necessary for state aggregation; chunks are now ordered
          by startTime; send notification when accessing an empty chunk (chunks
          are no longer removed, they are emptied)
        * StorageController/Encapsulate.[hm]: Most functionality removed -- no
          longer enumerates entities, enumeration is now done directly by
          containers. New code for controlling aggregation of states. 
          This will eventually go into a new filter.
        * EntityChunk.[hm]: chunks can be emptied. A chunk keeps its state.
          Three new methods to change state (-freeze, -activate, -empty).
          The class keeps a list in LRU order of all chunks, to be emptied by
          controller. New enumerators for accessing data in forward or reverse
          order (forward enums needed by agglomerators). Some methods from
          SimulChunk migrated to here.
        * General/EntityDescriptor.h: add missing newline at end of file.
        * EntityTypeFilter/EntityTypeSelector.m: change method decl
        * General/FilteredEnumerator.m: -nextObject rewriten
        * General/MultiEnumerator.[hm]: new initializer
        * General/PSortedArray.[hm]: new auxiliary methods (lastObject,
          indexOfFirstObjectAfterValue:, indexOfLastObjectBeforeValue:)
        * General/PajeContainer.[hm]: declare new enumeration methods
        * Paje/PajeController.[hm]: new method -bundleWithName: for loading/
          keeping track of loaded bundles
        * Paje/PajeTraceController.[hm]: new way of loading/connecting bundles,
          following a config structure (still fixed, should be read from
          a config file); remove code for checkpointing, now all info needed
          for resimulation is kept by containers, indexed by "chunkNumber";
          reading of each chunk is started by calling startChunk:, components
          must know how to restart a chunk;
          new support for conversion of time into chunkNumber.
        * many files: removed encode/decodeCheckPointWithCoder: method
        * PajeEventDecoder.[hm]: keep info for each chunk;
          implement -startChunk: and endOfChunk; some cleaning on -init.
        * PajeFileReader.[hm]: same thing; change class name to FileReader
        * PajeSimulator/PajeSimul.[hm]: same thing; 
        * PajeSimulator/PajeSimul+Events.m: some optimizations for when
          simulation is being replayed
        * General/Protocols.h: add -startChunk: and -endOfChunk methods
        * PajeSimulator/SimulChunk.[hm]: some methods refactored into super;
          implement simulation of each entity event here (from SimulContainer);
          better error for illegal events (in wrong entity type).
          Each chunk now keeps the entities that finish in its lifetime
          (those are freed when the chunk is emptied) and entities that
          exist during its lifetime but finish after it (those are never
          freed and are used for resimulating). AggregateStateChunk: new
          subclass to help with aggregation of states (should not be here).
          still needs some refactoring and better implementation of 'variable'
          entities.
        * SimulContainer.[hm]: methods for reverse/forward enumeration of
          entities; moved most of entity simulation into SimulChunk.
        * General/PajeFilter.[hm]: declare new methods -startChunk:,
          -endOfChunk,
          -enumeratorOfCompleteEntitiesTyped:inContainer:fromTime:toTime:
          minDuration:

2006-03-13  (1.4.0) Vincent Danjean <Vincent.Danjean@ens-lyon.org>
        * New release. All new features seem to work.

2006-03-08  Benhur Stein <benhur@inf.ufsm.br>
        * General/NSMatrix+Additions.m: remove uses of performSelector:
          returning BOOL (GCC4 incompatibility)

2006-03-08  Benhur Stein <benhur@inf.ufsm.br>
	* FieldFilter/FieldFilter.m, EntityTypeFilter/EntityTypeSelector.m,
          ContainerFilter/ContainerSelector.m: change filtering method for GCC4

2006-03-08  Benhur Stein <benhur@inf.ufsm.br>
	* General/EntityChunk.[hm]: change signature of filtering method
          (isEntity:laterThan: becames filterEntity:laterThan:)
        * PajeSimulator/SimulChunk.m: use it
        * General/FilteredEnumerator.m: use new signature on performed method

2006-03-08  Benhur Stein <benhur@inf.ufsm.br>
	* General/HierarchyBrowser.m, General/PajeType.m: remove some more
	  GCC4 warnings

2006-03-08  Benhur Stein <benhur@inf.ufsm.br>
	* ContainerFilter/ContainerSelector.h,
	  EntityTypeFilter/EntityTypeSelector.h, NSDate+Additions.m,
	  General/PajeContainer.m, General/PajeEvent.m, General/PajeFilter.h,
	  General/PajeFilter.m, General/PajeType.h,
	  PajeSimulator/SimulContainer.m, SpaceTimeViewer/DrawView.h:
	  remove some warnings when compiling on gcc4

2006-02-10  Benhur Stein <benhur@inf.ufsm.br>
	* GNUmakefile: change installation dir to GNUSTEP_LOCAL_ROOT;
	  installation in GNUSTEP_USER_ROOT is buggy on GNUstep

2006-01-31  Benhur Stein <benhur@inf.ufsm.br>
	* Tracers: new directory
	* Tracers/JRastro: new directory, placeholder for JRastro, a tracer
	  for java programs.

2006-01-30  Benhur Stein <benhur@inf.ufsm.br>
	* PajeSimulator/SimulChunk.m: implement missing methods in  EventChunk

2006-01-29  Benhur Stein <benhur@inf.ufsm.br>
        * General/Association.m: retain decoded object
        * General/ChunkArray.m: correct removing of chunks
        * General/EntityChunk: implement NSCopying protocol; do not retain
          entityType and container
        * General/PSortedArray.[hm]: implement NSCopying protocol
        * General/PajeEntity.m: do not encode entityType and container;
          new method setEntityType:
        * General/PajeEntityInspector.m: release filter on dealloc
        * OrderFilter/Order.m: remove compilation warning
        * OrderFilter/OrderKey.[hm]: remove compilation warning
        * PajeSimulator/EventNames.h: remove compilation warning
        * PajeSimulator/PajeSimul+Events.m: commented some warnings on entity
          redefinition
        * PajeSimulator/PajeSimul.[hm]: remove encoding of start/endTime
        * PajeSimulator/SimulContainer.[hm]: cleanup and remove some methods;
          more changes to operate with chunks; redone writing of checkpoints,
          they are much smaller now
        * StatViewer/StatViewer.m: remove one memory leak (there are more)
        * StorageController/Encapsulate.m: make it work with chunks and
          chunkarrays

2006-01-25  Benhur Stein <benhur@inf.ufsm.br>
        * General/Protocols.h: add endOfChunk method to PajeSimulator protocol
        * Paje/PajeTraceController.m: call endOfChunk on simulator
        * PajeSimulator/PajeSimul.[hm]: new method endOfChunk
        * General/EntityChunk.[hm]: enumeratorOfAllEntities new method
        * General/PSortedArray.[hm]: removeAllObjects new method; implement 
          NSCopying protocol
        * PajeSimulator/SimulContainer.[hm]: chunkOfType: new method; change
          simulation to put new entities in chunks instead of sending to
          encapsulator; endOfChunk new method;
        * PajeSimulator/SimulChunk: new class
        * PajeSimulator/GNUmakefile: add SimulChunk
          (altered from branch by Edmar Pessoa Arajo Neto)
	* General/TimeList.[hm]: removed class

2006-01-25  Benhur Stein <benhur@inf.ufsm.br>
        * General/PSortedArray.[hm]: -reverseEnumerator* new methods;
          removed specific enumerator, use range enumerator in array instead.

2006-01-24  Benhur Stein <benhur@inf.ufsm.br>
	* PajeSimulator/SimulContainer.[hm], PajeSimul+Events.m: move
          simulation of newEvent events to container, like other events.

2006-01-24  Benhur Stein <benhur@inf.ufsm.br>
	* General/ChunkArray.[hm]: new files
          (from branch by Edmar Pessoa Arajo Neto)
        * General/PSortedArray.[hm]: -removeObjectsInRange: new method
        * General/GNUmakefile: include new files

2006-01-24  Benhur Stein <benhur@inf.ufsm.br>
	* General/EntityChunk.[hm]: new files
          (from branch by Edmar Pessoa Arajo Neto)

2006-01-24  Benhur Stein <benhur@inf.ufsm.br>
	* General/NSArray+Additions.[hm]: new files, implement range enumeration
	  of objects in an array (from branch by Edmar Pessoa Arajo Neto)

2006-01-08  Benhur Stein <benhur@inf.ufsm.br>
	* SpaceTimeViewer/DrawView+Drawing.m SpaceTimeViewer/DrawView+Mouse.m 
	  SpaceTimeViewer/DrawView.h SpaceTimeViewer/DrawView.m 
	  SpaceTimeViewer/STController.m: cleanup in time selection code

2006-01-07  Benhur Stein <benhur@inf.ufsm.br>
	* SpaceTimeViewer/DrawView+Drawing.m, SpaceTimeViewer/DrawView.m: code
	  cleanup & use NSBezierPath to draw states

2006-01-06  Benhur Stein <benhur@inf.ufsm.br>
	* ReductionFilter/BusyArray.h, ReductionFilter/BusyArray.m,
	  ReductionFilter/ReduceEntityType.m: code cleanup & better reverse
	  enumeration

2006-01-06  Benhur Stein <benhur@inf.ufsm.br>
	* ReductionFilter/ReduceEntityType.m,
	  SpaceTimeViewer/DrawView+Drawing.m,
	  SpaceTimeViewer/DrawView+Finding.m, StatViewer/StatViewer.m,
	  StorageController/Encapsulate.m: reverse object enumeration, so that
	  they are in the right drawing order

2006-01-06  Benhur Stein <benhur@inf.ufsm.br>
	* ContainerFilter/ContainerSelector.m,
	  EntityTypeFilter/EntityTypeSelector.m, General/Association.m,
	  General/HierarchyBrowser.m, General/PSortedArray.m,
	  General/PajeEntityInspector.m, General/Protocols.h,
	  OrderFilter/Order.m, Paje/PajeController.m, PajeSimulator/PajeSimul.m,
	  SpaceTimeViewer/STLayoutEditor.m, SpaceTimeViewer/Shape.m: remove
	  compiler warnings

2005-12-26  Benhur Stein <benhur@inf.ufsm.br>
	* StatViewer/StatViewer.[hm]: correctly declare cell; remove .h
          inclusion

2005-12-26  Benhur Stein <benhur@inf.ufsm.br>
	* General/CondensedEntitiesArray.[hm]: added totalDuration variable
          and access methods
	* StorageController/AggregateState.m: -exclusiveDuration: add method
	* General/NSString+Additions.[hm]: added string drawing methods from
          PieCell
	* PajeSimulator/SimulContainer.m: added a FIXME comment to stopWithEvent
	* StatViewer/GNUmakefile: removed StatValue class
	* StatViewer/StatValue.[hm]: removed files
	* StatViewer/PieCell.[hm]: major change in pie drawing code
	* StatViewer/StatArray.[hm]: mostly rewritten
	* StatViewer/StatViewer.gorm: modified interface
	* StatViewer/StatViewer.[hm]: reflect interface changes

2005-12-26  Benhur Stein <benhur@inf.ufsm.br>
	* PajeSimulator/PajeSimul.m: -inputEntity: check for unknown event

2005-10-14  Benhur Stein <benhur@inf.ufsm.br>
	* PajeSimulator/UserState.m: encode/decode new variables

2005-10-02  Benhur Stein <benhur@inf.ufsm.br>
        * PajeEventDecoder/PajeEventDecoder.m: forgotten on previous commit

2005-10-02  Benhur Stein <benhur@inf.ufsm.br>
        * SpaceTimeViewer/DrawView+Drawing.m: optimize drawing code for
          variables

2005-10-02  Benhur Stein <benhur@inf.ufsm.br>
        * StorageController/Encapsulate.m: remove field names discovery
        * General/PajeType.[hm]: add knownEventTypes variable and
          -isKnownEventType: method
        * PajeSimulator/User{Event,State}.m: use new method to speed up
          field name discovery

2005-10-02  Benhur Stein <benhur@inf.ufsm.br>
        * SpaceTimeViewer/DrawView+Drawing.m: new drawing code for events with
          support for aggregates.

2005-10-01  Benhur Stein <benhur@inf.ufsm.br>
        * SpaceTimeViewer/DrawView+Drawing.m: new drawing code for states with
          support for aggregates.

2005-10-01  Benhur Stein <benhur@inf.ufsm.br>
        * SpaceTimeViewer/DrawView+Drawing.m: new drawing code for variables

2005-10-01  Benhur Stein <benhur@inf.ufsm.br>
        * StatViewer/StatViewer.m: forgot on previous commit

2005-10-01  Benhur Stein <benhur@inf.ufsm.br>
        * StatViewer/PieCell.m: autosize pie; draw arc around "other" value.

2005-10-01  Benhur Stein <benhur@inf.ufsm.br>
        * SpaceTimeViewer/STEntityTypeLayout.[hm],
          SpaceTimeViewer/STLayoutEditor.{h,m,gorm}: keep user drawName choice;
          add choice for drawing pseudo-3D lines for variables

2005-10-01  Benhur Stein <benhur@inf.ufsm.br>
	* General/PajeEntityInspector.m: add inspection of new data and
	  aggregate events and states

2005-09-30  Benhur Stein <benhur@inf.ufsm.br>
        * General/Filter.[hm]: add new query methods to support aggregates
          - (BOOL)isAggregateEntity:(id<PajeEntity>)entity;
          - (unsigned)subCountForEntity:(id<PajeEntity>)entity;
          - (NSColor *)subColorAtIndex:(unsigned)index
                             forEntity:(id<PajeEntity>)entity;
          - (NSString *)subNameAtIndex:(unsigned)index
                             forEntity:(id<PajeEntity>)entity;
          - (double)subDurationAtIndex:(unsigned)index
                             forEntity:(id<PajeEntity>)entity;
          - (unsigned)subCountAtIndex:(unsigned)index
                            forEntity:(id<PajeEntity>)entity;
        * General/PajeEntity.[hm]: add similar methods for entity
        * General/Protocols.h: likewise
        * StorageController/AnchorFilter.m: likewise
        * StorageController/Aggregate{Event,State}.[hm],
          StorageController/{Event,State}Aggregator.[hm]: new classes
        * StorageController/Encapsulate.m: use aggregator classes when
          minDuration is big enough
        * StorageController/GNUmakefile: add new classes

2005-09-30  Benhur Stein <benhur@inf.ufsm.br>
        * StorageController/Encapsulate.m: forgotten change to minDuration

2005-09-30  Benhur Stein <benhur@inf.ufsm.br>
        * General/PajeFilter.[hm]: change entity enumeration method to include
          minDuration hint
          (enumeratorOfEntitiesTyped:inContainer:fromTime:toTime:minDuration:)
        * EntityTypeFilter/EntityTypeSelector.[hm],
          FieldFilter/FieldFilter.[hm], ImbricationFilter/InsetLimit.[hm], 
          ReductionFilter/BusyNode.[hm], StatViewer/StatViewer.m: reflect change
        * SpaceTimeViewer/DrawView+{Drawing,Finding}.m: reflect change
        * SpaceTimeViewer/DrawView.h: add smallEntityWidth field to keep
          the width smaller than which entities should be aggregated;
          add SMALL_ENTITY_DURATION to convert width to time duration
        * SpaceTimeViewer/DrawView.m: read "SmallEntityWidth" from defaults

2005-09-30  Benhur Stein <benhur@inf.ufsm.br>
        * StorageController/AnchorFilter.[hm]: new class (from Encapsulate)
        * StorageController/Encapsulate.[hm]: split in AnchorFilter subclass
        * StorageController/GNUmakefile: add AnchorFilter

2005-09-30  Benhur Stein <benhur@inf.ufsm.br>
        * General/Association.[hm]: new class
        * General/CondensedEntitiesArray.[hm]: new class
        * General/GNUmakefile: include new classes
        * PajeSimulator/UserState.[hm]: add innerStates and
          condensedEntitiesCount variables;
          add addInnerState: method; 
          add accessor methods condensedEntities,
          condensedEntitiesCount, subCount, subColorAtIndex:,
          subDurationAtIndex:
        * PajeSimulator/SimulContainer.m: add inner states to states

2005-09-29  Benhur Stein <benhur@inf.ufsm.br>
        * General/PajeEntity.[hm]: change duration type to double, add
          exclusiveDuration method
        * General/PajeEntityInspector.m: reflect type change; show
          exclusiveDuration if not 0
        * General/PajeFilter.[hm]: durationForEntity: is double now
        * General/Protocols.h: duration is double too
        * PajeSimulator/UserState.[hm]: add inclusiveDuration variable and
          exclusiveDuration method

2005-09-29  Benhur Stein <benhur@inf.ufsm.br>
        * General/PajeType.m: change default entity color to white

2005-09-14  Benhur Stein <benhur@inf.ufsm.br>
	* General/PajeEntity.h: declare -duration method
        * General/PajeEntityInspector.h: new fields for executing script
        * General/PajeEntityInspector.m: further changes in layout of boxes;
          window size changes dynamically with content; add souurce/destination
          fields if existent in entity -> can remove from specific inspectors
        * General/PajeEntityInspector.gorm: add script box
        * PajeSimulator/User{Event,Link,State}.[hm]: remove Inspector
        * ReductionFilter/BusyState.m: remove Inspector call
        * ReductionFilter/GNUmakefile: remove ReduceEntityInspector
        * ReductionFilter/ReduceEntityInspector.{h,m,gorm}: removed

2005-08-28  Benhur Stein <benhur@inf.ufsm.br>
	* General/PajeEntityInspector.{m,h,gorm}: size text fields according
	  to contents size
	* General/DataScanner.m: allow \n in strings

2005-01-23 (1.3.3) Vincent Danjean <Vincent.Danjean@ens-lyon.org>
	* New official release 
	  - statviewer available
          - trace files read by chuncks

2005-07-03  Benhur Stein <benhur@inf.ufsm.br>
	* PajeEventDecoder/PajeEventDecoder.m: use Assign macro

2005-06-29  Benhur Stein <benhur@inf.ufsm.br>
	* FileReader/PajeFileReader.h: changed file read chunk size to 1MB
	* PajeSimulator/PajeSimul.[hm]: use NSMapTable instead of NSDictionary
	  as simulation dispatch table
	* SpaceTimeViewer/STEntityTypeLayout.[hm]: set height for variables in
	  container, instead of variable types
	* SpaceTimeViewer/STEntityTypeLayoutController.[hm,gorm]: refactoring,
	  separation of layout editor classes
	* SpaceTimeViewer/STLayoutEditor.[hm]: new files
	* SpaceTimeViewer/GNUmakefile: add new files
	* SpaceTimeViewer/HierarchyRuler.m: remove names of variables from
	  ruler

2005-06-26  Benhur Stein <benhur@inf.ufsm.br>
	* SpaceTimeViewer/STController.m: workaround for GNUstep bug #13382

2005-06-25  Benhur Stein <benhur@inf.ufsm.br>
	* ContainerFilter/ContainerSelector.m,
	  EntityTypeFilter/EntityTypeSelector.m, FieldFilter/FieldFilter.m,
	  ImbricationFilter/InsetLimit.m, ReductionFilter/BusyNode.m (-dealloc): remove items of NSPopUp
	* General/PajeEntity.[hm]: entityType and container are not retained;
	  document it
	* General/PajeType.[hm]: same, for source and destContainerType
	* OrderFilter/Order.m (-dealloc): release hierarchyBrowser
	* PajeEventDecoder/PajeEventDecoder.m: make sure values in
	  eventBeingDefined are properly released
	* PajeSimulator/PajeSimul.[hm]: remove unused variable "name"; release
	  NSInvocations
	* PajeSimulator/UserLink.[hm]: source and destContainer are not
	  retained
	* SpaceTimeViewer/DrawView+Drawing.m,
	  SpaceTimeViewer/DrawView+Finding.m,
	  SpaceTimeViewer/HierarchyRuler.m: remove unused variables
	* SpaceTimeViewer/DrawView.m [-removeFromSuperview]: remove tracking
	  rectangle
	* SpaceTimeViewer/STController.m (dealloc): release layoutController
	* SpaceTimeViewer/STEntityTypeLayout.m: changed default height for
	  variables to 60 points (was 6)
	* StatViewer/StatViewer.[hm]: removed "filter"variable (use self); 
	  remove items from popups

2005-06-11  Benhur Stein <benhur@inf.ufsm.br>
	* StatViewer/StatViewer.m: do not retain filter; implement -dealloc
	* SpaceTimeViewer/STController.m: implement -windowWillClose, to inform 		  controller that it should remove this component.
	* SpaceTimeViewer/DrawView.m: do not retain filter
	* PajeSimulator/PajeSimul.[hm]: remove "simulators" class variable
        * Paje/PajeTraceController.[hm]: new method -removeComponent:
        * Paje/PajeController.[hm]: new method -closeTraceController:
        * General/PajeFilter.m: retain outputComponent
        * General/HierarchyBrowser.m: do not retain filter

2005-06-11  Benhur Stein <benhur@inf.ufsm.br>
	* Paje/PajeTraceController.[hm]: put checkpoints in a better place;
	  remove them when dealloc'ed

2005-06-06  Benhur Stein <benhur@inf.ufsm.br>
	* Documentation/lang-paje/typeevent.tex: document new "RelationKey"
	  field that entities can have to identify related entities.
	* PajeSimulator/PajeSimul.h: add relatedEntities dictionary
	* PajeSimulator/PajeSimul.m: -outputEntity:, -addRelatedEntity:toKey:,
	  -relatedEntitiesToEntity: new methods
	* StorageController/Encapsulate.m: removed -relatedEntitiesToEntity:
	  method (taken over by simulator)

2005-06-06  Benhur Stein <benhur@inf.ufsm.br>
	* PajeSimulator/PajeSimul.m (-rootInstance): implemented to return
	  rootContainer
	* SpaceTimeViewer/DrawView+Mouse.m: remove unused notification
	* SpaceTimeViewer/DrawView.[hm]: removed -rootInstance method; changed
	  calls to ask filter
	* SpaceTimeViewer/STController.m: remove obsolete fileSelected
	  notification
	* StorageController/Encapsulate.[hm]: removed local startTime, endTime
	  and rootInstance variables; changed uses to ask previous component
	  (simulator); also removed unused entityTypeToClass variable.
	  removed obsolete PajeFilenameNotification.

2005-05-22  Benhur Stein <benhur@inf.ufsm.br>
	* ContainerFilter/ContainerSelector.m: code reformating
	* EntityTypeFilter/EntityTypeSelector.m: code reformating, remove
	  call to colorChanged.. when droping color, it will come
	  automatically from previous filters.
	* General/PajeEntity.m: moved inspect method to Encapsulator's
	  -inspectEntity:
	* General/PajeEntityInspector.h: declared outlets and new/changed
	  methods
	* General/PajeEntityInspector.m: changed window layout a bit,
	  corrected some memory leaks, changed way of starting inspection --
	  now the filter is known and integration is better (mainly for
	  changing colors)
	* General/PajeEntityInspector.gorm: layout changes
	* Paje/PajeController.m: enabled alpha channel in color panel, now
	  entities can be semi-transparent.
	* ReductionFilter/ReduceEntityInspector.{h,m,gorm}: layout changes
	* SpaceTimeViewer/DrawView.m: change selection background color when a
	  color is dropped inside the time selection.
	* StatViewer/StatViewer.m: redraw when colors change
	* StorageController/Encapsulate.m: send colorChanged... notification
	  to other filters when colors are changed, get code for inspection
	  from PajeEntity.
	* General/Protocols.h, General/PajeFilter.[hm]: removed "PajeInspecting" protocol


2005-05-21  Benhur Stein <benhur@inf.ufsm.br>
	* PajeSimulator/PajeSimul+Events.m, StatViewer/StatViewer.m: remove
	  unneeded hack

2005-05-21  Benhur Stein <benhur@inf.ufsm.br>
	* General/SourceCodeReference.m: unify references

2005-05-21  Benhur Stein <benhur@inf.ufsm.br>
	* StorageController/Encapsulate.m, General/PajeFilter.[hm]:
	  new -entitySelectionChanged notification and -isSelectedEntity:
	  query
	* SpaceTimeViewer/DrawView+Drawing.m: use new query to highlight
	  selected entities
	* FieldFilter/FieldFilter.gorm,
	  FieldFilter/FieldFilterDescriptor.[hm], FieldFilter/FieldFilter.[hm]:
	  Add action to perform when applying filter (filter in, filter out or
	  highlight)
	* General/NSString+Additions.m: fix a bug in line numbering
	* General/SourceTextViewer.gorm, General/SourceTextController.[mh]:
	  correct buggy gorm file, show selected line number.

2005-05-21  Benhur Stein <benhur@inf.ufsm.br>
	* ReductionFilter/BusyArray.[hm], ReductionFilter/BusyDate.m,
	  ReductionFilter/ReduceEntity.m: fix memory leak

2005-05-07  Benhur Stein <benhur@inf.ufsm.br>
	* PajeSimulator/SimulContainer.m [-start/endUserLink...]: code cleanup

2005-05-07  Benhur Stein <benhur@inf.ufsm.br>
	* PajeSimulator/SimulContainer.m
          [-enumeratorOfEntitiesTyped:fromTime:toTime:]: new method
        * StorageController/Encapsulate.m
          [-enumeratorOfEntitiesTyped:inContainer:fromTime:toTime:]: call
          new method in container

2005-04-30  Benhur Stein <benhur@inf.ufsm.br>
	* General/NSColor+Additions.m (-contrastingWhiteOrBlackColor):
	  use less contrasting colors
	* Paje/PajeController.m (-loadAllBundles): load StatViewer bundle
	* Paje/PajeTraceController.m (-createComponentGraph): inatantiate and
	  connect statViewer to component graph; some small changes to remove
	  compiler warnings
	* PajeEventDecoder/PajeEventDecoder.m: commented some unused code
	* StatViewer/PieCell.h StatViewer/PieCell.m StatViewer/StatArray.h
	  StatViewer/StatArray.m StatViewer/StatValue.h StatViewer/StatValue.m
	  StatViewer/StatViewer.gorm StatViewer/StatViewer.h
	  StatViewer/StatViewer.m: new files

2005-04-30  Benhur Stein <benhur@inf.ufsm.br>
	* GNUmakefile, */GNUmakefile: removed definition of GNUSTEP_MAKEFILES

2005-04-23  Benhur Stein <benhur@inf.ufsm.br>
	* General/NSUserDefaults+Colors.[hm],
	  General/NSUserDefaults+Additions.[hm] General/PajeEvent.m,
	  General/PajeType.m PajeEventDecoder/PajeEventDecoder.m,
	  ReductionFilter/ReduceEntityType.m SpaceTimeViewer/DrawView.m,
	  SpaceTimeViewer/STEntityTypeLayout.m: changed NSUserDefaults+Colors
	  to NSUserDefaults+Additions.
	* General/NSColor+Additions.[hm]: new files

2005-04-22  Benhur Stein <benhur@inf.ufsm.br>
	* General/DataScanner.m: set numeric locale to C instead of en_US
	  (suggestion from castet.matthieu@free.fr)

2005-04-18  Benhur Stein <benhur@inf.ufsm.br>
	* many: removed compiler warnings

2005-04-18  Benhur Stein <benhur@inf.ufsm.br>
        * General/PajeEntityInspector.m, General/PajeType.h,
          General/PajeType.m, General/SourceTextController.h,
          General/SourceTextController.m, General/UniqueString.m:
          removed some compiler warnings

2005-04-16  Benhur Stein <benhur@inf.ufsm.br>
	* FileReader/PajeFileReader.h, FileReader/PajeFileReader.m,
	  General/PSortedArray.m, General/PajeEntity.m, Paje/PajeCheckPoint.m,
	  Paje/PajeTraceController.m, PajeEventDecoder/PajeEventDecoder.m,
	  PajeSimulator/PajeSimul.m, PajeSimulator/SimulContainer.m,
	  PajeSimulator/SimulContainer.m, PajeSimulator/UserEvent.m,
	  PajeSimulator/UserState.m, SpaceTimeViewer/DrawView.m,
	  SpaceTimeViewer/HierarchyRuler.m, StorageController/Encapsulate.m:
	  First implementation of trace reading by chunks.

2005-04-16  Benhur Stein <benhur@inf.ufsm.br>
	* SpaceTimeViewer/DrawView+Drawing.m: corrected bug in which drawing
	  names on events made them bigger each time
	* SpaceTimeViewer/HierarchyRuler.m: corrected sizes of boxes (again)

2005-04-16  Benhur Stein <benhur@inf.ufsm.br>
	* ContainerFilter/ContainerSelector.m,
	  EntityTypeFilter/EntityTypeSelector.m, General/HierarchyBrowser.m,
	  General/MultiEnumerator.m, General/PajeType.m, General/TimeList.m,
	  Paje/PajeController.m, ReductionFilter/BusyNode.m, 
	  PajeSimulator/PajeSimul+Events.m: small code reorganization;
	  changed NSLog's into NSDebugLog's or NSWarnLog's

2005-01-23 (1.3.2) Vincent Danjean <Vincent.Danjean@ens-lyon.org>
	* New official release 

2005-03-26  Benhur Stein <benhur@inf.ufsm.br>
	* SpaceTimeViewer/STEntityTypeLayoutController.[hm],
	  STEntityTypeLayout.gorm: changed names of instance variables to
	  better reflect their use. Corrected a bug that was preventing the
	  edition of layout data in some cases (an invisible view over
	  the others). Should create separate editor classes for each
	  drawing type for this to be easily changed.

2005-03-16  Benhur Stein <benhur@inf.ufsm.br>
	* Traces: added directory
	* Traces/JavaTest.trace: small trace example added

2005-03-06  Benhur Stein <benhur@inf.ufsm.br>
	* EntityTypeFilter/EntityTypeSelector.m, ImbricationFilter/InsetLimit.m,
	  OrderFilter/Order.m, ReductionFilter/BusyNode.m,
	  Paje/PajeController.[hm], Paje/PajeTraceController.m: implemented
	  support for saving/loading filter configuration. Configuration is
	  saved/loaded for file /tmp/pajeconfig. Missing FieldFilter, the
	  possibility of naming configurations, a configuration editor (loading
	  and unloading of filters, more than one filter of the same type, etc.
	* General/PajeFilter.[hm]: added helper methods -entityTypeWithName:
	  and -containerWithName:type:
	* General/HierarchyBrowser.m: some better support for when updating 
	  last column (still does not work in all cases)
	* ImbricationFilter/InsetLimit.[hm]: added a cache for increased
	  performance (not measured)

2005-02-21  Benhur Stein <benhur@inf.ufsm.br>
	* General/PajeFilter.h: add some documentation.

2005-02-17  Benhur Stein <benhur@inf.ufsm.br>
	* General/DataScanner.m: hack to read numbers from trace file in
	  a locale independent way (solves bug #303193).

2005-02-17  Benhur Stein <benhur@inf.ufsm.br>
	* Allow files with any extension to be selected in the open file
	  panel.

2005-02-17  Benhur Stein <benhur@inf.ufsm.br>
	* Make sure Shapes&Sizes tool is informed when trace hierarchy
	  changes (adds an instance variable to STController, must
	  do a "make clean" before doing "make").
	* fixes bug #301194

2005-02-17  Benhur Stein <benhur@inf.ufsm.br>
	* General/NSUserDefaults+Colors.[hm]: add -doubleForKey:
	  and -setDouble:forKey: methods (should change file name as
	  it doesn't only deal with colors.
	* SpaceTimeViewer/DrawView.m: save and restore time scale in defaults
	  database

2005-01-23 (1.3.1) Vincent Danjean <Vincent.Danjean@ens-lyon.org>
	* Add Makfiles to compile the documentation
	* Remove undefined references in lang-paje
	* New official release 
	  - bump to 1.3 as there are few features (filters)

2005-01-23  Benhur Stein <benhur@inf.ufsm.br>
	* SpaceTimeViewer/HierarchyRuler.m: change rect size calculations
	  to be on pair with recent GNUstep bugfixes

2005-01-23  Benhur Stein <benhur@inf.ufsm.br>
	* General/UniqueString.m: comment out some debug messages

2005-01-20  Benhur Stein <benhur@inf.ufsm.br>
	* SpaceTimeViewer/DrawView.[hm]: workaround a probable bug in GNUstep
	  ([NSScrollView tile] is changing the frame size)

2005-01-20  Benhur Stein <benhur@inf.ufsm.br>
	* Documentation/lang-paje/{typeevent.tex,lang-paje.tex}:
	  comment the inclusion of some files, to make the documentation
	  compile.

2005-01-09  Benhur Stein <benhur@inf.ufsm.br>
        * SpaceTimeViewer/STEntityTypeLayout.[hm]: declare and implement
          accessors for minValue and maxValue (for storing limits of graph)
	* SpaceTimeViewer/STEntityTypeLayout.gorm: added a new Form for
          max & min values of variables; 
        * SpaceTimeViewer/STEntityTypeLayoutController.[mh]: make use of new
          variables and Form (they are not saved in defaults);
        * SpaceTimeViewer/DrawView+Drawing.m: use min and maxValue from 
          descriptor, if valid.

2005-01-05  Benhur Stein <benhur@inf.ufsm.br>
	* GNUmakefile, Paje/PajeController.m, Paje/PajeTraceController.m:
	  compile and load FieldFilter

2005-01-05  Benhur Stein <benhur@inf.ufsm.br>
	* FieldFilter, FieldFilter/FieldFilterDescriptor.h,
	  FieldFilter/FieldFilter.h, FieldFilter/FieldFilterDescriptor.m,
	  FieldFilter/FieldFilter.m, FieldFilter/GNUmakefile,
	  FieldFilter/FieldFilter.gorm: new files, first implementation of
	  filter that selects entities based on values of some of its fields.

2005-01-05  Benhur Stein <benhur@inf.ufsm.br>
	* General/PajeEntity.m: added -duration method (returns elapsed time
	  of entity); added "StartTime", "EndTime" and "Duration" named fields
	* General/PajeType.h: added new instance variable "fieldNames" to
	  hold all known names of fields of entities of a type.
	* General/PajeType.m: initialize new variable; implemented 
	  new methods -addFieldNames: and -fieldNames to populate and get
	  names of fields.
	* ReductionFilter/ReduceEntityType.m: also initialize new variable
	  (this class does not use initialization code from superclass)
	* StorageController/Encapsulate.m: implement -fieldNamesForEntityType:
	  so that a filter can have access to names of fields;
	  add a temporary solution to garantee that an entity type has
	  access to all names (make it see all entities - ugly)
	* ReductionFilter/ReduceEntity.m: likewise, even uglier!

2005-01-05  Benhur Stein <benhur@inf.ufsm.br>
	* SpaceTimeViewer/DrawView+Drawing.m: changed way of drawing values
	  (now there can be times without values, and they will not be drawn)
	  (necessary for new field value filter (to be commited)).

2005-01-05  Benhur Stein <benhur@inf.ufsm.br>
	* SpaceTimeViewer/STEntityTypeLayoutController.m: made highlighting
	  of selected buttons in "Shapes&Sizes" work again

2005-01-05  Benhur Stein <benhur@inf.ufsm.br>
	* General/PajeEntityInspector.m: removed debug message

2005-01-05  Benhur Stein <benhur@inf.ufsm.br>
	* General/ColoredSwitchButtonCell.m: added -compare: method (some
	  recent change in GNUstep made ordering of these cells wrong)

2005-01-05  Benhur Stein <benhur@inf.ufsm.br>
	* Paje/Paje_main.m, Paje/PajeInfo.plist: Changed Copyright notice

2005-01-04  (1.2.2) Vincent Danjean <Vincent.Danjean@ens-lyon.org>

	* Version NEED to be set in changelog so that release can be
	  easily generated
	
2005-01-04  (1.2.1) Vincent Danjean <Vincent.Danjean@ens-lyon.org>

	* Bump to version 1.2.1 to make a release on objectweb
	
2004-12-21  Benhur Stein  <benhur@inf.ufsm.br>

	* Paje/PajeController.m: fixed typo in filter name
	  corrects bug #301134 (reported by Gregory)

2004-12-14 (1.2.0) Vincent Danjean <Vincent.Danjean@ens-lyon.org>

	* Bump to version 1.2 to make the first release on objectweb
	
2004-10-18  Benhur Stein <benhur@inf.ufsm.br>

        * **/*.{h,m,tex}: add copyright notice

2004-10-17  Benhur Stein <benhur@inf.ufsm.br>

	* SpaceTime.bproj/DrawView+Drawing.m,ST*.{h,m,gorm}:
          add support for writing names on events and states

2004-10-12  Benhur Stein <benhur@inf.ufsm.br>

	* PajeSimul/PajeSimul+Events.m
	  SpaceTime.bproj/DrawView+Drawing.m
	  SpaceTime.bproj/STController.m
	  SpaceTime.bproj/STEntityTypeLayout.m
	  Encapsulate.bproj/Encapsulate.m
	  General.bproj/PajeType.h
	  General.bproj/PajeType.m
	  General.bproj/PajeFilter.h
	  General.bproj/PajeFilter.m,
	  PajeEventDecoder/PajeEventDecoder.m
	  Documentation/lang-paje/typeevent.tex: add support for 'color' type
	    in event fields; 'Color' field in 'PajeDefineValue';
	    'Shape' and 'Height' fields in 'PajeDefine<entity>Type';
	    'Width' field in 'PajeDefineEventType'

2004-10-07  Benhur Stein <benhur@inf.ufsm.br>

	* SpaceTime.bproj: correct limitation of maximum visible size

2004-10-07  Benhur Stein <benhur@inf.ufsm.br>

	* General.bproj/NSDate+Additions.h: correct typo in previous commit

2004-10-07  Benhur Stein <benhur@inf.ufsm.br>

	* SpaceTime.bproj/STEntityTypeLayoutController.m: change order
	  of types in popup, remove unused field for links in gui, remove
	  unused code
	* STEntityTypeLayout.gorm: highlights matrix was not scrolling
	  and highlighting of events

2004-10-07  Benhur Stein <benhur@inf.ufsm.br>

	* SpaceTime.bproj/{Shape.m,STEntityTypeLayout.m}: correct drawing
	  and highlighting of events

2004-10-07  Benhur Stein <benhur@inf.ufsm.br>

	* SpaceTime.bproj/DrawView+Positioning.m (rectForEntity:),
	  SpaceTime.bproj/DrawView.[hm]: sanitize relation between STController
	      and DrawView; create and use [DrawView timeToX:] method.

2004-10-07  Benhur Stein <benhur@inf.ufsm.br>

	* SpaceTime.bproj/DrawView+Finding.m (rectForEntity:),
	  SpaceTime.bproj/DrawView+Drawing.m
	  (drawValuesWithDescriptor:inContainer:fromEnumerator:drawFunction:):
	      change drawing of values, to include 2-pixel top and bottom
	      margins

2004-10-07  Benhur Stein <benhur@inf.ufsm.br>

	* General.bproj/NSDate+Additions.[hm]: change NSDate description
	  to be only the secondsSinceReferenceDate

2004-09-30  Benhur Stein <benhur@inf.ufsm.br>

	* SpaceTime.bproj/STEntityDescriptor.[hm],
	  SpaceTime.bproj/EntityTypeInspector.{h,m,gorm}:
	     remove unused classes obsoleted by previous changes (layout)

2004-09-30  Benhur Stein <benhur@inf.ufsm.br>
	* SpaceTime.bproj/DrawView+Drawing.m
	  SpaceTime.bproj/DrawView+Finding.m
	  SpaceTime.bproj/DrawView+Mouse.m
	  SpaceTime.bproj/DrawView+Positioning.m
	  SpaceTime.bproj/DrawView.h SpaceTime.bproj/DrawView.m
	  SpaceTime.bproj/GNUmakefile SpaceTime.bproj/HierarchyRuler.h
	  SpaceTime.bproj/HierarchyRuler.m
	  SpaceTime.bproj/STController.h SpaceTime.bproj/STController.m
	  SpaceTime.bproj/STEntityDescriptor.h
	  SpaceTime.bproj/STEntityDescriptor.m
	  SpaceTime.bproj/SpaceTime.gorm/data.classes
	  SpaceTime.bproj/SpaceTime.gorm/distant.tiff
	  SpaceTime.bproj/SpaceTime.gorm/near.tiff
	  SpaceTime.bproj/SpaceTime.gorm/objects.gorm
	  SpaceTime.bproj/SpaceTime.gorm/toselection.tiff:
	     make use of new layout classes

2004-09-30  Benhur Stein <benhur@inf.ufsm.br>

	* SpaceTime.bproj/{STEntityTypeLayout.{h,m,gorm},
	                   STEntityTypeLayoutController.[hm],
			   Shape.[hm]}: new classes and GUI for layout

2004-09-30  Benhur Stein <benhur@inf.ufsm.br>

	* PajeSimul/PajeSimul+Events.m:
	  containerOfNumber:type:inEvent: check for wrong type

2004-09-30  Benhur Stein <benhur@inf.ufsm.br>

	* TODO: refresh list of things to do

2004-08-19  Benhur Stein <benhur@inf.ufsm.br>

	* */*.gorm: resaved in old format, compatible with gui 0.9.3

2004-07-26  Benhur Stein <benhur@inf.ufsm.br>

	* many: remove PajeContainerType from PajeFilter.h and change
	  all places to reflect this

2004-07-26  Benhur Stein <benhur@inf.ufsm.br>

	* General.bproj/PajeFilter.[hm]: remove notifications

2004-07-26  Benhur Stein <benhur@inf.ufsm.br>

	* paje: restarting CVS, near version 1.2

2002-05-10  Benhur Stein  <benhur@inf.ufsm.br>

	* paje: initial version.

