Go to file
Rick Tanner 2fa288fdf3 Correct spacing after punctuation in msg text 2023-06-14 14:13:27 -05:00
Info
animations/maps/navar_city
azumauindo
brest Correct spacing after punctuation in msg text 2023-05-29 01:59:28 -05:00
darcap Correct spacing after punctuation in msg text 2023-05-30 00:45:37 -05:00
dragonisland Correct spacing after punctuation in msg text 2023-05-31 01:18:39 -05:00
dungeons Correct spacing after punctuation in msg text 2023-06-02 18:21:01 -05:00
editor
euthville Correct spacing after punctuation in msg text 2023-06-02 18:46:28 -05:00
inn_and_outpost Correct spacing after punctuation in msg text 2023-06-04 01:08:03 -05:00
lake_country Correct spacing after punctuation in msg text 2023-06-05 00:57:37 -05:00
marksel Correct spacing after punctuation in msg text 2023-06-05 01:16:51 -05:00
mlab Correct spacing after punctuation in msg text 2023-06-06 01:24:57 -05:00
navar_city Correct spacing after punctuation in msg text 2023-06-07 01:26:00 -05:00
planes
port_joseph Correct spacing after punctuation in msg text 2023-06-08 00:37:46 -05:00
pup_land Correct spacing after punctuation in msg text 2023-06-09 16:27:11 -05:00
python
quests Correct spacing after punctuation in msg text 2023-06-11 01:25:26 -05:00
santo_dominion Correct spacing after punctuation in msg text 2023-06-12 01:35:40 -05:00
scorn Correct spacing after punctuation in msg text 2023-06-13 01:01:38 -05:00
sisters Correct spacing after punctuation in msg text 2023-06-14 14:13:27 -05:00
start Make a path with both tutorial maps, and give some details on the form they have 2021-11-27 09:47:23 +01:00
styles
teamarena
templates
test
under_world
unlinked
whalingoutpost
wolfsburg
world
.emergency
.gitignore
COPYING
ChangeLog
HallOfDMs Correct spacing after punctuation in msg text 2023-06-04 01:07:45 -05:00
HallOfSelection Correct spacing after punctuation in msg text, removed forced line breaks 2023-06-04 01:06:52 -05:00
README
regions.reg
world.bells
world.citylife
world.quests

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.