Skip to content

Commit 7b7ed9d

Browse files
author
stephanie
committed
update version number
1 parent cabe1ad commit 7b7ed9d

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

odmtools/gui/frmFlagValues.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def __init__(self, parent, series_service, choices, isNew=False):
100100

101101
#len choices added in cases where ther are no flags in the database- still needs to be tested.
102102
#desired functionality is to automatically select creation of new flag
103-
if isNew or len(choices ==0):
103+
if isNew or len(choices) ==0:
104104
self.selectedValue = NEW
105105
wx.CallAfter(self.showNewFields)
106106
else:

odmtools/gui/plotTimeSeries.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,8 @@ def drawEditPlot(self, oneSeries):
279279

280280
convertedDates = matplotlib.dates.date2num(dates)
281281

282-
scale = 1.5
283-
f = zoom_factory(curraxis , base_scale = scale)
282+
# scale = 1.5
283+
# f = zoom_factory(curraxis , base_scale = scale)
284284
self.xys = zip(convertedDates, oneSeries.dataTable['DataValue'])
285285
self.toolbar.editSeries(self.xys, self.editCurve)
286286
self.pointPick = self.canvas.mpl_connect('pick_event', self._onPick)

setup/Mac/ODMTools.packproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -566,9 +566,9 @@
566566
<key>IFPkgDescriptionDescription</key>
567567
<string></string>
568568
<key>IFPkgDescriptionTitle</key>
569-
<string>ODMTools_v1.2.3</string>
569+
<string>ODMTools_v1.2.4</string>
570570
<key>IFPkgDescriptionVersion</key>
571-
<string>1.2.3 Beta</string>
571+
<string>1.2.4 Beta</string>
572572
</dict>
573573
</dict>
574574
<key>Display Information</key>
@@ -619,7 +619,7 @@
619619
<key>IFPkgFlagPackageSelection</key>
620620
<integer>0</integer>
621621
<key>Name</key>
622-
<string>ODMTools_v1.2.3-beta_Mac_installer</string>
622+
<string>ODMTools_v1.2.4-beta_Mac_installer</string>
623623
<key>Status</key>
624624
<integer>1</integer>
625625
<key>Type</key>

setup/Windows/odmtools_console.iss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "ODMTools"
5-
#define MyAppVersion "1.2.3_Beta"
5+
#define MyAppVersion "1.2.4_Beta"
6+
#define MyAppExeLongName "ODMTools_1.2.4_Beta_win32_x86_64_console.exe"
67
#define MyAppPublisher "ODM2"
78
#define MyAppURL "https://github.com/ODM2/ODMToolsPython"
8-
#define MyAppExeName "ODMTools_1.2.3_Beta_win32_x86_64_console.exe"
9+
#define MyAppExeName "ODMTools.exe"
910
#define MyAppDir "D:\DEV\ODMToolsPython"
1011

1112
[Setup]

setup/Windows/odmtools_no_console.iss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "ODMTools"
5-
#define MyAppVersion "1.2.3_Beta"
5+
#define MyAppExeLongName "ODMTools_1.2.4_Beta_win32_x86_64.exe"
6+
#define MyAppVersion "1.2.4_Beta"
67
#define MyAppPublisher "ODM2"
78
#define MyAppURL "https://github.com/ODM2/ODMToolsPython"
8-
#define MyAppExeName "ODMTools_1.2.3_Beta_win32_x86_64.exe"
9+
#define MyAppExeName "ODMTools.exe"
910
#define MyAppDir "D:\DEV\ODMToolsPython"
1011

1112
[Setup]

setup/Windows/odmtools_setup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "ODMTools"
5-
#define MyAppVersion "1.2.3_Beta"
5+
#define MyAppVersion "1.2.4_Beta"
66
#define MyAppPublisher "ODM2"
77
#define MyAppURL "https://github.com/ODM2/ODMToolsPython"
88
#define MyAppExeName "ODMTools.exe"

0 commit comments

Comments
 (0)