From: Erik V. <ev...@us...> - 2009-11-05 22:50:47
|
Update of /cvsroot/rails/18xx In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv17929 Modified Files: games.properties .project Added Files: build.xml Log Message: Fixed some bugs: - 1830: free D&H token wasn't free - 18EU: only one 8-train buyable Also added Rails version and date in saved files and reportng in the log of same. Bulld date included in BuildInfo, which is rewritten on each build via a new build.xml Ant script. Index: .project =================================================================== RCS file: /cvsroot/rails/18xx/.project,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** .project 11 Aug 2005 13:36:52 -0000 1.4 --- .project 5 Nov 2009 22:50:38 -0000 1.5 *************** *** 1,5 **** <?xml version="1.0" encoding="UTF-8"?> <projectDescription> ! <name>18xx</name> <comment></comment> <projects> --- 1,5 ---- <?xml version="1.0" encoding="UTF-8"?> <projectDescription> ! <name>Rails</name> <comment></comment> <projects> *************** *** 7,10 **** --- 7,20 ---- <buildSpec> <buildCommand> + <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name> + <triggers>full,incremental,</triggers> + <arguments> + <dictionary> + <key>LaunchConfigHandle</key> + <value><project>/.externalToolBuilders/Create BuildInfo.launch</value> + </dictionary> + </arguments> + </buildCommand> + <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> Index: games.properties =================================================================== RCS file: /cvsroot/rails/18xx/games.properties,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** games.properties 3 Aug 2007 21:08:19 -0000 1.3 --- games.properties 5 Nov 2009 22:50:37 -0000 1.4 *************** *** 20,29 **** game.1835.description=All companies buyable from the start. Prussian formation is not supported yet. ### 1856 ! game.1856.note=(partly playable) ! game.1856.description=Aspects not present in 1830 have not been implemented yet. ### 1870 game.1870.note=(partly playable) game.1870.description=Aspects not present in 1830 have not been implemented yet. ### 18AL ! game.18AL.note=(partly playable) ! game.18AL.description=Aspects not present in 1830 have not been implemented yet. --- 20,29 ---- game.1835.description=All companies buyable from the start. Prussian formation is not supported yet. ### 1856 ! game.1856.note=(fully playable) ### 1870 game.1870.note=(partly playable) game.1870.description=Aspects not present in 1830 have not been implemented yet. ### 18AL ! game.18AL.note=(fully playable) ! ### 18EU ! game.18EU.note=(fully playable) --- NEW FILE: build.xml --- <!-- Generate a java class with the current svn revision number --> <project name="build" default="makeBuildInfo" basedir="."> <target name="makeBuildInfo" description="Create a BuildInfo source"> <tstamp> <format property="TODAY" pattern="yyyy/MM/dd"/> </tstamp> <!-- the source code of the java class --> <echo file="${basedir}/rails/game/BuildInfo.java"> package rails.game; public class BuildInfo { public static final String timeStamp="${TODAY}"; } </echo> </target> </project> |