Skip to content
Snippets Groups Projects
Commit 78fe973a authored by Martyn Gigg's avatar Martyn Gigg
Browse files

Add release note regarding unicode support

parent 762a48db
No related branches found
No related tags found
No related merge requests found
......@@ -14,16 +14,16 @@ Logging
- We have changed the logging in Mantid to stop writing the high level version of the log to a file. This had been causing numerous problems including inconsistent behaviour with multiple instances of Mantid, performance problems when logging at detailed levels, and excessive network usage in some scenarios. This does not change the rest of the logging that you see in the message display in Mantidplot or the console window. A warning message will appear if configuration for the removed components of logging is found.
- Associated with this we have also simplified the python methods used to control logging.
- Associated with this we have also simplified the python methods used to control logging.
.. code-block:: python
.. code-block:: python
# The two methods
ConfigService.SetConsoleLogLevel(int)
ConfigService.SetFileLogLevel(int)
# The two methods
ConfigService.SetConsoleLogLevel(int)
ConfigService.SetFileLogLevel(int)
# Have been replaced by
ConfigService.SetLogLevel(int)
# Have been replaced by
ConfigService.SetLogLevel(int)
Nexus Geometry Loading
----------------------
......@@ -78,6 +78,7 @@ Python
New
###
- All python methods accepting basic strings now also accept unicode strings.
- New python validator type: :class:`~mantid.geometry.OrientedLattice` checks whether a workspace has an oriented lattice object attached.
- We have been making major performance improvements to geometry access in Mantid over the last few releases. We are now exposing these features via Python to give our users direct access to the same benefits as part of their scripts. The newly exposed objects are now available via workspaces and include:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment