Go to file
rjtanner ebd5ccfd9d Map header updates: Update maps with entrance x & y coordinates, make map name more descriptive
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@10119 282e977c-c81d-0410-88c4-b93c2d0d6712
2008-10-20 02:54:58 +00:00
Info
animations/maps/navar_city
azumauindo Map header updates: Update maps with entrance x & y coordinates, adjust map level difficulty to something slightly more realistic 2008-10-05 21:49:42 +00:00
brest
darcap Map header updates: Update maps with entrance x & y coordinates, set map difficulty to level 1, added region darcapcircus to fz_boatracing map 2008-10-06 21:53:35 +00:00
dragonisland
dungeons Fix a wall in in dungeons/barad_dur 2008-09-25 13:06:09 +00:00
editor Update editor scripts to Gridarta r5480. 2008-10-11 21:10:27 +00:00
euthville
inn_and_outpost
lake_country
marksel
mlab Map header updates: Update maps with entrance x & y coordinates, make map name more descriptive 2008-10-20 02:54:58 +00:00
navar_city
planes
port_joseph Map header updates: Update maps with entrance x & y coordinates, adjust map level difficulty to something slightly more realistic, add portjoseph as the region where necessary 2008-09-21 21:22:07 +00:00
pup_land Map header updates: Correct creation date in map header that was changed in r7448, it was using the wrong month; Update maps with entrance x & y coordinates, adjust map level difficulty to something slightly more realistic 2008-10-14 02:10:25 +00:00
python python/items/ring_occidental_mages.py: 2008-08-11 05:56:51 +00:00
quests Map header updates: Update maps with entrance x & y coordinates, adjust map level difficulty to something slightly more realistic 2008-10-06 00:39:46 +00:00
santo_dominion Map header updates: Correct creation date in map header that was changed in r7448, it was using the wrong month; Update maps with entrance x & y coordinates, adjust map level difficulty to something slightly more realistic 2008-09-27 06:23:32 +00:00
scorn Map header updates: Update maps with entrance x & y coordinates, adjust map level difficulty to something slightly more realistic 2008-09-30 00:57:48 +00:00
sisters Map header updates: Correct creation date in map header that was changed in r7448, it was using the wrong month; Update maps with entrance x & y coordinates, adjust map level difficulty to something slightly more realistic 2008-10-01 01:46:01 +00:00
start
styles
teamarena Map header updates: Update maps with entrance x & y coordinates, adjust map level difficulty to something slightly more realistic, added region firevolcano 2008-10-02 01:01:23 +00:00
templates
test
under_world Map header updates: Update maps with entrance x & y coordinates, adjust map level difficulty to something slightly more realistic 2008-10-02 01:08:06 +00:00
unlinked
whalingoutpost Typo correction, her -> here 2008-10-03 00:45:46 +00:00
wolfsburg Replace generic altars with tables in the Enternal Reward (tavern) 2008-10-05 02:08:00 +00:00
world Resize maps and updated exit & entrance coordinates, updated world maps to reflect this change too 2008-10-05 20:46:16 +00:00
.emergency
COPYING
ChangeLog Updated ChangeLog file using svn2cl 2008-10-17 20:26:55 +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.