Changes in / [5bba43d:3d5e629] in sasview


Ignore:
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • LICENSE.TXT

    r94cd1d6 rb01252e  
    1 Copyright (c) 2009-2019, SasView Developers 
     1Copyright (c) 2009-2018, SasView Developers 
    22All rights reserved. 
    33 
  • docs/sphinx-docs/source/conf.py

    rdb8805f rb229a3b  
    2525print("-- path --") 
    2626print("\n".join(sys.path)) 
    27  
    28 #need to import src.sas.sasview init to access version number and dates 
    29 #use abspath as above to locate then import 
    30 sasview_path = os.path.abspath('../../../src/sas') 
    31 sys.path.append(sasview_path) 
    32 import sas.sasview 
    3327 
    3428# -- General configuration ----------------------------------------------------- 
     
    7771 
    7872# General information about the project. 
    79 copyright_date = sas.sasview.__release_date__ 
    8073project = u'SasView' 
    81 copyright = u'%s, The SasView Project' % copyright_date 
     74copyright = u'2018, The SasView Project' 
    8275 
    8376# The version info for the project you're documenting, acts as replacement for 
     
    8679# 
    8780# The short X.Y version. 
    88 version = ".".join(sas.sasview.__version__.split(".", 2)[0:2])  
    89 # The full version, including ax/bx tags Note strict version is enforced. 
    90 release = sas.sasview.__version__ 
     81version = '4.2' 
     82# The full version, including alpha/beta/rc tags. 
     83release = '4.2.0' 
    9184 
    9285# The language for content autogenerated by Sphinx. Refer to documentation 
  • docs/sphinx-docs/source/user/RELEASE.rst

    r8514f89 r67ed543  
    99Features 
    1010======== 
    11  
    12 New in Version 4.2.1 
    13 -------------------- 
    14 The major changes for this point release were to fix several problems with using 
    15 the built in editor to create new models and to bring the NXcanSAS reader into 
    16 compliance with the final published specification.  The orignal reader was 
    17 based on a draft version of the specification.  As an early adopter, 
    18 interpretation and implementation of the spec was iterated with all producers 
    19 of NXcanSAS reduced data known to the SasView team in order to ensure 
    20 compatibility and verify the implementation.  A few other enhancements and bug 
    21 fixed were also introduced such as cleaning up the resolution section of the 
    22 fitting page GUI, increasing the max size range allowed in the corfunc 
    23 analysis, and adding the incomplete gamma function to the python library.  
    24  
    25 Resolved Issues 
    26 ^^^^^^^^^^^^^^^ 
    27 * Fixes #  976: CanSas HDF reader will not read all valid CanSas HDF (NXcanSAS) files 
    28 * Fixes # 1074: Add incomplete gamma function to sasmodels 
    29 * Fixes # 1111: Convert all input Q units to 1/A 
    30 * Fixes # 1129: NXcanSAS writer not writing all meta data 
    31 * Fixes # 1142: Plugin framework is broken 
    32 * Fixes # 1183: Test from creating new model reset all parameters to default in all open FitPages 
    33 * Fixes # 1188:   Colons removed from magnetic parameter names to address Python variable issue - done in 4.2. but documented in 4.2.1 
    34 * 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 section 
    36 * Fixes # 1212: Bug in Iqxqy plotting non rectangular / square matrices? 
    37 * Fixes # 1221: ABS reader does not read in USANS data properly GitHub 
    38 * Fixes # 1222: smearing options incorrect on show2D and show1D in fitpage14: Loading a saved project is really really slow 
    39 * Fixes # 1223: Expand permitted range of transformed data in Corfunc implementation 
    40  
    4111 
    4212New in Version 4.2.0 
     
    156126* Fixes # 784: Add 3D integral to Correlation Function analysis 
    157127* 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??? 
    159129* Fixes # 830: Check compliance of loader against NXcanSAS-1.0 release 
    160130* Fixes # 838: Fix model download from marketplace 
  • installers/license.txt

    r55fa530 rc6a4d143  
    2020SasView is free to download and use, including for commercial purposes. 
    2121 
    22 © 2009-2019 UMD, UTK, NIST, ORNL, ISIS, ESS, ANSTO, ILL, TUD, DLS, BAM   
     22© 2009-2018 UMD, UTK, NIST, ORNL, ISIS, ESS, ANSTO, ILL, TUD, DLS, BAM   
    2323 
    2424 
  • 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" 
    62__build__ = "GIT_COMMIT" 
  • src/sas/sasview/local_config.py

    r839f70f7 r1b4cb41  
    1616__appname__ = "SasView" 
    1717__version__ = sas.sasview.__version__ 
    18 __DOI__ = sas.sasview.__DOI__ 
    19 __release_date__ = sas.sasview.__release_date__ 
    2018__build__ = sas.sasview.__build__ 
    2119__download_page__ = 'https://github.com/SasView/sasview/releases' 
     
    3836_do_tutorial = True 
    3937_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:''' 
    4240_acknowledgement_preamble_bullet1 =\ 
    4341'''Acknowledge its use in your publications as :''' 
     
    4947'''Send us your reference for our records: developers@sasview.org''' 
    5048_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.''' 
    5550_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''' 
    5752_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''' 
    6555 
    6656_homepage = "http://www.sasview.org" 
     
    10595_corner_image = os.path.join(icon_path, "angles_flat.png") 
    10696_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" 
    10998marketplace_url = "http://marketplace.sasview.org/" 
    11099 
Note: See TracChangeset for help on using the changeset viewer.