Go to file
rjtanner 990ff2a7e7 Fix for Bug [ 2020789 ] many maps broken 16 months ago: wrong immunities, armour..; Corrected partial resistance corruption from r5574
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@9933 282e977c-c81d-0410-88c4-b93c2d0d6712
2008-09-27 05:34:28 +00:00
Info
animations/maps/navar_city
azumauindo Change more "name woodfloor" to "name wood floor" in misc places. 2008-06-20 10:47:32 +00:00
brest 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-12 00:51:41 +00:00
darcap Cosmetic touchup on the cave walls so they merge and blend together nicer 2008-09-14 22:39:36 +00:00
dragonisland 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-16 02:08:30 +00:00
dungeons Fix a wall in in dungeons/barad_dur 2008-09-25 13:06:09 +00:00
editor Make editor scripts work with current Gridarta. 2008-08-17 19:08:31 +00:00
euthville Insert blocked walls in empty area of the map 2008-09-18 00:47:08 +00:00
inn_and_outpost Insert blocked walls in empty area of the map 2008-09-19 00:11:57 +00:00
lake_country 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-20 22:03:15 +00:00
marksel Set region to wilderness 2008-09-20 22:18:04 +00:00
mlab
navar_city Map header updates: Update maps with entrance x & y coordinates, adjust map level difficulty to something slightly more realistic 2008-09-21 19:59:50 +00:00
planes Map header updates: Update maps with entrance x & y coordinates, adjust map level difficulty to something slightly more realistic 2008-09-20 23:51:28 +00:00
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 Mention how to add or remove windows in the building instructions. 2008-08-04 14:03:04 +00:00
python
quests Some map fixes in /quests/skud/*: 2008-09-25 13:14:17 +00:00
santo_dominion Fix for Bug [ 2020789 ] many maps broken 16 months ago: wrong immunities, armour..; Corrected partial resistance corruption from r5574 2008-09-27 05:34:28 +00:00
scorn Map normalize, no functional changes 2008-08-21 00:32:27 +00:00
sisters
start Map normalize, no functional changes 2008-08-21 00:32:27 +00:00
styles Replaced my old e-mail address in map headers by a working one. 2008-07-19 23:46:03 +00:00
teamarena The @match expression in npc dialog is case insensitive, but a lot of map treated it as if it was case sensitive, fixing a lot of them (there may be more left, that the grep didn't find). 2008-05-23 08:11:20 +00:00
templates
test Pipe test for regexp. 2008-08-16 07:49:00 +00:00
under_world
unlinked
whalingoutpost
wolfsburg
world Re-designed (elemental) houses map; now each elemental house is a standalone map vs all of them being in the same map divided by walls. Also updated the world map for Darcap to use the new house maps. 2008-09-14 01:54:58 +00:00
.emergency
COPYING
ChangeLog Updated ChangeLog file using svn2cl 2008-09-21 18:40:34 +00:00
HallOfDMs
HallOfSelection Map normalize, no functional changes 2008-08-21 00:32:27 +00:00
README - Change the order of the dates when using -r with svn2cl so that the log 2007-12-30 05:37:41 +00:00
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.