Go to file
ryo_saeba b66dcbeb89 Remove the requirements, assuming player can always say anything.
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@13162 282e977c-c81d-0410-88c4-b93c2d0d6712
2010-05-10 17:20:36 +00:00
Info
animations/maps/navar_city
azumauindo
brest
darcap Quest definition files using the new quest definition syntax 2010-04-26 20:08:02 +00:00
dragonisland
dungeons
editor
euthville Cosmetic wall changes for nicer merging 2008-12-21 07:52:15 +00:00
inn_and_outpost
lake_country
marksel
mlab
navar_city Change the custom name of the red dragon mail to Red Dragon Mail 2010-04-27 14:59:53 +00:00
planes
port_joseph
pup_land - Give the keys to the House of Treasure reasonable names other than key1, 2010-04-08 02:18:50 +00:00
python Remove the requirements, assuming player can always say anything. 2010-05-10 17:20:36 +00:00
quests
santo_dominion
scorn - Make the portgate view of the portoffice more consistent with the current 2010-05-10 03:25:56 +00:00
sisters
start Fix a substantial number of other script paths that I had missed previously. 2010-04-30 09:55:06 +00:00
styles
teamarena
templates
test Change the .msg files for the test map to use a mixture of absolute and relative paths 2010-05-05 10:48:10 +00:00
under_world
unlinked
whalingoutpost
wolfsburg
world Change location description on sign to point to where the building actually is. 2010-05-06 11:18:29 +00:00
.emergency
COPYING
ChangeLog Add breaks to mark different versions, add 1.50.0 break. 2010-04-26 04:43:28 +00:00
HallOfDMs
HallOfSelection
README
default.quests Support for the various quests that track passage through the gates of scorn. 2010-04-27 14:40:43 +00:00
regions.reg
world.quests A Simple introductory quest in the newbies house. 2010-04-27 12:48:36 +00:00

README

==============================================================================
ChangeLog
==============================================================================

The ChangeLog file has been built with svn2cl 0.7 and 0.9 as obtained fromm
http://ch.tudelft.nl/~arthur/svn2cl/downloads.html.  Do not use version 0.6
or older as it appears to generate incompatible ChangeLog formats.

These instructions presume an installation of the tarball similar to this.
The actual paths may be different for each developer, but these are used for
sake of example.  There is no requirement to use the example paths.

  $ cd ~
  $ tar -xzf svn2cl-0.9.tar.gz

To update the ChangeLog, a command sequence like this is generally possible
with one caveat.  Do not check in the results without checking the the changes
with svn diff to avoid throwing away someone's comments that are more verbose
than the svn commit comment.

  $ cd /home/data/svn/crossfire/maps/trunk
  $ ~/svn2cl-0.9/svn2cl.sh

The following may be safer, but also may not entirely regenerate missing
entries if manual edits have been made.  Again, never check in updates without
checking differences and merging any manual edits developers may have made.

1) Only generate portion of the ChangeLog since the last svn2cl run.

   Determine the date of the last svn2cl run by looking at the top of the
   ChangeLog.  For this example, presume 2007-12-20 is the last svn2cl
   notation, and that today is 2007-12-30.

   $ cd /home/data/svn/crossfire/maps/trunk
   $ ~/svn2cl-0.9/svn2cl.sh -o ChangeLog.New -r "{2007-12-30}:{2007-12-20}"

   Note that the day of the last svn2cl is used in case new entries were made
   that day following the svn2cl run.

   Place the contents of ChangeLog.New at the top of the ChangeLog file, but
   make sure to delete any redundant entries.  If manual entries have been
   made, merge any additional content with the appropriate svn2cl generated
   entries.

2) Regenerate the entire log, but generate a patch file.

  $ cd /home/data/svn/crossfire/maps/trunk
  $ ~/svn2cl-0.9/svn2cl.sh --output=ChangeLog.New
  $ diff -u ChangeLog ChangeLog.New >ChangeLog.patch

  Verify the ChangeLog.patch file and remove any patch hunks that would remove
  information prior to patching up the ChangeLog file for commit.