Go to file
anmaster b4042eae5e Fix indentation in CFGamble.py
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@11330 282e977c-c81d-0410-88c4-b93c2d0d6712
2009-02-03 19:25:55 +00:00
Info
animations/maps/navar_city
azumauindo Fix destination of down stairs in /azumauindo/suno-yamatoshi/buildings/tatemonoA2. 2009-01-23 19:03:03 +00:00
brest Restore descriptive name to stairway 2009-01-22 05:41:46 +00:00
darcap Removed the cloud floor tile in the Fun Zone Obstacle Course 1 (/darcap/darcap/circus/fz_o1) in Darcap Circus, it was causing problems with the teleporter back to the Fun Zone Lobby 2009-01-30 05:07:50 +00:00
dragonisland Replace rocks with a wooden table (longtable) for the booze to sit on in the bar 2008-12-21 07:42:04 +00:00
dungeons
editor
euthville Cosmetic wall changes for nicer merging 2008-12-21 07:52:15 +00:00
inn_and_outpost
lake_country Cosmetic wall changes for nicer merging 2008-12-23 07:06:14 +00:00
marksel Fix oakdoor so that it uses the correct archetype (vs the one that can be destroyed) - missed in previous commit 2008-12-23 07:11:36 +00:00
mlab Per web forum post and IRC discussion - attempt to make things somewhat easier for low level players - reduced the detect curse altar cost from 25gp to 25sp 2008-12-14 07:22:14 +00:00
navar_city Typo correction on girdle of damage (was dammage) in Museum of Arms (/navar_city/magara/houses/museum) 2009-01-31 06:32:15 +00:00
planes
port_joseph
pup_land Revert back to full map paths for exits 2008-12-21 06:15:28 +00:00
python Fix indentation in CFGamble.py 2009-02-03 19:25:55 +00:00
quests Synch with Branches/1.x; Insert floor tiles beneath walls 2009-01-17 07:54:17 +00:00
santo_dominion Make shop areas of Lord Byron's Castle (/santo_dominion/lord_byron/main) stand alone maps in order to support shop headers and inventory signs 2009-01-23 06:23:53 +00:00
scorn Insert floor tiles underneath the exits 2008-12-21 06:57:25 +00:00
sisters
start
styles
teamarena
templates
test
under_world
unlinked
whalingoutpost
wolfsburg Cosmetic changes with Twin Towers maps - nicer merging with cwall (castle walls) and swall (fence) 2009-02-01 07:39:08 +00:00
world Remove some stray land tiles from the top (middle) of the sea 2008-12-19 07:24:28 +00:00
.emergency
COPYING
ChangeLog Updated ChangeLog file using svn2cl 2009-01-17 08:58:03 +00:00
HallOfDMs
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.