I am pleased to release version 4.67 of MUSHclient. See the release notes for more details.
Improvements
- Some scripting improvements
- Fixed crash on world close if a plugin did SetSpeedWalkDelay
- Updated lpeg (Lua Parsing Expression Grammar) from version 0.9 to 0.10
Warning!
This version has a problem with incompatibility in the LuaJSON module with LPEG 0.10. This may affect you if you use JSON (for example, GMCP / ATCP2 decoding). You are advised to use version 4.68 onwards instead.
Download
You can view the release notes for version 4.67
You can download MUSHclient 4.67 now from ...
|
You are strongly advised to backup (make a copy of) your existing MUSHclient world files before upgrading. Just in case.
If there are any problems, please post messages to the Bug Reports, Suggestions, or General parts of this forum.
MD5 sum for the installer
If you do an md5sum on mushclient467.exe you should get this result:
aac79c13846f7181572be08c7a3cc46a
The forum post a small script to sumcheck the MUSHclient download shows how you can write a small script in MUSHclient to do the sumcheck. It also lists some places you can download md5sum.exe to do the sumcheck (if this is the first time you have downloaded MUSHclient).
One way of doing an md5sum is to download the Installer_sumcheck plugin from the Plugins page (RH click that link and "save link as" to get the plugin). Then install the plugin (see the File menu -> Plugins) and type "md5sum" which lets you browse to the installer file, load it, and display the sumcheck.
Message about "Failed to load resources file"
Some users are reporting getting a message like "Failed to load resources file: C:\Programme\MUSHclient\locale\DE.dll - trying English file" when starting MUSHclient (the DE.dll part might be another language like FR.dll).
This will be because you have customized the "locale" of MUSHclient to other than EN (English).
See the How to localize MUSHclient messages into other languages forum posting for more details about localization.
To fix this, find the directory you installed MUSHclient into (eg. "C:\Program Files\MUSHclient\") and then locate the subdirectory "locale". In that you will find a file en.dll. Copy or rename that file to match the missing file in the message (eg. copy en.dll to de.dll).
Alternative suggestion: Go into the File menu -> Global Preferences -> General, and change the field "Locale code" back to "EN" (English) and then it should look for EN.DLL next time.
Warning about Lua 5.1 upgrade (September 2006)
MUSHclient version 3.80 upgraded the Lua script engine from Lua 5.0.2 to 5.1.1. If you are upgrading to this version from an earlier version than 3.80, you should read Version 3.80 released - with Lua 5.1 script engine - this post has recommendations about what is required if you use Lua scripting or Lua plugins. Note: Since version 3.80 was released, the version of Lua has been upgraded. It is currently 5.1.4. Some versions (versions 4.49 to 4.52 of MUSHclient) may incorrectly report they are using Lua 5.1.1 when you open a world.
Warning about upgrading from versions prior to 3.21 (May 2002)
MUSHclient version 3.85 (onwards) no longer reads the old "binary" world files produced by versions prior to 3.21. For more information about this please read the forum post Versions 3.85 onwards no longer support world files created prior to version 3.21 - this post has recommendations about how to upgrade your world files if you are upgrading from a version earlier than 3.21.
Note that version 3.21 was released quite a few years ago (May 2002), so people who have recently installed MUSHclient should not have any problems.
Source code
The source code for this version is available from GitHub:
http://github.com/nickgammon/mushclient/tree/v4.67
You can directly download the source from the Downloads page (http://github.com/nickgammon/mushclient/downloads), or preferably install Git and use the appropriate commands to clone or pull the source. For some suggestions about getting the source from Git see MUSHclient source being made available on GitHub forum posting.
If you install Git, subsequent downloads (of new versions) will be much faster as it only needs to download the changes, not the whole source. Also by using Git you can find out exactly what has changed from version to the next.
Summary of changes in this version
$ git --no-pager diff v4.66..v4.67 --stat
MUSHclient.rc | 8 +-
dialogs/world_prefs/genpropertypage.cpp | 2 +
dialogs/world_prefs/prefspropertypages.cpp | 14 +-
doc.h | 4 +-
doc_construct.cpp | 1 +
docs/lpeg-128.gif | Bin 0 -> 4923 bytes
docs/lpeg.html | 226 ++++++++++++-----
docs/re.html | 122 +++++++--
how_to_release.txt | 13 +-
install/mushclient.nsi | 33 ++-
install/readme.txt | 4 +-
lua/re.lua | 174 ++++++++------
scripting/lpeg.c | 377 +++++++++++++++++++---------
scripting/lua_utils.cpp | 10 +
scripting/methods/methods_info.cpp | 12 +
scripting/methods/methods_utilities.cpp | 3 +-
serialize.cpp | 3 +-
world_debug.cpp | 10 +-
18 files changed, 724 insertions(+), 292 deletions(-)
Commit log (date order)
$ git --no-pager log --pretty=oneline --reverse --abbrev-commit v4.66..v4.67
4b81730 Updated version number to 4.67
6727c29 Updated release instructions to add hyperlinks to commits
b4e8cc4 Added GetInfo 299 and 300 (code page information)
a111ac3 Added Lua script function utils.reload_global_prefs
6875194 Debug 'summary' now shows the language used by plugins
aba31db Searching in triggers/timers/aliases now includes the script function
0c625cd Fixed bug where doing SpeedWalkDelay during world close would cause a crash
f37fd84 Updated lpeg from 0.9 to 0.10
4ec9cb2 Updated LPEG documentation for version 0.10
25d0a76 Updated installer to make it look more modern
a614edf Final changes before release
|