Go to file
anmaster 5185f70e89 Clean up walls and floors in /unlinked/kandora, also possibly other cleanup in there that I forgot to mention. But it was sad to see these broken maps.
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@9239 282e977c-c81d-0410-88c4-b93c2d0d6712
2008-06-05 22:12:27 +00:00
Info
animations/maps/navar_city
azumauindo
brest Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
darcap Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
dragonisland
dungeons Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
editor Run 'Shrink Map Size' function from MapNormalizer editor script. 2008-05-30 06:23:54 +00:00
euthville
inn_and_outpost Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
lake_country Add missing floor tiles under walls to /lake_country/Butakis/prison_s and make the books appear on top of the tables in /lake_country/Butakis/Rlib2. 2008-06-03 19:34:21 +00:00
marksel Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
mlab Add some no_pick in order to fix sorting order for arches, clean up slaying for exits to use realtive paths in some places, fix some smoothing levels to make a bridge look better. All in city de clouds. 2008-06-05 21:57:08 +00:00
navar_city Remove duplicate no magic tiles from jail map in Navar. 2008-06-03 19:32:34 +00:00
planes Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
port_joseph Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
pup_land Fix a wrong wall tile in /pup_land/ancient/castle/castle.4 to make it line up properly with walls around it. 2008-06-05 22:00:04 +00:00
python
quests Correct the monsters in the pick map /quests/mak/chaos/monsters.pick. They were broken (bad spell defintions it seems), copies broken monsters from the maps. 2008-06-05 22:08:12 +00:00
santo_dominion Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
scorn Make /scorn/houses/ house3.1st look nicer, add doorway arches to it. 2008-06-05 22:05:54 +00:00
sisters Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
start
styles
teamarena
templates Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
test Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
under_world
unlinked Clean up walls and floors in /unlinked/kandora, also possibly other cleanup in there that I forgot to mention. But it was sad to see these broken maps. 2008-06-05 22:12:27 +00:00
whalingoutpost Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
wolfsburg Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
world
.emergency
COPYING
ChangeLog Updated ChangeLog file using svn2cl 2008-05-31 22:44:03 +00:00
HallOfDMs
HallOfSelection Run MapNormalizer script on all maps. 2008-05-30 07:32:24 +00:00
README
regions Removed unused regions 2008-06-03 16:51:39 +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.