Mod:
- changed passwords.dat filename to raspberryjammod_passwords.dat [1.9+]
- added raspberryjammod_permissions.dat control file to protect selected areas of the map [alpha quality; designed for servers] [1.9+]
- added options to disable in-wall and fall damage [1.9+]
Scripts:
- added a lot of block names to mcpi/block.py, supporting most blocks through Minecraft 1.10.2
- deprecated mc.py and mcturtle.py in favor of mine.py and mineturtle.py, which are the same as except blocks are referred to as block.BLOCKNAME instead of BLOCKNAME
- added RGBA and material data availability to Block structure; the RGB data is typically an average RGB value of a side-face; the alpha is mostly made up; the material data is made to support Visual Python
- added dithering and color rendering utilities; see earth.py and dither.py for examples on how to use; these are designed to use blocks from 1.10.2
- added support for running many scripts in Visual Python _without_ Minecraft [alpha quality]; on Linux/OSX/Cygwin, after installing Visual Python, you can do:
MCPI_VPYTHON=1 python scriptname.py
On Windows, you can do:
set MCPI_VPYTHON=1
python scriptname.py