Changes in / [5bba43d:3d5e629] in sasview
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
LICENSE.TXT
r94cd1d6 rb01252e 1 Copyright (c) 2009-201 9, SasView Developers1 Copyright (c) 2009-2018, SasView Developers 2 2 All rights reserved. 3 3 -
docs/sphinx-docs/source/conf.py
rdb8805f rb229a3b 25 25 print("-- path --") 26 26 print("\n".join(sys.path)) 27 28 #need to import src.sas.sasview init to access version number and dates29 #use abspath as above to locate then import30 sasview_path = os.path.abspath('../../../src/sas')31 sys.path.append(sasview_path)32 import sas.sasview33 27 34 28 # -- General configuration ----------------------------------------------------- … … 77 71 78 72 # General information about the project. 79 copyright_date = sas.sasview.__release_date__80 73 project = u'SasView' 81 copyright = u' %s, The SasView Project' % copyright_date74 copyright = u'2018, The SasView Project' 82 75 83 76 # The version info for the project you're documenting, acts as replacement for … … 86 79 # 87 80 # The short X.Y version. 88 version = ".".join(sas.sasview.__version__.split(".", 2)[0:2])89 # The full version, including a x/bx tags Note strict version is enforced.90 release = sas.sasview.__version__81 version = '4.2' 82 # The full version, including alpha/beta/rc tags. 83 release = '4.2.0' 91 84 92 85 # The language for content autogenerated by Sphinx. Refer to documentation -
docs/sphinx-docs/source/user/RELEASE.rst
r8514f89 r67ed543 9 9 Features 10 10 ======== 11 12 New in Version 4.2.113 --------------------14 The major changes for this point release were to fix several problems with using15 the built in editor to create new models and to bring the NXcanSAS reader into16 compliance with the final published specification. The orignal reader was17 based on a draft version of the specification. As an early adopter,18 interpretation and implementation of the spec was iterated with all producers19 of NXcanSAS reduced data known to the SasView team in order to ensure20 compatibility and verify the implementation. A few other enhancements and bug21 fixed were also introduced such as cleaning up the resolution section of the22 fitting page GUI, increasing the max size range allowed in the corfunc23 analysis, and adding the incomplete gamma function to the python library.24 25 Resolved Issues26 ^^^^^^^^^^^^^^^27 * Fixes # 976: CanSas HDF reader will not read all valid CanSas HDF (NXcanSAS) files28 * Fixes # 1074: Add incomplete gamma function to sasmodels29 * Fixes # 1111: Convert all input Q units to 1/A30 * Fixes # 1129: NXcanSAS writer not writing all meta data31 * Fixes # 1142: Plugin framework is broken32 * Fixes # 1183: Test from creating new model reset all parameters to default in all open FitPages33 * Fixes # 1188: Colons removed from magnetic parameter names to address Python variable issue - done in 4.2. but documented in 4.2.134 * Fixes # 1205: 4.2 set weighting choice seems to be ignored.35 * Fixes # 1206: Incorrect (and confusing) presentation of dQ from data in instrumental smearing section36 * Fixes # 1212: Bug in Iqxqy plotting non rectangular / square matrices?37 * Fixes # 1221: ABS reader does not read in USANS data properly GitHub38 * Fixes # 1222: smearing options incorrect on show2D and show1D in fitpage14: Loading a saved project is really really slow39 * Fixes # 1223: Expand permitted range of transformed data in Corfunc implementation40 41 11 42 12 New in Version 4.2.0 … … 156 126 * Fixes # 784: Add 3D integral to Correlation Function analysis 157 127 * Fixes # 786: core_shell_parallelepiped 1-D model is incorrect 158 * Fixes # 818: âreport buttonâ followed by âsaveâmakes an empty pdf file???128 * Fixes # 818: report button followed by save makes an empty pdf file??? 159 129 * Fixes # 830: Check compliance of loader against NXcanSAS-1.0 release 160 130 * Fixes # 838: Fix model download from marketplace -
installers/license.txt
r55fa530 rc6a4d143 20 20 SasView is free to download and use, including for commercial purposes. 21 21 22 © 2009-201 9UMD, UTK, NIST, ORNL, ISIS, ESS, ANSTO, ILL, TUD, DLS, BAM22 © 2009-2018 UMD, UTK, NIST, ORNL, ISIS, ESS, ANSTO, ILL, TUD, DLS, BAM 23 23 24 24 -
src/sas/sasview/__init__.py
r5e16b30 rb229a3b 1 from distutils.version import StrictVersion 2 __version__ = "4.2.1" 3 StrictVersion(__version__) 4 __DOI__ = "Zenodo, 10.5281/zenodo.2561236" 5 __release_date__ = "2019" 1 __version__ = "4.2.0" 6 2 __build__ = "GIT_COMMIT" -
src/sas/sasview/local_config.py
r839f70f7 r1b4cb41 16 16 __appname__ = "SasView" 17 17 __version__ = sas.sasview.__version__ 18 __DOI__ = sas.sasview.__DOI__19 __release_date__ = sas.sasview.__release_date__20 18 __build__ = sas.sasview.__build__ 21 19 __download_page__ = 'https://github.com/SasView/sasview/releases' … … 38 36 _do_tutorial = True 39 37 _acknowledgement_preamble =\ 40 '''To ensure the long term support and development of this software please 41 remember to:'''38 '''To ensure the long term support and development of this software please''' +\ 39 ''' remember to:''' 42 40 _acknowledgement_preamble_bullet1 =\ 43 41 '''Acknowledge its use in your publications as :''' … … 49 47 '''Send us your reference for our records: developers@sasview.org''' 50 48 _acknowledgement_publications = \ 51 ("This work benefited from the use of the SasView application, originally" 52 "developed under NSF Award DMR-0520547. SasView also contains code developed" 53 "with funding from the EU Horizon 2020 programme under the SINE2020 project" 54 "Grant No 654000.") 49 '''This work benefited from the use of the SasView application, originally developed under NSF Award DMR-0520547. SasView also contains code developed with funding from the EU Horizon 2020 programme under the SINE2020 project Grant No 654000.''' 55 50 _acknowledgement_citation = \ 56 '''M. Doucet et al. SasView Version %s, %s''' % (__version__, __DOI__)51 '''M. Doucet et al. SasView Version 4.2, Zenodo, 10.5281/zenodo.1412041''' 57 52 _acknowledgement = \ 58 ("This work was originally developed as part of the DANSE project funded by" 59 "the US NSF under Award DMR-0520547,\n but is currently maintained by a" 60 "collaboration between UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO, TU Delft," 61 "DLS, BAM and the scattering community.\n\n SasView also contains code" 62 "developed with funding from the EU Horizon 2020 programme under the SINE2020" 63 "project (Grant No 654000).\nA list of individual contributors can be found" 64 "at: http://www.sasview.org/contact.html") 53 '''This work was originally developed as part of the DANSE project funded by the US NSF under Award DMR-0520547,\n but is currently maintained by a collaboration between UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO, TU Delft, DLS, BAM and the scattering community.\n\n SasView also contains code developed with funding from the EU Horizon 2020 programme under the SINE2020 project (Grant No 654000).\nA list of individual contributors can be found at: http://www.sasview.org/contact.html 54 ''' 65 55 66 56 _homepage = "http://www.sasview.org" … … 105 95 _corner_image = os.path.join(icon_path, "angles_flat.png") 106 96 _welcome_image = os.path.join(icon_path, "SVwelcome.png") 107 _copyright = ("(c) 2009 - %s, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO," 108 "TU Delft, DLS and BAM") % __release_date__ 97 _copyright = "(c) 2009 - 2018, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL, ANSTO, TU Delft, DLS and BAM" 109 98 marketplace_url = "http://marketplace.sasview.org/" 110 99
Note: See TracChangeset
for help on using the changeset viewer.