Changeset 6364


Ignore:
Timestamp:
Feb 19, 2009, 11:07:21 AM (15 years ago)
Author:
rwilson
Message:

Changed version to 1.0. Better error messsage if no wxpython found.

Location:
misc/tools/event_selection
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • misc/tools/event_selection/EventSelection.py

    r6362 r6364  
    2424    msg = ('Sorry, you have to install WxPython.\n'
    2525           'Get it from either:\n'
    26            r'   N:\georisk\downloads\event_selection, or' '\n'
     26           r'   N:\georisk\downloads\wxpython, or' '\n'
    2727           '   [http://www.wxpython.org/download.php#binaries].')
    2828    tkinter_error.tkinter_error(msg)
     
    5353# program name and version
    5454APP_NAME = 'EventSelection'
    55 APP_VERSION = '0.8'
     55APP_VERSION = '1.0'
    5656
    5757# name of the configuration filename
     
    833833            self.panel.SetCursor(wx.StockCursor(wx.CURSOR_WAIT))
    834834
    835             fault_event_dir = os.path.join(output_base_dir, '%6.6d' % quake_ID)
     835            fault_event_dir = os.path.join(output_base_dir, str(quake_ID))
    836836            os.makedirs(fault_event_dir)
    837837            fault_event_filename = os.path.join(fault_event_dir, 'event.list')
  • misc/tools/event_selection/installer/EventSelection.nsi

    r6362 r6364  
    11!define PRODUCT_NAME "EventSelection"
    2 !define PRODUCT_VERSION "0.8"
     2!define PRODUCT_VERSION "1.0"
    33!define ICON_FILE "tsunami.ico"
    44
Note: See TracChangeset for help on using the changeset viewer.