This commit is contained in:
Zeno Rogue 2018-07-16 19:54:31 +02:00
parent cf89574126
commit cedd78b3e7
3 changed files with 16 additions and 4 deletions

View File

@ -7,7 +7,7 @@
</a>
</p>
<p align="left">
<b>Current version: 10.4i</b>
<b>Current version: 10.4m</b>
</p>
A puzzle roguelike in the hyperbolic plane. See the [HyperRogue website](http://roguetemple.com/z/hyper.php) for detailed and most up-to-date information.

View File

@ -2547,3 +2547,15 @@ non-game:
- fixed PTM games not recorded when switching modes
- Random Pattern Mode: fixed the Land of Power, treasures appear in the Reptiles.
- fixed the "-geo" parameter
2018.07.11 12:45 Update 10.4m
- Goldberg-Coxeter construction in order-4 geometries
- Raging Bull / Orb of the Bull / Orb of Horns worked correctly only on hexagons and heptagons
- marked Whirlpool as not working in order-4 geometries
- "triangle grid: rings" now works in order-4 geometries
- fixed the size of Krakens and energy sword on the Euclidean square grid
- fixed Kraken movement on squares
- shift+f2 to shift+f4 can now disable HUD, FPS, and the map
- fixed several instances when PTM score would not be recorded when changing modes

View File

@ -2,9 +2,9 @@
// It is quite chaotic.
// version numbers
#define VER "10.4l"
#define VERNUM 10412
#define VERNUM_HEX 0xA0BC
#define VER "10.4m"
#define VERNUM 10413
#define VERNUM_HEX 0xA0BD
#include <stdarg.h>