Go to file
silvernexus 232dd11578 Fix teleporters on floors 2 and 3 of Butakis Elite training tower
git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@21815 282e977c-c81d-0410-88c4-b93c2d0d6712
2021-01-18 01:49:15 +00:00
Info
animations/maps/navar_city
azumauindo Use absolute paths for exits to the Astral Vault 2020-08-24 18:34:38 +00:00
brest Remove left and right brackets from dialog 2021-01-06 03:11:54 +00:00
darcap Reset chalice to default values, no reason for custom values. 2021-01-16 18:24:16 +00:00
dragonisland Use archetypes for converters instead of custom ones. 2020-09-09 17:46:17 +00:00
dungeons
editor
euthville Normalize quest title capitalization 2021-01-02 00:02:43 +00:00
inn_and_outpost Give map unique name 2021-01-07 18:21:57 +00:00
lake_country Fix teleporters on floors 2 and 3 of Butakis Elite training tower 2021-01-18 01:49:15 +00:00
marksel Use archetypes for converters instead of custom ones. 2020-09-09 17:46:17 +00:00
mlab Use archetypes for converters instead of custom ones. 2020-09-09 17:46:17 +00:00
navar_city Change map name (Devourers Inner Sanctum -> Inner Sanctum of Devourers) to match the syntax and show it is related to the parent map (Sanctum of Devourers) 2021-01-13 14:04:06 +00:00
planes Numerous cosmetic, design and functional changes to Astral Vault (planes/astral-vault) to prevent players from using the map as free transportation 2020-08-25 19:09:48 +00:00
port_joseph Normalize quest title capitalization 2021-01-02 00:02:43 +00:00
pup_land Use tissue paper arch for raffles 2 and 3 in pupland as well. 2021-01-16 16:39:43 +00:00
python Allow empty flasks to be filled. 2021-01-16 18:16:31 +00:00
quests List potion of fire resistance ingredients, and give knowledge too. 2021-01-17 11:26:45 +00:00
santo_dominion Normalize quest title capitalization 2021-01-02 00:02:43 +00:00
scorn Add unlit braziers to Undead Church (scorn/misc/church) in Scorn. Requires archetype update r21690. Cosmetic change only, no functional changes. 2021-01-14 12:35:20 +00:00
sisters
start Use 'warlock' instead of mage, which is being removed. 2020-09-09 13:40:56 +00:00
styles Add chest style map. 2020-12-02 16:27:38 +00:00
teamarena
templates
test Fix some conversions. 2020-12-12 20:02:45 +00:00
under_world New maps related to Undermountain of Brittany, added to give more sense of underground depth. Still unlinked from the world map. 2020-10-31 22:17:57 +00:00
unlinked
whalingoutpost Correct what material the Floe Shield is made of in Glacier Keep, Frost Lair (whalingoutpost/misc/castleb3), it now correctly identifies as made of iron and ice. 2017-03-27 04:55:19 +00:00
wolfsburg Normalize quest title capitalization 2021-01-02 00:02:43 +00:00
world Update Wolfsburg Provisions to use food shop barn arch. 2021-01-16 18:36:51 +00:00
.emergency
COPYING
ChangeLog Fix teleporters on floors 2 and 3 of Butakis Elite training tower 2021-01-18 01:49:15 +00:00
HallOfDMs
HallOfSelection
README
regions.reg Add Andustar region 2021-01-07 18:03:00 +00:00
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.