Skip to content

Tags: angband/angband

Tags

4.2.5-397-gddeaace4e

Toggle 4.2.5-397-gddeaace4e's commit message
Correct some typos in comments

4.2.5-396-g885429078

Toggle 4.2.5-396-g885429078's commit message
Add missing parenthesis in monster spoiler output

Fixes a regression introduced by 05945f0 .

4.2.5-395-ge45cc1e7d

Toggle 4.2.5-395-ge45cc1e7d's commit message
add help document for manual window setup for gcu

4.2.5-394-g347a98423

Toggle 4.2.5-394-g347a98423's commit message
Comment out devkitpro NDS build for now to avoid constant github errors

4.2.5-393-g11f681133

Toggle 4.2.5-393-g11f681133's commit message
Better match death logic for projections or non-player hits to mon_ta…

…ke_hit()

Noted when trying to diagnose NickMcConnell/FAangband#426 .  Specifically the changes are:
    1) A non-player projection can no longer kill an arena monster.  Has an impact only if there are monster spells that can affect the caster.
    2) Shapechanged monster reverts to original shape on death for a non-player hit or non-player projection.  The death message due to a player projection is now set after reverting the shape rather than before.  Might impact #4245 , but only so far as the misleading death message prior to this change confused the player.  Cases where there's mulitple history entries for killing the unique would not be fixed.

4.2.5-392-g27d3fe0b2

Toggle 4.2.5-392-g27d3fe0b2's commit message
Fix missing word in the documentation about configuring SDL2

Resolves #6243 .  Also describe how that window<->subwindow relationship is managed.

4.2.5-391-g166aeb1a5

Toggle 4.2.5-391-g166aeb1a5's commit message
Avoid warnings on msys2 about truncation when initializing array from…

… string

The text of such warnings begins with "warning: initializer-string for array of 'unsigned char' truncates NUL terminator but destination lacks 'nonstring' attribute".  Those warnings are controlled by the -Wunterminated-string-initialization option.

4.2.5-390-g014b6f40a

Toggle 4.2.5-390-g014b6f40a's commit message
For macOS and configure-based builds, replace angband.o with static l…

…ibrary

Resolves #6239 .  On the platforms tested (macOS, Linux on 32-bit Intel processor, OpenBSD on 64-bit Intel processor; all with non-release builds) there was no substantial change to the time for a full build or the size of the executables for the game or test cases.  The file size for the archive library is larger than angband.o (22.3 megabytes versus 7.7 megabytes on macOS, 13.6 megabytes versus 12.9 megabytes on Linux, and 15.7 megabytes versus 13.5 megabytes on OpenBSD).  For a macOS build, no longer have the angband.o.<architecture_name> files which does save around 7.7 megabytes.

4.2.5-389-g1b3978f8d

Toggle 4.2.5-389-g1b3978f8d's commit message
Avoid extraneous path separator in the user and archive directories

Happens when PRIVATE_USER_PATH with its default value, "~/.angband", is used.  Resolves #6237 .

4.2.5-388-g6fc81f58b

Toggle 4.2.5-388-g6fc81f58b's commit message
Tidy archive directory handling

Since the change on January 9, 2022 puts it within the user directory, elevated privileges are not necessary when archiving/restoring the randart file, main.c can be allowed to alter the path (though with file_move() as it is, it must be in the same file system as the user directory), and some dead code can be removed from CMakelists.txt.