diff --git a/src/FileIO/GpxRideFile.cpp b/src/FileIO/GpxRideFile.cpp index 2f0560d5e..82ecd7891 100644 --- a/src/FileIO/GpxRideFile.cpp +++ b/src/FileIO/GpxRideFile.cpp @@ -71,7 +71,7 @@ GpxFileReader::toByteArray(Context *, const RideFile *ride, bool withAlt, bool w "http://www.garmin.com/xmlschemas/PowerExtensionv1.xsd" ); gpx.setAttribute("version", "1.1"); - gpx.setAttribute("creator", QString("GoldenCheetah (build %1)").arg(VERSION_LATEST)); + gpx.setAttribute("creator", QString("GoldenCheetah (build %1) with Barometer").arg(VERSION_LATEST)); doc.appendChild(gpx); diff --git a/src/FileIO/TcxRideFile.cpp b/src/FileIO/TcxRideFile.cpp index c306a35af..912587d9d 100644 --- a/src/FileIO/TcxRideFile.cpp +++ b/src/FileIO/TcxRideFile.cpp @@ -113,7 +113,7 @@ TcxFileReader::toByteArray(Context *context, const RideFile *ride, bool withAlt, if (ride->deviceType().toLower().contains("zwift") ) { text = doc.createTextNode("Zwift"); } else { - text = doc.createTextNode("Garmin TCX"); + text = doc.createTextNode("Garmin TCX with Barometer"); } creatorName.appendChild(text); creator.appendChild(creatorName);