Go to file
rjtanner 90e3203c8f Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@10943 282e977c-c81d-0410-88c4-b93c2d0d6712
2008-12-13 08:57:45 +00:00
Info
animations/maps/navar_city
azumauindo Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
brest Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
darcap Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
dragonisland Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
dungeons Replace recently updated oakdoors with new archetype and recycled graphic. Requires archetype r10798 or newer. 2008-12-02 02:27:25 +00:00
editor
euthville Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
inn_and_outpost
lake_country Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
marksel Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
mlab
navar_city Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
planes
port_joseph Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
pup_land Restore message text to exits 2008-12-11 06:35:25 +00:00
python
quests Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
santo_dominion Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
scorn Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
sisters Replace recently updated oakdoors with new archetype and recycled graphic. Requires archetype r10798 or newer. 2008-12-03 01:35:04 +00:00
start Replace recently updated oakdoors with new archetype and recycled graphic. Requires archetype r10798 or newer. 2008-12-03 01:38:09 +00:00
styles Cosmetic wall changes for nicer merging 2008-11-26 01:34:40 +00:00
teamarena
templates
test
under_world
unlinked
whalingoutpost Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
wolfsburg Replace blocked (solid black square) arch with cave_15 (solid grey square) archetype, requires archetype update r10843 or newer 2008-12-13 08:57:45 +00:00
world New map in Brest - Shrine of Valkyrie 2008-12-08 06:16:27 +00:00
.emergency
COPYING
ChangeLog Updated ChangeLog file using svn2cl 2008-12-12 07:44:09 +00:00
HallOfDMs Give descriptive names to the teleporters so it's easier to see which map they go to 2008-12-05 01:51:38 +00:00
HallOfSelection
README
regions.reg

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.