Go to file
rjtanner 453e0a6030 Replace recently updated oakdoors with new archetype and recycled graphic. Requires archetype r10798 or newer.
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@10813 282e977c-c81d-0410-88c4-b93c2d0d6712
2008-12-03 01:28:13 +00:00
Info Spelling corrections. 2007-05-12 22:46:19 +00:00
animations/maps/navar_city
azumauindo Convert platinum payment altars to accept payment of any coin type, requires server update r10232 (or newer) 2008-11-21 02:37:29 +00:00
brest Replace recently updated oakdoors with new archetype and recycled graphic. Requires archetype r10798 or newer. 2008-12-02 01:49:04 +00:00
darcap Cosmetic wall changes for nicer merging 2008-12-02 02:13:37 +00:00
dragonisland Cosmetic change with how swall (fence) merges with nearby walls 2008-12-02 02:23:10 +00:00
dungeons Replace recently updated oakdoors with new archetype and recycled graphic. Requires archetype r10798 or newer. 2008-12-02 02:27:25 +00:00
editor Make editor scripts work with latest Gridarta. 2008-11-20 21:58:48 +00:00
euthville Replace recently updated oakdoors with new archetype and recycled graphic. Requires archetype r10798 or newer. 2008-12-02 02:25:13 +00:00
inn_and_outpost Convert platinum payment altars to accept payment of any coin type, requires server update r10232 (or newer) 2008-11-03 06:02:16 +00:00
lake_country Insert missing floor tile 2008-12-02 02:53:12 +00:00
marksel Replace recently updated oakdoors with new archetype and recycled graphic. Requires archetype r10798 or newer. 2008-12-02 02:55:19 +00:00
mlab
navar_city Replace recently updated oakdoors with new archetype and recycled graphic. Requires archetype r10798 or newer. 2008-12-03 01:28:13 +00:00
planes
port_joseph Replace and phase out the (old) oakdoor graphic with something different 2008-11-29 07:15:36 +00:00
pup_land Unique maps (such as apartments) require full file path back to world maps 2008-12-01 20:22:12 +00:00
python oops, committed some debugging code! Sorry :-) 2008-11-24 08:37:17 +00:00
quests Replace and phase out the (old) oakdoor graphic with something different 2008-11-30 05:47:35 +00:00
santo_dominion Overhaul 'New Cthulhu Church' to include walls around the map and have them merge nicely 2008-11-30 07:09:51 +00:00
scorn Cosmetic wall changes for smoother merging 2008-12-01 06:13:51 +00:00
sisters Cosmetic wall changes with how they merge with doorways 2008-11-29 08:05:08 +00:00
start Cosmetic change with how fences (swall) merge with nearby walls 2008-11-29 08:07:43 +00:00
styles Cosmetic wall changes for nicer merging 2008-11-26 01:34:40 +00:00
teamarena
templates
test Turning boat example map. 2008-11-16 18:59:26 +00:00
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 Update maps with x & y entrance coordinates and difficulty level 2008-11-24 07:02:18 +00:00
wolfsburg Replace and phase out the (old) oakdoor graphic with something different 2008-12-01 06:38:57 +00:00
world Replace and phase out the (old) oakdoor graphic with something different 2008-12-01 06:38:57 +00:00
.emergency
COPYING
ChangeLog Updated ChangeLog file using svn2cl 2008-12-02 03:16:50 +00:00
HallOfDMs fixing altar of Valkyrie in HallOfDMs (bug 2341093) -- r10708 fixed the abandoned temple 2008-11-25 03:34:44 +00:00
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.