Skip to content

MapTool 1.10.0 Beta 4

Pre-release
Pre-release
Compare
Choose a tag to compare
@cwisniew cwisniew released this 07 Sep 00:50
· 4815 commits to develop since this release
263e3e9

WebRTC

Beta Test 4 to test WebRTC changes in MapTool - This feature will allow player clients to connect with the server without requiring port-forwarding on the server end. To test both Server and Player clients must enable it via the Help menu -> Use WebRTC for communications...

Those users that were unable to configure the router that an ISP provided should give this a test.

User Passwords

Also part of this build is the initial per-user password database support. This can be enabled on the Start Server dialog. You will need to manually add the passwords.json file to your .maptool-rptools/config directory. You can create the file initially in plain text and MapTool will convert on server startup. Example passwords.json file:

{
	"passwords": [
		{
			"username": "GM",
			"password": "MothersMaidenName",
			"role": "GM"
		},
		{
			"username": "Player1",
			"password": "NotMyBirthday",
			"role": "Player"
		}
	]
}

See #2917 for more details.