This commit is contained in:
Zeno Rogue 2018-11-06 06:04:32 +01:00
parent 0e79a59eee
commit 69fb2c712f
2 changed files with 13 additions and 3 deletions

View File

@ -2744,3 +2744,13 @@ Other bugfixes and improvements:
* rug no longer always renders in Poincare
* graph drawing in RogueViz
* some extra chars supported in the browser version; some other minor web improvements
2018.11.01 19:09 Update 10.4y
* In the "view range" setting, you can now choose to not draw all cells in the given range, but based on their visibility (i.e., being on screen and not too small).
Especially useful with non-azimuthal hyperbolic projections -- e.g. band and halfplane models will automatically adjust to the visible region, instead of drawing tiles
which are offscreen/too small and/or not drawing other tiles which are far but still well visible.
* various text improvements, and translation update
* link displayed in the model menu
* fixed drawing of the boundary of polygonal
* in svg screenshot, disabled weird recoloring and ringcolor changing

View File

@ -2,9 +2,9 @@
// It is quite chaotic.
// version numbers
#define VER "10.4x"
#define VERNUM 10424
#define VERNUM_HEX 0xA0C8
#define VER "10.4y"
#define VERNUM 10425
#define VERNUM_HEX 0xA0C9
#include <stdarg.h>