summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-25 13:21:55 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-25 13:21:55 +0000
commite81fcb4cf7d5c3ebd677d1e821e70813b5a40058 (patch)
tree61fd45720e7bbe8014fc1598e9e7e00a8cec2183 /crawl-ref
parenta91a15035edd90fcaa608b88fd84908fb226fa7d (diff)
downloadcrawl-ref-e81fcb4cf7d5c3ebd677d1e821e70813b5a40058.tar.gz
crawl-ref-e81fcb4cf7d5c3ebd677d1e821e70813b5a40058.zip
Update credits and change log.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.5@10399 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/CREDITS.txt21
-rw-r--r--crawl-ref/docs/changelog.txt11
-rwxr-xr-xcrawl-ref/source/util/columnise-credits.pl3
3 files changed, 22 insertions, 13 deletions
diff --git a/crawl-ref/CREDITS.txt b/crawl-ref/CREDITS.txt
index 44cef8a26d..225e0e6d19 100644
--- a/crawl-ref/CREDITS.txt
+++ b/crawl-ref/CREDITS.txt
@@ -15,15 +15,16 @@ Enne Walker) would like to thank:
We'd also like to thank members of the Dungeon Crawl community who have
contributed to Dungeon Crawl Stone Soup:
-Warwick Allison Benoit Hudson Stefan O'Rear
-Juha Arpiainen Iainuki Yuuma Oohara
-Roy Axenov Ilyak Erik Piper
-Max Bane Mitsuhiro Itakura Lemuel Pitkin
-Bill Beher Eino Keskitalo Derek Ray
-Alexander Beisig Jarmo Kielosto Remsleep
-Erik Inge Bolsø Kornel Kisielewicz David Rose
-Peter Borgmann Vambola Kotkas Sebastian Salman
-Adam Borowski Vsevolod Kozlov Brett Scarborough
+Warwick Allison R. Dan Henry Dylan O'Donnell
+Juha Arpiainen Benoit Hudson Stefan O'Rear
+Roy Axenov Iainuki Yuuma Oohara
+Max Bane Ilyak Erik Piper
+Bill Beher Mitsuhiro Itakura Lemuel Pitkin
+Alexander Beisig Eino Keskitalo Derek Ray
+Erik Inge Bolsø Jarmo Kielosto Remsleep
+Peter Borgmann Kornel Kisielewicz David Rose
+Adam Borowski Vambola Kotkas Sebastian Salman
+Trent W. Buck Vsevolod Kozlov Brett Scarborough
Terje Bø Ryan Kusnery Darshan Shaligram
Aaron Curtis Jukka Kuusisto Robert Shimmin
Denzi Maciej Lapinski Sigurd
@@ -38,4 +39,4 @@ GreyKnight Wille Mäntylä Steven Wheeler
Shayne Halvorson Onia Ninara Jeremey Wilson
Ciaran Hamilton Erkki Nurmi Yelve Yakut
Chris Hamons nyra Zooko
-R. Dan Henry Dylan O'Donnell
+
diff --git a/crawl-ref/docs/changelog.txt b/crawl-ref/docs/changelog.txt
index 25f7a0268a..4b2d69d455 100644
--- a/crawl-ref/docs/changelog.txt
+++ b/crawl-ref/docs/changelog.txt
@@ -12,15 +12,18 @@ Disclaimer: These are merely the highlights, not an exhaustive list of changes.
* Fixed summoning decks giving permanent summons at low power.
* Fixed erroneous "blocked line of fire" warnings.
* Fixed missing items in Tiles inventory menus.
+* Fixed 'C' closing one out of several adjacent doors without prompting.
* Fixed Xom's repel stairs effect moving shops.
* Fixed Xom gifts not being destroyed in deep water.
-* Fixed magic mapping not showing altars/gates in the Tiles version.
+* Fixed magic mapping bugs in the Tiles version.
* Fixed AltGr not being recognized in Windows Tiles version.
* Fixed misbehaviour for temporary weapon brands and throwing.
* Fixed Blade Hands not counting as slicing while wearing melded gloves.
+* Fixed berserking allies taking orders from 'ta'.
+* Fixed random blinking sometimes placing the player in dangerous clouds.
* Fixed certain incorporeal monsters flying instead of levitating.
* Staff of earth damage is reduced by AC.
-* The elemental staves' melee effects cost 2 mp again.
+* Lowered damage output for elemental staves.
* Once entered, the gate to Zot remains open even without carrying runes.
* Add some fancy messaging when opening the gate to Zot.
* Prompt before moving when confused and next to lava or deep water.
@@ -35,11 +38,15 @@ Disclaimer: These are merely the highlights, not an exhaustive list of changes.
* Vampiric Draining/Drain Life deal damage to summons again, but don't heal.
* Wielding stones for Sandblast now guarantees a range of 2.
* Change Portal Projectile range to full LOS.
+* Limit the number of items a monster may pick up to two per turn.
+* Unknown mimics are no longer stabbable.
* Turn autopickup back on if you gain see invisible, even temporarily.
* Polymorph other always polymorphs shapeshifters whose form isn't magic immune.
* Troll hide and armour count as light armour.
* Let ghouls wear gloves again.
* Wearing a visored helmet prevents biting attacks.
+* Allow players to reroll already named random character combinations.
+* Improved error messages when trying to load pre-0.5 save files or ghosts.
* Some new vaults.
* Tiles: Re-allow selection of player dolls ('-' command).
* Add missing tiles options to the options guide (docs/, '?&' command).
diff --git a/crawl-ref/source/util/columnise-credits.pl b/crawl-ref/source/util/columnise-credits.pl
index 31e454e5bd..7d313da2be 100755
--- a/crawl-ref/source/util/columnise-credits.pl
+++ b/crawl-ref/source/util/columnise-credits.pl
@@ -6,7 +6,8 @@ use warnings;
my $NAMEHEAD = qr/contributed to .*Stone Soup:\s*$/;
binmode STDOUT, ':utf8';
-open my $inf, '<:utf8', 'CREDITS' or die "Unable to read CREDITS: $!\n";
+open my $inf, '<:utf8', 'CREDITS.txt'
+ or die "Unable to read CREDITS.txt: $!\n";
my @text = <$inf>;
close $inf;