Register forum user name Search FAQ

Gammon Forum

Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the password reset link.

Due to spam on this forum, all posts now need moderator approval.

 Entire forum ➜ MUSHclient ➜ Announcements ➜ Version 4.76 released - with help database included

Version 4.76 released - with help database included

Postings by administrators only.

Refresh page


Posted by Nick Gammon   Australia  (23,162 posts)  Bio   Forum Administrator
Date Sat 16 Jul 2011 01:32 AM (UTC)

Amended on Tue 19 Jul 2011 08:43 PM (UTC) by Nick Gammon

Message

I am pleased to release version 4.76 of MUSHclient. See the release notes for more details.

Improvements

  • Added a 7th argument to the Hyperlink function (for Lua scripting only). If true, the underline is omitted. The default is false.
  • Fixed bug where NoteHr() would not draw anything.
  • Fixed bug where NoteHr line would draw through timestamps.
  • Added SQLite3 database (help.db) to MUSHclient installation directory. This is a database of all the contents of the help file (The database the help is generated from).
  • The AcceleratorTo script function now remembers which plugin called it (by plugin ID).
  • Fixed bug where if you hit Enter very quickly (eg. by holding it down) and you had "repeat on same line" checked, the repeating might fail and the command window cleared.
  • Got rid of dialog "Preload world defaults from an existing world?" when creating a new world file.
  • Fixed bug in telnet negotiation, where after receiving an IAC DONT x and sending an IAC WONT x, it did not properly handle a subsequent IAC DO x.
  • Changed movewindows.lua module to allow you to specify initial coordinates for the window.
  • If the mouse is over a hotspot after it was created then a mouse-move event is generated.
  • Upgraded SQLite3 from 3.7.6.3 to 3.7.7.1.
  • Upgraded PNG library from 1.5.2 to 1.5.4.
  • Added "filter prepare" function to utils.filterpicker.
  • When editing triggers, aliases or timers, pressing Alt+Enter now opens the "Send" box editor.
  • Added new plugin MUSHclient_Help. This is an example of reading the help database (as described above) and displaying the help content in the output window.
  • When opening a world file which has plugins, a progress dialog box is displayed while the plugins are loading, to show the rate at which they are loading.

Warning!

This version has a bug in the way it handles adding hotspots in miniwindows. You are advised to use version 4.77 onwards instead.


Download

You can view the release notes for version 4.76

You can download MUSHclient 4.76 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 mushclient476.exe you should get this result:

f90a0c4143cce6d1337b6ec281c37b39

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.76

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.75..v4.76 --stat

 .gitignore                                 |    6 +
 MUSHclient.dsp                             |   10 +-
 MUSHclient.rc                              |    8 +-
 ProcessPreviousLine.cpp                    |    2 +-
 build_files_list.lua                       |    2 +
 dialogs/CompleteWordDlg.cpp                |   32 ++-
 dialogs/CompleteWordDlg.h                  |    1 +
 dialogs/FunctionListDlg.cpp                |   23 ++
 dialogs/FunctionListDlg.h                  |    1 +
 dialogs/ProgDlg.cpp                        |    4 +
 dialogs/ProgDlg.h                          |    2 +
 dialogs/world_prefs/TimerDlg.cpp           |   13 +
 dialogs/world_prefs/TimerDlg.h             |    2 +
 dialogs/world_prefs/aliasdlg.cpp           |   13 +
 dialogs/world_prefs/aliasdlg.h             |    2 +
 dialogs/world_prefs/triggdlg.cpp           |   13 +
 dialogs/world_prefs/triggdlg.h             |    2 +
 doc.h                                      |   13 +-
 doc_construct.cpp                          |   74 ----
 generate_documentation.lua                 |  141 ++++++++
 how_to_release.txt                         |   57 ++--
 install/mushclient.nsi                     |    5 +
 install/readme.txt                         |    4 +-
 localize.bat                               |   14 +
 lua/movewindow.lua                         |    6 +-
 mushview.cpp                               |    2 +-
 plugins/MUSHclient_Help.xml                |  527 ++++++++++++++++++++++++++++
 png/.gitignore                             |    2 +-
 png/pnglibconf.h                           |  183 ++++++++++
 png/readme.txt                             |    9 +-
 scripting/lua_methods.cpp                  |   17 +-
 scripting/lua_utils.cpp                    |   20 +
 scripting/methods/methods_accelerators.cpp |    6 +
 scripting/methods/methods_miniwindows.cpp  |   29 ++-
 scripting/methods/methods_noting.cpp       |   37 ++-
 sendvw.cpp                                 |  106 +++++-
 sqlite3/readme.txt                         |    6 +-
 telnet_phases.cpp                          |    3 +-
 xml/xml_load_world.cpp                     |   40 +++
 xml/xml_serialize.cpp                      |    2 +-
 40 files changed, 1277 insertions(+), 162 deletions(-)

   

Commit log (date order)


$ git --no-pager log --pretty=oneline --reverse --abbrev-commit v4.75..v4.76

74e4966 Updated version number to 4.76
3ab1b48 Added optional NoUnderline flag to the Hyperlink function
8f0153c Fixed bug where NoteHr() would not draw anything
bc9b14f Fixed bug where NoteHr line would draw through timestamps
d2d1242 Database convertion from MySQL to SQLite3 format
af33928 Added help file SQL generation to install process
8f47dca Added help file database to installer
24d7440 Amended installer-generation instructions
9657606 AcceleratorTo now remembers which plugin called it
aaab995 Fixed couple of bugs in AcceleratorTo code
81d3ca1 Added ability to shift+tab choose from recent command history
c295f84 Fixed bug where auto-repeating 'repeat on same line' would wipe out command
579afc0 Got rid of 'preload world defaults' dialog on making a new world
020463a Fixed bug in telnet negotiation
504a387 Changed movewindow.lua to allow you to specify initial position
093802f Detect mouseover if mouse is over newly created hotspot
fbe9ec3 Disabled ability to shift+tab to choose recent command history
78c32f3 Added how_to_make_standalone_installer.txt to project
3387eef Upgraded SQLite3 library to version 3.7.7.1
f9d3eb4 Upgraded PNG library to 1.5.4
863e926 Removed FTS3 stuff from help.db
e901b4e Added filter-prepare function to utils.filterpicker
9437ece Alt+Enter now edits the Send box in the trigger/alias/timer editing dialog boxes
893db2c Added new file to .gitignore
853b094 Initial commit
5229d50 Added MUSHclient_Help.xml plugin to installer
727cdeb Added test to see if database present
a387512 Improved snippet displays by removing tags from the lookup tables
727d41e Added progress dialog to show plugins loading
14c1d1c Improved formatting of loading progress dialog
e8933a1 Added help.db to .gitignore
2acbd1e Fixed some naming problems
4de1b56 Final changes before release


- Nick Gammon

www.gammon.com.au, www.mushclient.com
Top

The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).

To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.


8,461 views.

Postings by administrators only.

Refresh page

Go to topic:           Search the forum


[Go to top] top

Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.