Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,3 @@ wxWidgets, which are Copyright (C) 2004-5 by John Labenski, and distributed
under the wxWidgets license. The version included here is the version
dated 20 July 2005; see http://wxcode.sourceforge.net for details on these
classes.

TinyXML parser:
---------------
The graphical interface reads and writes files in XML format. The parsing
is done using the TinyXml package from http://www.grinninglizard.com/tinyxml,
and is distributed under the zlib license. These are the files named
tiny* in the sources/gui directory of the distribution.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [17.0.0] - unreleased

### Changed
- Implemented bespoke XML parser that handles the subset in the de-facto legacy XML workbook .gbt format;
removes dependency on tinyxml. (#897)


## [16.7.0] - 2026-07-11

### Added
Expand Down
8 changes: 3 additions & 5 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -223,11 +223,7 @@ core_SOURCES = \
src/core/rational.h \
src/core/matrix.cc \
src/core/function.cc \
src/core/function.h \
src/core/tinyxml.cc \
src/core/tinyxmlerror.cc \
src/core/tinyxmlparser.cc \
src/core/tinyxml.h
src/core/function.h

agg_SOURCES = \
src/games/gameagg.cc \
Expand Down Expand Up @@ -270,6 +266,8 @@ game_SOURCES = \
src/games/stratpure.h \
src/games/stratmixed.h \
src/games/file.cc \
src/games/workspace.cc \
src/games/workspace.h \
src/games/writer.cc \
src/games/writer.h \
src/games/layout.cc \
Expand Down
Loading
Loading