Private
Public Access
1
0

Merge branch 'release/v4.04'

This commit is contained in:
Sander Roosendaal
2017-09-25 21:53:28 +02:00
3 changed files with 10 additions and 1 deletions
+5 -1
View File
@@ -22,7 +22,7 @@ from rowingdata import (
TCXParser,RowProParser,ErgDataParser,TCXParserNoHR,
CoxMateParser,
BoatCoachParser,RowPerfectParser,BoatCoachAdvancedParser,
MysteryParser,
MysteryParser,BoatCoachOTWParser,
painsledDesktopParser,speedcoachParser,ErgStickParser,
SpeedCoach2Parser,FITParser,fitsummarydata,
make_cumvalues,
@@ -742,6 +742,10 @@ def handle_nonpainsled(f2,fileformat,summary=''):
if (fileformat == 'boatcoach'):
row = BoatCoachParser(f2)
# handle BoatCoach OTW
if (fileformat == 'boatcoachotw'):
row = BoatCoachOTWParser(f2)
# handle painsled desktop
if (fileformat == 'painsleddesktop'):
row = painsledDesktopParser(f2)
+4
View File
@@ -325,6 +325,10 @@ def handle_nonpainsled(f2,fileformat,summary=''):
if (fileformat == 'bcmike'):
row = BoatCoachAdvancedParser(f2)
# handle BoatCoach OTW
if (fileformat == 'boatcoachotw'):
row = BoatCoachOTWParser(f2)
# handle BoatCoach
if (fileformat == 'boatcoach'):
row = BoatCoachParser(f2)
+1
View File
@@ -24,6 +24,7 @@ workoutsources = (
('rowperfect3','rowperfect3'),
('ergdata','ergdata'),
('boatcoach','boatcoach'),
('boatcoachotw','boatcoachotw'),
('bcmike','boatcoach (develop)'),
('painsleddesktop','painsleddesktop'),
('speedcoach','speedcoach'),