Difference between revisions of "Relax 1.2.7"

From relax wiki
Jump to navigation Jump to search
m (More links.)
(Addition of labelled section transclusion tags.)
Line 3: Line 3:
 
= Description =
 
= Description =
  
<onlyinclude>
+
<section begin=description/>
 
This release adds full compatibility for MS Windows.  Unless you would like to use relax on Windows or are a developer (a few debugging features have been added), this release can be safely ignored.  To allow relax to properly function on MS Windows a number of changes were necessary.  This includes a number of bug fixes, the creation of the 'relax.bat' batch file, and modifications to allow the [[C|C modules]] to be compiled.  Pre-compiled Windows zip files will now be available for download from the [http://www.nmr-relax.com/download.html relax download page].
 
This release adds full compatibility for MS Windows.  Unless you would like to use relax on Windows or are a developer (a few debugging features have been added), this release can be safely ignored.  To allow relax to properly function on MS Windows a number of changes were necessary.  This includes a number of bug fixes, the creation of the 'relax.bat' batch file, and modifications to allow the [[C|C modules]] to be compiled.  Pre-compiled Windows zip files will now be available for download from the [http://www.nmr-relax.com/download.html relax download page].
</onlyinclude>
+
<section end=description/>
  
 
= Download =
 
= Download =
  
 +
<section begin=download/>
 
The new relax versions can be downloaded from http://www.nmr-relax.com/download.html. If binary distributions are not yet available for your platform and you manage to compile the binary modules, please consider contributing these to the relax project (described in section 3.6 of the relax manual, http://www.nmr-relax.com/manual/relax_distribution_archives.html).  
 
The new relax versions can be downloaded from http://www.nmr-relax.com/download.html. If binary distributions are not yet available for your platform and you manage to compile the binary modules, please consider contributing these to the relax project (described in section 3.6 of the relax manual, http://www.nmr-relax.com/manual/relax_distribution_archives.html).  
 
+
<section end=download/>
  
 
= CHANGES file =
 
= CHANGES file =
  
 +
<section begin=metadata/>
 
Version 1.2.7
 
Version 1.2.7
 
(18 September 2006, from /1.2)
 
(18 September 2006, from /1.2)
 
http://svn.gna.org/svn/relax/tags/1.2.7
 
http://svn.gna.org/svn/relax/tags/1.2.7
 +
<section end=metadata/>
  
 
== Features ==
 
== Features ==
  
 +
<section begin=features/>
 
*  The [[C|C modules]] now compile without problem on MS Windows.
 
*  The [[C|C modules]] now compile without problem on MS Windows.
 
*  The MS Windows binary distribution packages are now successfully built using the SCons build system.
 
*  The MS Windows binary distribution packages are now successfully built using the SCons build system.
 
*  The batch file 'relax.bat' has been created for running relax from the MS Windows command prompt.
 
*  The batch file 'relax.bat' has been created for running relax from the MS Windows command prompt.
 
*  The program introduction width is now 80 characters in MS Windows for proper display from the command prompt.
 
*  The program introduction width is now 80 characters in MS Windows for proper display from the command prompt.
 
+
<section end=features/>
  
 
== Changes ==
 
== Changes ==
  
 +
<section begin=changes/>
 
*  The program state is saved when a RelaxError occurs in debugging mode.
 
*  The program state is saved when a RelaxError occurs in debugging mode.
 
*  KeyboardInterupt during script execution in debugging mode will print the Python traceback.
 
*  KeyboardInterupt during script execution in debugging mode will print the Python traceback.
 
+
<section end=changes/>
  
 
== Bugfixes ==
 
== Bugfixes ==
  
 +
<section begin=bugfixes/>
 
*  The sconstruct script no longer fails in MS Windows. ([https://gna.org/bugs/?6980 bug #6980])
 
*  The sconstruct script no longer fails in MS Windows. ([https://gna.org/bugs/?6980 bug #6980])
 
*  Model selection is now functional on all operating systems. ([https://gna.org/bugs/?6873 bug #6873]).
 
*  Model selection is now functional on all operating systems. ([https://gna.org/bugs/?6873 bug #6873]).
Line 40: Line 46:
 
*  Fix for the sconstruct script failure on MS Windows due to ImportErrors caused by importing Unix specific code. ([https://gna.org/bugs/?6841 bug #6841])
 
*  Fix for the sconstruct script failure on MS Windows due to ImportErrors caused by importing Unix specific code. ([https://gna.org/bugs/?6841 bug #6841])
 
*  Fix for ImportErrors in MS Windows preventing relax from running. ([https://gna.org/bugs/?6841 bug #6841])
 
*  Fix for ImportErrors in MS Windows preventing relax from running. ([https://gna.org/bugs/?6841 bug #6841])
 
+
<section end=bugfixes/>
  
 
= See also =
 
= See also =
  
 
[[Category:Release_Notes]]
 
[[Category:Release_Notes]]

Revision as of 19:35, 10 September 2014


Description

This release adds full compatibility for MS Windows. Unless you would like to use relax on Windows or are a developer (a few debugging features have been added), this release can be safely ignored. To allow relax to properly function on MS Windows a number of changes were necessary. This includes a number of bug fixes, the creation of the 'relax.bat' batch file, and modifications to allow the C modules to be compiled. Pre-compiled Windows zip files will now be available for download from the relax download page.


Download

The new relax versions can be downloaded from http://www.nmr-relax.com/download.html. If binary distributions are not yet available for your platform and you manage to compile the binary modules, please consider contributing these to the relax project (described in section 3.6 of the relax manual, http://www.nmr-relax.com/manual/relax_distribution_archives.html).


CHANGES file

Version 1.2.7 (18 September 2006, from /1.2) http://svn.gna.org/svn/relax/tags/1.2.7


Features

  • The C modules now compile without problem on MS Windows.
  • The MS Windows binary distribution packages are now successfully built using the SCons build system.
  • The batch file 'relax.bat' has been created for running relax from the MS Windows command prompt.
  • The program introduction width is now 80 characters in MS Windows for proper display from the command prompt.


Changes

  • The program state is saved when a RelaxError occurs in debugging mode.
  • KeyboardInterupt during script execution in debugging mode will print the Python traceback.


Bugfixes

  • The sconstruct script no longer fails in MS Windows. (bug #6980)
  • Model selection is now functional on all operating systems. (bug #6873).
  • The use of the Unix only class 'Popen3' has been removed to allow relax to function on all non-Unix operating systems. (bug #6841)
  • If the XH bond vector length is 0, the vector is set to None rather than raising a RelaxError. (partial fix to bug #6503)
  • Fix for the sconstruct script failure on MS Windows due to ImportErrors caused by importing Unix specific code. (bug #6841)
  • Fix for ImportErrors in MS Windows preventing relax from running. (bug #6841)


See also