Skip to content

Releases: adriangibbons/php-fit-file-analysis

phpFITFileAnalysis

17 Oct 05:03
Compare
Choose a tag to compare

Two main changes in this release:

  • Increased PHPUnit test coverage
  • Added data_every_second option

phpFITFileAnalysis

07 Oct 12:23
Compare
Choose a tag to compare

Changed-up to using Unix time by default instead of Garmin FIT timestamps.

See #33 for information.

An option can be passed to use Garmin FIT timestamps:

$options = [
    // false by default!
    'garmin_timestamps' => true
];
$pFFA = new adriangibbons\phpFITFileAnalysis('my_fit_file.fit', $options);

phpFITFileAnalysis

27 Sep 13:53
Compare
Choose a tag to compare
  • Added getJSON() function
  • Added travis-ci to project
  • Added php-coveralls to project
  • Added badges/shields to README.md
  • Fixes to quadrantAnalysis()
  • Enhanced Quadrant Analysis demo

Few other fixes and minor changes.

phpFITFileAnalysis

06 Sep 11:03
Compare
Choose a tag to compare

Changes in this release:
2d26fe6 - use $data in sma() - I put it in there for a reason, I think...
d681503 - added quadrantAnalysis() - thanks @gfrogley !
ea2301b - PSR-2 code compliance
bcb5615 - No-WWW needed for the demo pages on my web address
ef9be64 - moved quadrant-analysis image to top of README.md

phpFITFileAnalysis

31 Aug 13:00
Compare
Choose a tag to compare

352838c - removed Type column from showDebug() tables
8f29f4e - corrected device_settings field defns
b65562c - added isPaused()
ad3319c - added defns found in Garmin FR225
f3379fc - check all messages for invalid values

phpFITFileAnalysis

30 Aug 05:06
Compare
Choose a tag to compare

1986043 - simplified namespace
1f07eaa - added PSR-4 autoload
e36bc7d - setUnits() generic to session, lap, record

phpFITFileAnalysis

25 Aug 12:18
Compare
Choose a tag to compare

6fd0812 - added defn_mesgs and enum_data seen in Garmin 1000
6c36b91 - updated event enumerated data
c5bd038 - resolved potential undefined variable errors

And an update of the README.

phpFITFileAnalysis

22 Aug 10:57
Compare
Choose a tag to compare

Had to rename package as should not have capitals and packagist.org rejected it :'(

phpFITFileAnalysis

22 Aug 10:28
Compare
Choose a tag to compare

So I've removed the hyphens from the project name and made a number of non-backward compatible changes, which means that the project has been bumped to v3.0.0

Highlights

  • More compliant with the PSR-2 coding style.
  • Added PHP_CodeSniffer to the project to help with PSR-2 style.
  • Created adriangibbons/phpFITFileAnalysis namespace for the project.
  • Added more comprehensive PHPUnit test suite.
  • Couple of bug fixes.
  • Renaming of some files.
  • Updated the README.

php-FIT-File-Analysis

16 Aug 13:20
Compare
Choose a tag to compare

More work on the PHPUnit tests.