[ogs-changes] dist/c++ ChangeLog,1.14,1.15 Makefile.am,1.7,1.8 TODO,1.8,1.9 configure.in,1.10,1.11
Status: Alpha
Brought to you by:
elemings
|
From: <ele...@us...> - 2003-04-04 20:23:14
|
Update of /cvsroot/ogs/dist/c++ In directory sc8-pr-cvs1:/tmp/cvs-serv9450/c++ Modified Files: ChangeLog Makefile.am TODO configure.in Log Message: See ChangeLog files (Apr 3-4) for details. Index: ChangeLog =================================================================== RCS file: /cvsroot/ogs/dist/c++/ChangeLog,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** ChangeLog 29 Mar 2003 02:31:34 -0000 1.14 --- ChangeLog 4 Apr 2003 20:22:39 -0000 1.15 *************** *** 1,3 **** --- 1,33 ---- + Thu Apr 3 22:35:57 UTC 2003 Eric Lemings <ele...@us...> + + * TODO: Remove completed items. + + * Makefile.am, ogs/Makefile.am, ogs/Doxyfile.in: Move doc target + back to original location. Made top-level doc target phony so + make will ignore the doc directory. Added a few doc build + updates and enhancments. + + * configure.in: Increment version number to 0.1.1. + + * ogs/core/Abilit*, ogs/core/Strength.h: Removed factory methods. + Abilities are now created with constructors that throw an + exception if the type of ability is invalid. Added overloaded + operators so static method member could be removed. + + * ogs/core/Feat.h: Moved findFeat() template from source file. + + * ogs/cclasses/*.h: Added constructors. Update docs. + + * ogs/creatures/humanoids/*.h: Remove starting ages. + + * ogs/feats/AllWeapons.*: Inlined factory methods. + + * ogs/feats/ArmorProficiency.cpp: Optimizations. + + * ogs/magic/Spell.h: Removed static descriptors member. + + * ogs/test/CoreTest03.cpp: Updated for ability interface changes. + Fri Mar 28 18:36:05 UTC 2003 Eric Lemings <ele...@us...> Index: Makefile.am =================================================================== RCS file: /cvsroot/ogs/dist/c++/Makefile.am,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile.am 29 Mar 2003 02:31:34 -0000 1.7 --- Makefile.am 4 Apr 2003 20:22:40 -0000 1.8 *************** *** 37,49 **** @PACKAGE@.spec.in - docdir = $(top_builddir)/doc if HAVE_DOXYGEN doc: ! rm -rf $(docdir)/html $(docdir)/latex ! $(DOXYGEN) ogs/Doxyfile else doc: @echo "Doxygen (www.doxygen.org) is required to build documantation." endif # Cleans all files not contained in the CVS repository. --- 37,51 ---- @PACKAGE@.spec.in if HAVE_DOXYGEN doc: ! @subdir=ogs; \ ! echo "Making $@ in $$subdir"; \ ! cd $$subdir && make $@ || exit 1 else doc: @echo "Doxygen (www.doxygen.org) is required to build documantation." endif + + .PHONY: doc # Cleans all files not contained in the CVS repository. Index: TODO =================================================================== RCS file: /cvsroot/ogs/dist/c++/TODO,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** TODO 29 Mar 2003 02:31:34 -0000 1.8 --- TODO 4 Apr 2003 20:22:40 -0000 1.9 *************** *** 23,31 **** * Make Size class a nested class of Entity? - * In the ogs::feats namespace, Great Fortitude, Iron Will, and Lightning - Reflexes classes can be implemented as one "ImprovedSave" class - similar to ArmorProficiency. Additionally, the modifier may be - changed to a static member. - Future Minor Releases --------------------- --- 23,26 ---- *************** *** 33,40 **** These changes and additions are bigger in scope or not as important as the items in the section above. - - * Change ogs::core::Ability::Method and all predefined methods into - function objects. May need to break methods out of the Ability.h - header. * Require Boost library? Lots of stuff from this library is being --- 28,31 ---- Index: configure.in =================================================================== RCS file: /cvsroot/ogs/dist/c++/configure.in,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** configure.in 29 Mar 2003 02:31:34 -0000 1.10 --- configure.in 4 Apr 2003 20:22:40 -0000 1.11 *************** *** 29,33 **** OGS_MAJOR_VERSION=0 OGS_MINOR_VERSION=1 ! OGS_PATCH_VERSION=0 OGS_VERSION=$OGS_MAJOR_VERSION.$OGS_MINOR_VERSION.$OGS_PATCH_VERSION OGS_INTERFACE_AGE=0 --- 29,33 ---- OGS_MAJOR_VERSION=0 OGS_MINOR_VERSION=1 ! OGS_PATCH_VERSION=1 OGS_VERSION=$OGS_MAJOR_VERSION.$OGS_MINOR_VERSION.$OGS_PATCH_VERSION OGS_INTERFACE_AGE=0 |