mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 08:38:45 +00:00
* Initial implementation of Python data processors * Add RideEditor to PyFIx script editor * Enable write-access to activity data for python fixes * Add GC.deleteActivitySample method * Add GC.deleteSeries method * Check for python fix for changes before close * Build python fixes menu dynamically * Make python fixes first class data processors * Add GC.postProcess method * Check GC_WANT_PYTHON and "Enable Python" setting for python fixes * Add GC.createXDataSeries method * Clean up ScriptContext ctor mess * Support editing xdata series * PDP: Implement xdata append/remove methods
12 lines
181 B
C
12 lines
181 B
C
#ifndef FIXPYSCRIPT_H
|
|
#define FIXPYSCRIPT_H
|
|
|
|
#include <QString>
|
|
|
|
struct FixPyScript {
|
|
QString name, path, source, iniKey, oldPath;
|
|
bool changed;
|
|
};
|
|
|
|
#endif // FIXPYSCRIPT_H
|