Changeset b27c681 in sasview
- Timestamp:
- Oct 7, 2016 5:39:46 PM (8 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 6083d6e
- Parents:
- d813cad8
- Location:
- src/sas/qtgui
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/LocalConfig.py
re207c3f rb27c681 85 85 _corner_image = os.path.join(icon_path, "angles_flat.png") 86 86 _welcome_image = os.path.join(icon_path, "SVwelcome.png") 87 _copyright = "(c) 2009 - 2013, UTK, UMD, NIST, ORNL, ISIS, ESS and ILL"87 _copyright = "(c) 2009 - 2013, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL and ANSTO" 88 88 89 89 -
src/sas/qtgui/UI/WelcomePanelUI.ui
rf721030 rb27c681 7 7 <x>0</x> 8 8 <y>0</y> 9 <width> 658</width>10 <height> 711</height>9 <width>746</width> 10 <height>947</height> 11 11 </rect> 12 12 </property> … … 22 22 <property name="pixmap"> 23 23 <pixmap resource="main_resources.qrc">:/res/SVwelcome.png</pixmap> 24 </property> 25 <property name="alignment"> 26 <set>Qt::AlignCenter</set> 24 27 </property> 25 28 </widget> … … 41 44 </property> 42 45 <property name="text"> 43 <string>This work originally developed as part of the DANSE project funded by the NSF 44 under grant DMR-0520547, and currently maintained by NIST, UMD, ORNL, ISIS, ESS 45 and ILL.</string> 46 <string>This work originally developed as part of the DANSE project funded by the NSF under grant DMR-0520547, and currently maintained by NIST, UMD, ORNL, ISIS, ESS, ILL and ANSTO.</string> 47 </property> 48 <property name="wordWrap"> 49 <bool>true</bool> 46 50 </property> 47 51 </widget> … … 56 60 </property> 57 61 <property name="text"> 58 <string><html><head/><body><p>SasView 4.0.0-Alpha<br/>Build: 1<br/>(c) 2009 - 201 3, UTK, UMD, NIST, ORNL, ISIS, ESS and ILL</p><p><br/></p></body></html></string>62 <string><html><head/><body><p>SasView 4.0.0-Alpha<br/>Build: 1<br/>(c) 2009 - 2017, UTK, UMD, NIST, ORNL, ISIS, ESS, ILL and ANSTO</p><p><br/></p></body></html></string> 59 63 </property> 60 64 </widget> -
src/sas/qtgui/WelcomePanel.py
rd813cad8 rb27c681 21 21 build = sas.sasview.__build__ 22 22 23 ver = "\nSasView %s\nBuild: %s" % (version, build) 24 ver += LocalConfig._copyright 23 ver = "\nSasView %s\nBuild: %s\n%s" % (version, build, LocalConfig._copyright) 25 24 26 25 self.lblVersion.setText(ver)
Note: See TracChangeset
for help on using the changeset viewer.