Changeset b9b9930 in sasview for sansview


Ignore:
Timestamp:
Jan 4, 2011 3:13:48 PM (14 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
96656e3
Parents:
64bda1e
Message:

version # for trunk rel.

Location:
sansview
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sansview/local_config.py

    r0d8c8d7 rb9b9930  
    66# Version of the application 
    77__appname__ = "SansView" 
    8 __version__ = 'Dev12132010' 
     8__version__ = 'Dev01042011' 
    99__download_page__ = 'http://danse.chem.utk.edu' 
    1010__update_URL__ = 'http://danse.chem.utk.edu/sansview_version.php' 
  • sansview/sansview.py

    r5062bbf rb9b9930  
    1111 
    1212import wx 
     13import os 
     14import sys 
     15# The below will make sure that sansview application uses the matplotlib font  
     16# bundled with sansview.  
     17if hasattr(sys, 'frozen'): 
     18    mplconfigdir = os.path.join(sys.prefix, '.matplotlib') 
     19    if not os.path.exists(mplconfigdir): 
     20        os.mkdir(mplconfigdir) 
     21    os.environ['MPLCONFIGDIR'] = mplconfigdir 
     22 
    1323from sans.guiframe import gui_manager 
    1424from welcome_panel import WelcomePanel 
Note: See TracChangeset for help on using the changeset viewer.