Go to file
ryo_saeba 930183356e Utility script to let an item be applied only for certain quest steps.
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@13389 282e977c-c81d-0410-88c4-b93c2d0d6712
2010-06-12 16:51:54 +00:00
Info Update worldmap image. 2009-07-13 19:53:19 +00:00
animations/maps/navar_city
azumauindo Adapt exit coordinates to server r12199. 2009-10-22 23:06:07 +00:00
brest Adapt exit coordinates to server r12199. 2009-10-22 23:06:07 +00:00
darcap Questify Darcap's elemental quest (basic for now). 2010-06-06 11:02:47 +00:00
dragonisland Run MapNormalizer editor script on all map files. 2009-07-12 14:47:05 +00:00
dungeons Replace obsolete attributes can_use_rod, can_use_wand, and can_use_horn with can_use_range. 2009-06-08 22:26:59 +00:00
editor Remove debugging output from WorldMaker plugin script. 2010-06-12 15:14:24 +00:00
euthville Add quest handlers for city-based final maps for royalty quests 2010-05-13 19:20:58 +00:00
inn_and_outpost Run MapNormalizer editor script on all map files. 2009-07-12 14:47:05 +00:00
lake_country Remove redundant attributes. 2009-11-07 15:07:19 +00:00
marksel - Spelling corrections. 2009-07-18 17:14:05 +00:00
mlab Make exits coherent. 2010-05-13 21:40:21 +00:00
navar_city Change the custom name of the red dragon mail to Red Dragon Mail 2010-04-27 14:59:53 +00:00
planes more python guild updates 2010-03-25 17:33:10 +00:00
port_joseph - Add a vague hint relating to the puzzle of the altars. 2010-05-17 01:12:44 +00:00
pup_land - Give the keys to the House of Treasure reasonable names other than key1, 2010-04-08 02:18:50 +00:00
python Utility script to let an item be applied only for certain quest steps. 2010-06-12 16:51:54 +00:00
quests Add final map handling for the non-city based royalty quests 2010-05-13 19:17:11 +00:00
santo_dominion - This is essentially a revert/replacement of 13380. After checking the world 2010-06-09 05:25:55 +00:00
scorn Add the port pass that is/was at the top of Mad Mage's tower. 2010-06-12 14:32:19 +00:00
sisters Run MapNormalizer editor script on all map files. 2009-07-12 14:47:05 +00:00
start Fix JSON. 2010-05-15 19:19:49 +00:00
styles Add quest events to the sword that the lord spectre carries 2010-05-13 19:27:20 +00:00
teamarena
templates more python guild updates 2010-03-25 17:33:10 +00:00
test Various animation experiments. 2010-05-30 15:03:57 +00:00
under_world
unlinked Adapt exit coordinates to server r12199. 2009-10-22 23:06:07 +00:00
whalingoutpost Filled in surrounding area with solid rock, requires archetype r10843 or newer 2008-12-14 03:59:59 +00:00
wolfsburg Add end_quest marker, not required but nicer. 2010-05-16 14:39:57 +00:00
world - This is essentially a revert/replacement of 13380. After checking the world 2010-06-09 05:25:55 +00:00
.emergency
COPYING
ChangeLog Add breaks to mark different versions, add 1.50.0 break. 2010-04-26 04:43:28 +00:00
HallOfDMs Run MapNormalizer editor script on all map files. 2009-07-12 14:47:05 +00:00
HallOfSelection
README
default.quests Support for the various quests that track passage through the gates of scorn. 2010-04-27 14:40:43 +00:00
regions.reg New description for Port Joseph 2008-10-31 00:13:27 +00:00
world.quests Questify Darcap's elemental quest (basic for now). 2010-06-06 11:02:47 +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.