Go to file
akirschbaum 8491c3cd32 Remove duplicate floors to fix display issues.
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@15012 282e977c-c81d-0410-88c4-b93c2d0d6712
2011-08-27 16:41:52 +00:00
Info
animations/maps/navar_city
azumauindo Remove unneeded logic from map. 2011-06-26 19:35:13 +00:00
brest Do not provide bad food in Brest Inn. 2011-08-04 17:51:01 +00:00
darcap Fix invalid quest step. 2011-07-23 10:05:56 +00:00
dragonisland Misc fixes to the house, courtesy Khaleh. 2011-07-23 10:18:06 +00:00
dungeons Khalehs updates to the training centers from the tracker for dragonbreath 2011-08-26 17:58:58 +00:00
editor Clean up WorldMaker script. Make it more robust. 2011-07-08 17:27:01 +00:00
euthville Remove line breaks in NPC dialogue at the Euthville Magic Shop. 2011-05-07 03:13:51 +00:00
inn_and_outpost Remove stray exit from a floor's inventory. 2011-06-28 19:29:19 +00:00
lake_country Remove duplicate floors to fix display issues. 2011-08-27 16:41:52 +00:00
marksel Major cosmetic overhaul to Sages Tower in Marksel. Exapnded the map to include ground outside the shop walls. Floor plan matches the physical building shape. Door or entrance now opens when a player approaches. Shop item and decor layout changes. Map considered an outdoor map so darkness or time of day is visible when inside; added light sources. Updated world map for new map entrance destination. 2011-04-24 04:17:41 +00:00
mlab
navar_city Use the quest system for the Rhyzian amulet quest. 2011-08-13 17:11:36 +00:00
planes
port_joseph
pup_land Replace general shop with jewels one. 2011-07-17 10:21:59 +00:00
python Prevent actual reading of the panel. 2011-07-24 14:15:13 +00:00
quests Merge lines. 2011-08-07 21:47:03 +00:00
santo_dominion Make the Mudman a quest. 2011-07-17 13:49:51 +00:00
scorn Cosmetic updates to the Dragon Guild of Scorn. Map considered an outdoor map so darkness or time of day is visible when inside; added light sources. Door now opens when a player tries to leave the map. Added ground outside the map so. Updated world map for the new entrance to the guild map. 2011-08-27 08:02:55 +00:00
sisters
start Adapt to renamed face names. 2011-06-26 18:33:01 +00:00
styles fix grand titans level being lower then a base titan 2011-08-24 14:58:22 +00:00
teamarena
templates Correct probably invalid connection. 2011-05-30 17:44:48 +00:00
test Test jail information. 2011-06-09 21:00:09 +00:00
under_world
unlinked
whalingoutpost Replace Ancient and Legendary dragons with extracted archetype. 2011-06-07 19:06:55 +00:00
wolfsburg Add more earthwalls for easier navigation on laptop keyboards. 2011-06-26 20:06:40 +00:00
world Cosmetic updates to the Dragon Guild of Scorn. Map considered an outdoor map so darkness or time of day is visible when inside; added light sources. Door now opens when a player tries to leave the map. Added ground outside the map so. Updated world map for the new entrance to the guild map. 2011-08-27 08:02:55 +00:00
.emergency
COPYING
ChangeLog Updated ChangeLog generated using svn2cl 2011-08-22 06:14:11 +00:00
HallOfDMs
HallOfSelection
README
regions.reg
world.quests Make the Mudman a quest. 2011-07-17 13:49:51 +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.