Go to file
ryo_saeba df54eb7f07 Give some values to keys.
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@8612 282e977c-c81d-0410-88c4-b93c2d0d6712
2008-03-24 11:05:21 +00:00
Info
azumauindo
brest Synchronize map changes between trunk, branches/1.x and branches/lalo-pupland 2008-03-01 06:08:48 +00:00
darcap Implemented, with changes backported from svn trunk, python guild hall patch: [ 1782975 ] Python guilds template. - applied, needs to check all is ok 2008-03-22 06:28:26 +00:00
dragonisland Synchronize Dragonisland map changes between trunk, branches/1.x and branches/lalo-pupland 2008-03-08 06:02:09 +00:00
dungeons Updated and corrected map names for the Training Center maps 2008-03-08 07:37:36 +00:00
editor Remove unused configuration parameter from WorldMaker script. 2008-03-20 21:29:36 +00:00
euthville Link the Scorn Royalty maps together. 2008-03-24 09:04:38 +00:00
inn_and_outpost
lake_country
marksel
mlab Fix broken keys and inventory checks for each town haus 2008-03-18 01:06:44 +00:00
navar_city
planes
port_joseph Fix spacing issue for the text based compass on the map 2008-03-15 06:15:24 +00:00
pup_land Rearranged map stacking order, moved no_spell tiles to the bottom of the stack 2008-03-24 04:00:13 +00:00
python Implemented, with changes backported from svn trunk, python guild hall patch: [ 1782975 ] Python guilds template. - applied, needs to check all is ok 2008-03-22 06:28:26 +00:00
quests Give some values to keys. 2008-03-24 11:05:21 +00:00
santo_dominion - Spelling correction. 2008-03-23 22:20:33 +00:00
scorn Link the Scorn Royalty maps together. 2008-03-24 09:04:38 +00:00
sisters Modify NPC or magic_mouth dialogue to be generic in regards to player race; Fix for bug [825637] Some maps assume what race you are. 2007-11-06 05:46:36 +00:00
start
styles
teamarena
templates Remove duplicate gem and currency conversion tables that were on the map due to a testing mistake 2008-03-23 07:08:55 +00:00
test
under_world
unlinked
whalingoutpost
wolfsburg Restore line indentation to in-game text info 2008-03-19 01:28:57 +00:00
world
.emergency
COPYING
ChangeLog Updated ChangeLog file using svn2cl 2008-03-24 06:49:08 +00:00
HallOfDMs
HallOfSelection Updated HallOfSelection with a valid map difficulty, re-added missing class descriptions for monk and warlock, re-added missing magic mouth that included further character creation instructions 2008-03-10 05:18:57 +00:00
README
regions

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.