Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Google Takeout Location History #1160

Merged
merged 26 commits into from
Aug 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
ac777b9
Add support for Google Takeout Location History
postmaxin Aug 4, 2023
1708b5a
rename variable
postmaxin Aug 18, 2023
7b06270
this TODO is done
postmaxin Aug 19, 2023
2c5e0cf
now builds on focal, fix documentation
postmaxin Aug 19, 2023
7bd90ed
patch -p2 < ~/testo.log
postmaxin Aug 19, 2023
8e46e8f
use `&&` instead of `and` for old compilers
postmaxin Aug 19, 2023
340ad78
don't leak objects when we skip events at exact lat/lon 0/0
postmaxin Aug 19, 2023
4148169
use a reference (even though the compiler would have optimized that a…
postmaxin Aug 19, 2023
c9c6e12
rename to googletakeout
postmaxin Aug 19, 2023
981b287
fix docs
postmaxin Aug 20, 2023
abaa560
Address code review requests
postmaxin Aug 22, 2023
cb9e18d
Merge branch 'master' into takeout2
postmaxin Aug 23, 2023
4711b1e
apply @tsteven4 's patch. thank you!!
postmaxin Aug 24, 2023
86e3539
Merge branch 'takeout2' of github.com:postmaxin/gpsbabel into takeout2
postmaxin Aug 24, 2023
1d0fede
add license
postmaxin Aug 24, 2023
0bf906e
fix logging
postmaxin Aug 24, 2023
c110ac1
As I assigned the correct license to my code, I am skeptical that thi…
postmaxin Aug 24, 2023
cb32599
make the test more boring
postmaxin Aug 24, 2023
7cf4766
rm xml_slice
postmaxin Aug 24, 2023
a10865d
revert constructor change from @tsteven4 's patch
postmaxin Aug 24, 2023
3000908
apply @tsteven4 's latest constructor
postmaxin Aug 25, 2023
d5590be
Merge branch 'master' into takeout2
postmaxin Aug 25, 2023
9fc0283
Merge branch 'master' into takeout2
postmaxin Aug 28, 2023
f1dfc22
apply @tsteven4 's latest patch -- `cmake --build . --target check` p…
postmaxin Aug 28, 2023
febff75
Merge branch 'takeout2' of github.com:postmaxin/gpsbabel into takeout2
postmaxin Aug 28, 2023
9c82492
Merge branch 'master' into takeout2
tsteven4 Aug 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
/debug/
/gpsbabel
/gpsbabel-debug
/gpsbabel_coverage.xml
/gpsbabel.exe
/gpsbabel.fo
/gpsbabel.html
/gpsbabel.pdf
/gpsbabel_autogen/
/gpsbabel_coverage.xml
/Makefile
.qmake.cache
.qmake.stash
Expand All @@ -26,11 +27,13 @@
*.a
.ninja_deps
.ninja_log
.qt
build.ninja
rules.ninja
cmake_install.cmake
CMakeCache.txt
CMakeFiles/
CTestTestfile.cmake
/GPSBabel[0-9]*.[0-9]*.[0-9]*/
/GPSBabel[0-9]*.[0-9]*.[0-9]*.tar.bz2
/makelinuxdist.sh
Expand All @@ -47,3 +50,4 @@ CMakeFiles/
/gbversion.h
/qrc_gpsbabel.cpp
/.vscode/
Testing
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ set(ALL_FMTS ${MINIMAL_FMTS}
geocache.cc
geojson.cc
globalsat_sport.cc
googletakeout.cc
postmaxin marked this conversation as resolved.
Show resolved Hide resolved
gtm.cc
gtrnctr.cc
html.cc
Expand Down Expand Up @@ -213,6 +214,7 @@ set(HEADERS
geojson.h
globalsat_sport.h
geo.h
googletakeout.h
gpx.h
grtcirc.h
gtrnctr.h
Expand Down Expand Up @@ -380,6 +382,7 @@ set(TESTS
geojson
geo
globalsat_sport
googletakeout
gpsdrive
gpx
grapheme
Expand Down
Loading