Changes in / [4cf8db9:88daca8] in sasview


Ignore:
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • docs/sphinx-docs/source/conf.py

    r476d4e3 r33d2a3a  
    5151# General information about the project. 
    5252project = u'SasView' 
    53 copyright = u'2013, The SasView Project' 
     53copyright = u'2015, The SasView Project' 
    5454 
    5555# The version info for the project you're documenting, acts as replacement for 
     
    5858# 
    5959# The short X.Y version. 
    60 version = '3.0.0' 
     60version = '3.1.0' 
    6161# The full version, including alpha/beta/rc tags. 
    62 release = '3.0.0' 
     62release = '3.1.0' 
    6363 
    6464# The language for content autogenerated by Sphinx. Refer to documentation 
  • sasview/README.txt

    r74d5dbf rfe34f56  
    2192192- Downloading and Installing 
    220220         
    221         *** Note 1:  Much more information is available at www.sasview.org under links. 
     221    *** Note 1:  Much more information is available at www.sasview.org under links. 
    222222                     Look in the 'For Developers' section and particularly the wiki at 
    223223                     www.sasview.org/trac/wiki. 
     
    232232 
    233233    2.2- Installing from source: 
    234         - Get the code from sourceforge at https://github.com/SasView/sasview.git 
     234        - Get the code from GitHub at https://github.com/SasView/sasview.git 
    235235          for this release version use: https://github.com/SasView/sasview/releases 
    236236            - run 'python setup.py install' under the 'sasview-x.x.x' folder 
     
    263263          - vcredist_x86.exe (version 9.0.21022.8  -microsoft visual C 2008  
    264264              re-distributable) 
    265           - Innosetup (WIN - isetup 5.4.2-unicode) - used to create distributalbe 
     265          - Innosetup (WIN - isetup 5.4.2-unicode) - used to create distributable 
    266266             
    267267        - MAC Specifci Packages: 
     
    274274 
    275275    3.1- All systems: 
     276        - Documentation Window may take a few seconds to load the first time 
     277          it i called.  Also, an internet connection is required before 
     278          equations will render properly. Until then they will show in their 
     279          original TeX format. 
     280        - The copy and paste functions (^C, ^V) in the batch mode results grid 
     281          require two clicks: one to select the cell and a second to select the 
     282          contents of the cell.  
    276283        - Tutorial has not yet been updated and is somewhat out of date 
    277284        - Very old computers may not be able to run 
     
    317324 
    318325    - Latest release Version 
    319         - http://sourceforge.net/projects/sasview/files/ 
    320     - Latest developer Windows or Ubuntu build 
    321         - http://build.sasview.org/ 
    322     - Latest developer Mac OS build 
    323         - http://download.mantidproject.org/jenkins/view/All/job/sasview_snowleopard_32bit/ 
     326        - https://github.com/SasView/sasview/releases 
     327    - Latest developer builds 
     328        - https://jenkins.esss.dk/sasview/view/Master-Builds/ 
    324329 
    325330     
  • src/sas/guiframe/documentation_window.py

    rc8d22ec rf349f85  
    1919import webbrowser 
    2020import urllib 
     21import sys 
    2122 
    2223SPHINX_DOC_ENV = "SASVIEW_DOC_PATH" 
     
    2728    WX_SUPPORTS_HTML2 = False 
    2829 
     30MAC = True 
     31if sys.platform.count("win32") > 0: 
     32    MAC = False 
    2933 
    3034from gui_manager import get_app_dir 
     
    7377            -- has it been built?", file_path) 
    7478        elif WX_SUPPORTS_HTML2: 
     79            if MAC: 
     80                logging.error('url = ' + url) 
    7581            # Complete HTML/CSS support! 
    7682            self.view = html.WebView.New(self) 
  • src/sas/perspectives/fitting/fitpage.py

    rf3dc56c r2b58fa5  
    31153115                    mag_on_button.Show(True) 
    31163116                mag_help_button.Show(False) 
     3117                mag_angle_help_button.Show(False) 
    31173118                if mag_on_button.IsShown(): 
    31183119                    if self.magnetic_on: 
Note: See TracChangeset for help on using the changeset viewer.