Go to file
rjtanner d58748a535 Removed buttons that were accidentally added to the map in Lake Country Dragon Hangar (lake_country/dragon_hangar/hangar).
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@19756 282e977c-c81d-0410-88c4-b93c2d0d6712
2015-01-15 06:18:01 +00:00
Info
animations/maps/navar_city
azumauindo Modified cave wall sections for better merging to Suno-yamatoshi Dojo (azumauindo/suno-yamatoshi/buildings/dojoB1) in Azumauindo. Cosmetic changes only, no functional changes. 2014-10-10 05:36:32 +00:00
brest
darcap
dragonisland Removed buttons that were accidentally added to the map in Stoneville Dragon Hangar (dragonisland/hangar). 2015-01-15 06:08:41 +00:00
dungeons Removed unused and empty space to Dark Cave, Secret Hideout (dungeons/dark-cave/hidden-cave) and updated staircase exit and entrance coordinates in the linked map Dark Cave, Ogre Cavern (dungeons/dark-cave/ogre-cave). 2014-10-18 21:32:08 +00:00
editor
euthville
inn_and_outpost
lake_country Removed buttons that were accidentally added to the map in Lake Country Dragon Hangar (lake_country/dragon_hangar/hangar). 2015-01-15 06:18:01 +00:00
marksel
mlab Modified fence sections for nicer merging with nearby walls in City de Clouds (mlab/citydeclouds/citydeclouds2E) in mlab. Cosmetic change only, no functional changes. 2014-10-25 05:48:06 +00:00
navar_city Removed buttons that were accidentally added to the map in Navar Dragon Hangar (navar_city/dragon_hangar/hangar). 2015-01-15 06:14:21 +00:00
planes
port_joseph
pup_land Minor grammatical changes 2015-01-11 17:57:14 +00:00
python
quests Bug #794 map bug: dimdoor in Tower of the Stars. Doubled the map size to Tower of the Stars, Top (quests/peterm/CTower/TowerTop) to give the illusion of being able to see much more of the surrounding area. Adjusted the stairs coordinates on Tower of the Stars, Study (quests/peterm/CTower/Study). 2015-01-02 08:27:15 +00:00
santo_dominion
scorn Bug #793 Map bug: dimdoor in Scorn Royal Kitchen. Added no_spells tiles outside the exits and under all the windows to block dimension door spell from accessing areas outside the map to Castle Kitchen (scorn/misc/castle_kitchen) in Scorn. 2015-01-07 00:19:06 +00:00
sisters
start
styles
teamarena
templates Added two magic shop based template maps, templates/shops/magicshop-1 and templates/shops/magicshop-2. 2014-11-08 07:16:15 +00:00
test
under_world
unlinked
whalingoutpost
wolfsburg
world Remove Guild Houses Inc. 2014-11-29 21:47:52 +00:00
.emergency
COPYING
ChangeLog
HallOfDMs
HallOfSelection
README
regions.reg
world.quests

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.