Changes in / [4cf8db9:88daca8] in sasview
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
docs/sphinx-docs/source/conf.py
r476d4e3 r33d2a3a 51 51 # General information about the project. 52 52 project = u'SasView' 53 copyright = u'201 3, The SasView Project'53 copyright = u'2015, The SasView Project' 54 54 55 55 # The version info for the project you're documenting, acts as replacement for … … 58 58 # 59 59 # The short X.Y version. 60 version = '3. 0.0'60 version = '3.1.0' 61 61 # The full version, including alpha/beta/rc tags. 62 release = '3. 0.0'62 release = '3.1.0' 63 63 64 64 # The language for content autogenerated by Sphinx. Refer to documentation -
sasview/README.txt
r74d5dbf rfe34f56 219 219 2- Downloading and Installing 220 220 221 221 *** Note 1: Much more information is available at www.sasview.org under links. 222 222 Look in the 'For Developers' section and particularly the wiki at 223 223 www.sasview.org/trac/wiki. … … 232 232 233 233 2.2- Installing from source: 234 - Get the code from sourceforgeat https://github.com/SasView/sasview.git234 - Get the code from GitHub at https://github.com/SasView/sasview.git 235 235 for this release version use: https://github.com/SasView/sasview/releases 236 236 - run 'python setup.py install' under the 'sasview-x.x.x' folder … … 263 263 - vcredist_x86.exe (version 9.0.21022.8 -microsoft visual C 2008 264 264 re-distributable) 265 - Innosetup (WIN - isetup 5.4.2-unicode) - used to create distributa lbe265 - Innosetup (WIN - isetup 5.4.2-unicode) - used to create distributable 266 266 267 267 - MAC Specifci Packages: … … 274 274 275 275 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. 276 283 - Tutorial has not yet been updated and is somewhat out of date 277 284 - Very old computers may not be able to run … … 317 324 318 325 - 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/ 324 329 325 330 -
src/sas/guiframe/documentation_window.py
rc8d22ec rf349f85 19 19 import webbrowser 20 20 import urllib 21 import sys 21 22 22 23 SPHINX_DOC_ENV = "SASVIEW_DOC_PATH" … … 27 28 WX_SUPPORTS_HTML2 = False 28 29 30 MAC = True 31 if sys.platform.count("win32") > 0: 32 MAC = False 29 33 30 34 from gui_manager import get_app_dir … … 73 77 -- has it been built?", file_path) 74 78 elif WX_SUPPORTS_HTML2: 79 if MAC: 80 logging.error('url = ' + url) 75 81 # Complete HTML/CSS support! 76 82 self.view = html.WebView.New(self) -
src/sas/perspectives/fitting/fitpage.py
rf3dc56c r2b58fa5 3115 3115 mag_on_button.Show(True) 3116 3116 mag_help_button.Show(False) 3117 mag_angle_help_button.Show(False) 3117 3118 if mag_on_button.IsShown(): 3118 3119 if self.magnetic_on:
Note: See TracChangeset
for help on using the changeset viewer.