├── .gitignore ├── LICENSE ├── README ├── ToDo.txt ├── harbour-laufhelden.desktop ├── harbour-laufhelden.pro ├── icons ├── 108x108 │ └── harbour-laufhelden.png ├── 128x128 │ └── harbour-laufhelden.png ├── 256x256 │ └── harbour-laufhelden.png └── 86x86 │ └── harbour-laufhelden.png ├── libs └── qmlsortfilterproxymodel │ ├── SortFilterProxyModel.pri │ ├── filters │ ├── alloffilter.cpp │ ├── alloffilter.h │ ├── anyoffilter.cpp │ ├── anyoffilter.h │ ├── expressionfilter.cpp │ ├── expressionfilter.h │ ├── filter.cpp │ ├── filter.h │ ├── filtercontainer.cpp │ ├── filtercontainer.h │ ├── filtercontainerfilter.cpp │ ├── filtercontainerfilter.h │ ├── filtersqmltypes.cpp │ ├── indexfilter.cpp │ ├── indexfilter.h │ ├── rangefilter.cpp │ ├── rangefilter.h │ ├── regexpfilter.cpp │ ├── regexpfilter.h │ ├── rolefilter.cpp │ ├── rolefilter.h │ ├── valuefilter.cpp │ └── valuefilter.h │ ├── proxyroles │ ├── expressionrole.cpp │ ├── expressionrole.h │ ├── joinrole.cpp │ ├── joinrole.h │ ├── proxyrole.cpp │ ├── proxyrole.h │ ├── proxyrolecontainer.cpp │ ├── proxyrolecontainer.h │ ├── proxyrolesqmltypes.cpp │ ├── switchrole.cpp │ └── switchrole.h │ ├── qqmlsortfilterproxymodel.cpp │ ├── qqmlsortfilterproxymodel.h │ └── sorters │ ├── expressionsorter.cpp │ ├── expressionsorter.h │ ├── rolesorter.cpp │ ├── rolesorter.h │ ├── sorter.cpp │ ├── sorter.h │ ├── sortercontainer.cpp │ ├── sortercontainer.h │ ├── sortersqmltypes.cpp │ ├── stringsorter.cpp │ └── stringsorter.h ├── o2 ├── .gitignore ├── CHANGES.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── acknowledgements.md ├── cmake │ └── modules │ │ ├── FindQt5Keychain.cmake │ │ └── FindQtKeychain.cmake ├── o2.pc.cmake └── src │ ├── CMakeLists.txt │ ├── o0abstractstore.h │ ├── o0baseauth.cpp │ ├── o0baseauth.h │ ├── o0export.h │ ├── o0globals.h │ ├── o0keychainstore.cpp │ ├── o0keychainstore.h │ ├── o0requestparameter.h │ ├── o0settingsstore.cpp │ ├── o0settingsstore.h │ ├── o0simplecrypt.h │ ├── o2.cpp │ ├── o2.h │ ├── o2.pri │ ├── o2reply.cpp │ ├── o2reply.h │ ├── o2replyserver.cpp │ ├── o2replyserver.h │ ├── o2requestor.cpp │ ├── o2requestor.h │ ├── o2simplecrypt.cpp │ └── src.pri ├── qml ├── components │ └── InfoItem.qml ├── cover │ └── CoverPage.qml ├── graph │ ├── Axis.qml │ └── GraphData.qml ├── harbour-laufhelden.qml ├── img │ ├── bat0.png │ ├── bat100.png │ ├── bat20.png │ ├── bat50.png │ ├── bat80.png │ ├── calendar.png │ ├── cd_logo.jpg │ ├── circle.png │ ├── cover.png │ ├── elevation.png │ ├── flame.png │ ├── general.png │ ├── heart.png │ ├── icon-lock-error.png │ ├── icon-lock-info.png │ ├── icon-lock-ok.png │ ├── icon-lock-warning.png │ ├── length.png │ ├── map.png │ ├── map_btn_center.png │ ├── map_btn_max.png │ ├── map_btn_min.png │ ├── map_btn_settings.png │ ├── map_pause.png │ ├── map_play.png │ ├── map_resume.png │ ├── map_stop.png │ ├── mountains.png │ ├── pagelocator_1_3.png │ ├── pagelocator_2_3.png │ ├── pagelocator_3_3.png │ ├── pebble.jpg │ ├── pebble.png │ ├── pin.png │ ├── position-circle-blue.png │ ├── socialmedia.png │ ├── speed.png │ ├── speedavg.png │ ├── sportstracker.png │ ├── strava.png │ ├── strava_pr_1.png │ ├── strava_pr_2.png │ ├── strava_pr_3.png │ ├── time.png │ ├── trophy.png │ └── voicecoach.png ├── laufhelden.png ├── pages │ ├── AboutPage.qml │ ├── BTConnectPage.qml │ ├── BrowserPage.qml │ ├── CoverSettingsPage.qml │ ├── DetailedViewPage.qml │ ├── DiagramViewPage.qml │ ├── MainPage.qml │ ├── MapSettingsPage.qml │ ├── MapViewPage.qml │ ├── MyStravaActivities.qml │ ├── PebbleSettingsPage.qml │ ├── PreRecordPage.qml │ ├── RecordPage.qml │ ├── SaveDialog.qml │ ├── SettingsMenu.qml │ ├── SettingsPage.qml │ ├── SocialMediaMenu.qml │ ├── SportsTrackerSettingsPage.qml │ ├── SportsTrackerUploadPage.qml │ ├── StravaActivityPage.qml │ ├── StravaComments.qml │ ├── StravaKudos.qml │ ├── StravaSegment.qml │ ├── StravaSegments.qml │ ├── StravaSettingsPage.qml │ ├── StravaUploadPage.qml │ ├── ThresholdSettingsPage.qml │ ├── VoiceCycleDistanceSettingsPage.qml │ ├── VoiceCycleDurationSettingsPage.qml │ ├── VoiceEventsSettingsPage.qml │ ├── VoiceGeneralSettingsPage.qml │ └── VoiceSettingsPage.qml ├── tools │ ├── JSTools.js │ ├── MediaPlayerControl.qml │ ├── Messagebox.qml │ ├── PebbleComm.qml │ ├── RecordPageDisplay.js │ ├── ScreenBlank.qml │ ├── SharedResources.js │ ├── SportsTracker.js │ └── Thresholds.js └── workouticons │ ├── biking.png │ ├── hiking.png │ ├── mountainBiking.png │ ├── rollerSkating.png │ ├── running.png │ ├── skiing.png │ └── walking.png ├── rpm ├── harbour-laufhelden.changes ├── harbour-laufhelden.spec └── harbour-laufhelden.yaml ├── src ├── device.cpp ├── device.h ├── deviceinfo.cpp ├── deviceinfo.h ├── harbour-laufhelden.cpp ├── historymodel.cpp ├── historymodel.h ├── light.cpp ├── light.h ├── logwriter.cpp ├── logwriter.h ├── pebblemanagercomm.cpp ├── pebblemanagercomm.h ├── pebblewatchcomm.cpp ├── pebblewatchcomm.h ├── plotwidget.cpp ├── plotwidget.h ├── serviceinfo.cpp ├── serviceinfo.h ├── settings.cpp ├── settings.h ├── timeformatter.cpp ├── timeformatter.h ├── trackloader.cpp ├── trackloader.h ├── trackrecorder.cpp └── trackrecorder.h └── translations ├── harbour-laufhelden-de.ts ├── harbour-laufhelden-es.ts ├── harbour-laufhelden-fi_FI.ts ├── harbour-laufhelden-fr.ts ├── harbour-laufhelden-hu.ts ├── harbour-laufhelden-nl.ts ├── harbour-laufhelden-nl_BE.ts ├── harbour-laufhelden-pl.ts ├── harbour-laufhelden-ru.ts ├── harbour-laufhelden-sv.ts ├── harbour-laufhelden-zh_CN.ts └── harbour-laufhelden.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/README -------------------------------------------------------------------------------- /ToDo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/ToDo.txt -------------------------------------------------------------------------------- /harbour-laufhelden.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/harbour-laufhelden.desktop -------------------------------------------------------------------------------- /harbour-laufhelden.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/harbour-laufhelden.pro -------------------------------------------------------------------------------- /icons/108x108/harbour-laufhelden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/icons/108x108/harbour-laufhelden.png -------------------------------------------------------------------------------- /icons/128x128/harbour-laufhelden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/icons/128x128/harbour-laufhelden.png -------------------------------------------------------------------------------- /icons/256x256/harbour-laufhelden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/icons/256x256/harbour-laufhelden.png -------------------------------------------------------------------------------- /icons/86x86/harbour-laufhelden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/icons/86x86/harbour-laufhelden.png -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/SortFilterProxyModel.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/SortFilterProxyModel.pri -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/alloffilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/alloffilter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/alloffilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/alloffilter.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/anyoffilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/anyoffilter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/anyoffilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/anyoffilter.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/expressionfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/expressionfilter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/expressionfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/expressionfilter.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/filter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/filter.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/filtercontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/filtercontainer.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/filtercontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/filtercontainer.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/filtercontainerfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/filtercontainerfilter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/filtercontainerfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/filtercontainerfilter.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/filtersqmltypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/filtersqmltypes.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/indexfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/indexfilter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/indexfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/indexfilter.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/rangefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/rangefilter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/rangefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/rangefilter.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/regexpfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/regexpfilter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/regexpfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/regexpfilter.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/rolefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/rolefilter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/rolefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/rolefilter.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/valuefilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/valuefilter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/filters/valuefilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/filters/valuefilter.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/proxyroles/expressionrole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/proxyroles/expressionrole.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/proxyroles/expressionrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/proxyroles/expressionrole.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/proxyroles/joinrole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/proxyroles/joinrole.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/proxyroles/joinrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/proxyroles/joinrole.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/proxyroles/proxyrole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/proxyroles/proxyrole.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/proxyroles/proxyrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/proxyroles/proxyrole.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/proxyroles/proxyrolecontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/proxyroles/proxyrolecontainer.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/proxyroles/proxyrolecontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/proxyroles/proxyrolecontainer.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/proxyroles/proxyrolesqmltypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/proxyroles/proxyrolesqmltypes.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/proxyroles/switchrole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/proxyroles/switchrole.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/proxyroles/switchrole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/proxyroles/switchrole.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/qqmlsortfilterproxymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/qqmlsortfilterproxymodel.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/qqmlsortfilterproxymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/qqmlsortfilterproxymodel.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/sorters/expressionsorter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/sorters/expressionsorter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/sorters/expressionsorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/sorters/expressionsorter.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/sorters/rolesorter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/sorters/rolesorter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/sorters/rolesorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/sorters/rolesorter.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/sorters/sorter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/sorters/sorter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/sorters/sorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/sorters/sorter.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/sorters/sortercontainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/sorters/sortercontainer.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/sorters/sortercontainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/sorters/sortercontainer.h -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/sorters/sortersqmltypes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/sorters/sortersqmltypes.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/sorters/stringsorter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/sorters/stringsorter.cpp -------------------------------------------------------------------------------- /libs/qmlsortfilterproxymodel/sorters/stringsorter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/libs/qmlsortfilterproxymodel/sorters/stringsorter.h -------------------------------------------------------------------------------- /o2/.gitignore: -------------------------------------------------------------------------------- 1 | *CMakeLists.txt.user 2 | _build/ 3 | *.DS_Store -------------------------------------------------------------------------------- /o2/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/CHANGES.md -------------------------------------------------------------------------------- /o2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/CMakeLists.txt -------------------------------------------------------------------------------- /o2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/LICENSE -------------------------------------------------------------------------------- /o2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/README.md -------------------------------------------------------------------------------- /o2/acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/acknowledgements.md -------------------------------------------------------------------------------- /o2/cmake/modules/FindQt5Keychain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/cmake/modules/FindQt5Keychain.cmake -------------------------------------------------------------------------------- /o2/cmake/modules/FindQtKeychain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/cmake/modules/FindQtKeychain.cmake -------------------------------------------------------------------------------- /o2/o2.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/o2.pc.cmake -------------------------------------------------------------------------------- /o2/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/CMakeLists.txt -------------------------------------------------------------------------------- /o2/src/o0abstractstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o0abstractstore.h -------------------------------------------------------------------------------- /o2/src/o0baseauth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o0baseauth.cpp -------------------------------------------------------------------------------- /o2/src/o0baseauth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o0baseauth.h -------------------------------------------------------------------------------- /o2/src/o0export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o0export.h -------------------------------------------------------------------------------- /o2/src/o0globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o0globals.h -------------------------------------------------------------------------------- /o2/src/o0keychainstore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o0keychainstore.cpp -------------------------------------------------------------------------------- /o2/src/o0keychainstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o0keychainstore.h -------------------------------------------------------------------------------- /o2/src/o0requestparameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o0requestparameter.h -------------------------------------------------------------------------------- /o2/src/o0settingsstore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o0settingsstore.cpp -------------------------------------------------------------------------------- /o2/src/o0settingsstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o0settingsstore.h -------------------------------------------------------------------------------- /o2/src/o0simplecrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o0simplecrypt.h -------------------------------------------------------------------------------- /o2/src/o2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o2.cpp -------------------------------------------------------------------------------- /o2/src/o2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o2.h -------------------------------------------------------------------------------- /o2/src/o2.pri: -------------------------------------------------------------------------------- 1 | include(src.pri) 2 | -------------------------------------------------------------------------------- /o2/src/o2reply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o2reply.cpp -------------------------------------------------------------------------------- /o2/src/o2reply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o2reply.h -------------------------------------------------------------------------------- /o2/src/o2replyserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o2replyserver.cpp -------------------------------------------------------------------------------- /o2/src/o2replyserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o2replyserver.h -------------------------------------------------------------------------------- /o2/src/o2requestor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o2requestor.cpp -------------------------------------------------------------------------------- /o2/src/o2requestor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o2requestor.h -------------------------------------------------------------------------------- /o2/src/o2simplecrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/o2simplecrypt.cpp -------------------------------------------------------------------------------- /o2/src/src.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/o2/src/src.pri -------------------------------------------------------------------------------- /qml/components/InfoItem.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/components/InfoItem.qml -------------------------------------------------------------------------------- /qml/cover/CoverPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/cover/CoverPage.qml -------------------------------------------------------------------------------- /qml/graph/Axis.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/graph/Axis.qml -------------------------------------------------------------------------------- /qml/graph/GraphData.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/graph/GraphData.qml -------------------------------------------------------------------------------- /qml/harbour-laufhelden.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/harbour-laufhelden.qml -------------------------------------------------------------------------------- /qml/img/bat0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/bat0.png -------------------------------------------------------------------------------- /qml/img/bat100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/bat100.png -------------------------------------------------------------------------------- /qml/img/bat20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/bat20.png -------------------------------------------------------------------------------- /qml/img/bat50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/bat50.png -------------------------------------------------------------------------------- /qml/img/bat80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/bat80.png -------------------------------------------------------------------------------- /qml/img/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/calendar.png -------------------------------------------------------------------------------- /qml/img/cd_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/cd_logo.jpg -------------------------------------------------------------------------------- /qml/img/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/circle.png -------------------------------------------------------------------------------- /qml/img/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/cover.png -------------------------------------------------------------------------------- /qml/img/elevation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/elevation.png -------------------------------------------------------------------------------- /qml/img/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/flame.png -------------------------------------------------------------------------------- /qml/img/general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/general.png -------------------------------------------------------------------------------- /qml/img/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/heart.png -------------------------------------------------------------------------------- /qml/img/icon-lock-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/icon-lock-error.png -------------------------------------------------------------------------------- /qml/img/icon-lock-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/icon-lock-info.png -------------------------------------------------------------------------------- /qml/img/icon-lock-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/icon-lock-ok.png -------------------------------------------------------------------------------- /qml/img/icon-lock-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/icon-lock-warning.png -------------------------------------------------------------------------------- /qml/img/length.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/length.png -------------------------------------------------------------------------------- /qml/img/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/map.png -------------------------------------------------------------------------------- /qml/img/map_btn_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/map_btn_center.png -------------------------------------------------------------------------------- /qml/img/map_btn_max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/map_btn_max.png -------------------------------------------------------------------------------- /qml/img/map_btn_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/map_btn_min.png -------------------------------------------------------------------------------- /qml/img/map_btn_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/map_btn_settings.png -------------------------------------------------------------------------------- /qml/img/map_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/map_pause.png -------------------------------------------------------------------------------- /qml/img/map_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/map_play.png -------------------------------------------------------------------------------- /qml/img/map_resume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/map_resume.png -------------------------------------------------------------------------------- /qml/img/map_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/map_stop.png -------------------------------------------------------------------------------- /qml/img/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/mountains.png -------------------------------------------------------------------------------- /qml/img/pagelocator_1_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/pagelocator_1_3.png -------------------------------------------------------------------------------- /qml/img/pagelocator_2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/pagelocator_2_3.png -------------------------------------------------------------------------------- /qml/img/pagelocator_3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/pagelocator_3_3.png -------------------------------------------------------------------------------- /qml/img/pebble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/pebble.jpg -------------------------------------------------------------------------------- /qml/img/pebble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/pebble.png -------------------------------------------------------------------------------- /qml/img/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/pin.png -------------------------------------------------------------------------------- /qml/img/position-circle-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/position-circle-blue.png -------------------------------------------------------------------------------- /qml/img/socialmedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/socialmedia.png -------------------------------------------------------------------------------- /qml/img/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/speed.png -------------------------------------------------------------------------------- /qml/img/speedavg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/speedavg.png -------------------------------------------------------------------------------- /qml/img/sportstracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/sportstracker.png -------------------------------------------------------------------------------- /qml/img/strava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/strava.png -------------------------------------------------------------------------------- /qml/img/strava_pr_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/strava_pr_1.png -------------------------------------------------------------------------------- /qml/img/strava_pr_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/strava_pr_2.png -------------------------------------------------------------------------------- /qml/img/strava_pr_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/strava_pr_3.png -------------------------------------------------------------------------------- /qml/img/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/time.png -------------------------------------------------------------------------------- /qml/img/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/trophy.png -------------------------------------------------------------------------------- /qml/img/voicecoach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/img/voicecoach.png -------------------------------------------------------------------------------- /qml/laufhelden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/laufhelden.png -------------------------------------------------------------------------------- /qml/pages/AboutPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/AboutPage.qml -------------------------------------------------------------------------------- /qml/pages/BTConnectPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/BTConnectPage.qml -------------------------------------------------------------------------------- /qml/pages/BrowserPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/BrowserPage.qml -------------------------------------------------------------------------------- /qml/pages/CoverSettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/CoverSettingsPage.qml -------------------------------------------------------------------------------- /qml/pages/DetailedViewPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/DetailedViewPage.qml -------------------------------------------------------------------------------- /qml/pages/DiagramViewPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/DiagramViewPage.qml -------------------------------------------------------------------------------- /qml/pages/MainPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/MainPage.qml -------------------------------------------------------------------------------- /qml/pages/MapSettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/MapSettingsPage.qml -------------------------------------------------------------------------------- /qml/pages/MapViewPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/MapViewPage.qml -------------------------------------------------------------------------------- /qml/pages/MyStravaActivities.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/MyStravaActivities.qml -------------------------------------------------------------------------------- /qml/pages/PebbleSettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/PebbleSettingsPage.qml -------------------------------------------------------------------------------- /qml/pages/PreRecordPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/PreRecordPage.qml -------------------------------------------------------------------------------- /qml/pages/RecordPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/RecordPage.qml -------------------------------------------------------------------------------- /qml/pages/SaveDialog.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/SaveDialog.qml -------------------------------------------------------------------------------- /qml/pages/SettingsMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/SettingsMenu.qml -------------------------------------------------------------------------------- /qml/pages/SettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/SettingsPage.qml -------------------------------------------------------------------------------- /qml/pages/SocialMediaMenu.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/SocialMediaMenu.qml -------------------------------------------------------------------------------- /qml/pages/SportsTrackerSettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/SportsTrackerSettingsPage.qml -------------------------------------------------------------------------------- /qml/pages/SportsTrackerUploadPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/SportsTrackerUploadPage.qml -------------------------------------------------------------------------------- /qml/pages/StravaActivityPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/StravaActivityPage.qml -------------------------------------------------------------------------------- /qml/pages/StravaComments.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/StravaComments.qml -------------------------------------------------------------------------------- /qml/pages/StravaKudos.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/StravaKudos.qml -------------------------------------------------------------------------------- /qml/pages/StravaSegment.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/StravaSegment.qml -------------------------------------------------------------------------------- /qml/pages/StravaSegments.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/StravaSegments.qml -------------------------------------------------------------------------------- /qml/pages/StravaSettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/StravaSettingsPage.qml -------------------------------------------------------------------------------- /qml/pages/StravaUploadPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/StravaUploadPage.qml -------------------------------------------------------------------------------- /qml/pages/ThresholdSettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/ThresholdSettingsPage.qml -------------------------------------------------------------------------------- /qml/pages/VoiceCycleDistanceSettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/VoiceCycleDistanceSettingsPage.qml -------------------------------------------------------------------------------- /qml/pages/VoiceCycleDurationSettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/VoiceCycleDurationSettingsPage.qml -------------------------------------------------------------------------------- /qml/pages/VoiceEventsSettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/VoiceEventsSettingsPage.qml -------------------------------------------------------------------------------- /qml/pages/VoiceGeneralSettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/VoiceGeneralSettingsPage.qml -------------------------------------------------------------------------------- /qml/pages/VoiceSettingsPage.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/pages/VoiceSettingsPage.qml -------------------------------------------------------------------------------- /qml/tools/JSTools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/tools/JSTools.js -------------------------------------------------------------------------------- /qml/tools/MediaPlayerControl.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/tools/MediaPlayerControl.qml -------------------------------------------------------------------------------- /qml/tools/Messagebox.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/tools/Messagebox.qml -------------------------------------------------------------------------------- /qml/tools/PebbleComm.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/tools/PebbleComm.qml -------------------------------------------------------------------------------- /qml/tools/RecordPageDisplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/tools/RecordPageDisplay.js -------------------------------------------------------------------------------- /qml/tools/ScreenBlank.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/tools/ScreenBlank.qml -------------------------------------------------------------------------------- /qml/tools/SharedResources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/tools/SharedResources.js -------------------------------------------------------------------------------- /qml/tools/SportsTracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/tools/SportsTracker.js -------------------------------------------------------------------------------- /qml/tools/Thresholds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/tools/Thresholds.js -------------------------------------------------------------------------------- /qml/workouticons/biking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/workouticons/biking.png -------------------------------------------------------------------------------- /qml/workouticons/hiking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/workouticons/hiking.png -------------------------------------------------------------------------------- /qml/workouticons/mountainBiking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/workouticons/mountainBiking.png -------------------------------------------------------------------------------- /qml/workouticons/rollerSkating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/workouticons/rollerSkating.png -------------------------------------------------------------------------------- /qml/workouticons/running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/workouticons/running.png -------------------------------------------------------------------------------- /qml/workouticons/skiing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/workouticons/skiing.png -------------------------------------------------------------------------------- /qml/workouticons/walking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/qml/workouticons/walking.png -------------------------------------------------------------------------------- /rpm/harbour-laufhelden.changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/rpm/harbour-laufhelden.changes -------------------------------------------------------------------------------- /rpm/harbour-laufhelden.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/rpm/harbour-laufhelden.spec -------------------------------------------------------------------------------- /rpm/harbour-laufhelden.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/rpm/harbour-laufhelden.yaml -------------------------------------------------------------------------------- /src/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/device.cpp -------------------------------------------------------------------------------- /src/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/device.h -------------------------------------------------------------------------------- /src/deviceinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/deviceinfo.cpp -------------------------------------------------------------------------------- /src/deviceinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/deviceinfo.h -------------------------------------------------------------------------------- /src/harbour-laufhelden.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/harbour-laufhelden.cpp -------------------------------------------------------------------------------- /src/historymodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/historymodel.cpp -------------------------------------------------------------------------------- /src/historymodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/historymodel.h -------------------------------------------------------------------------------- /src/light.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/light.cpp -------------------------------------------------------------------------------- /src/light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/light.h -------------------------------------------------------------------------------- /src/logwriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/logwriter.cpp -------------------------------------------------------------------------------- /src/logwriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/logwriter.h -------------------------------------------------------------------------------- /src/pebblemanagercomm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/pebblemanagercomm.cpp -------------------------------------------------------------------------------- /src/pebblemanagercomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/pebblemanagercomm.h -------------------------------------------------------------------------------- /src/pebblewatchcomm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/pebblewatchcomm.cpp -------------------------------------------------------------------------------- /src/pebblewatchcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/pebblewatchcomm.h -------------------------------------------------------------------------------- /src/plotwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/plotwidget.cpp -------------------------------------------------------------------------------- /src/plotwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/plotwidget.h -------------------------------------------------------------------------------- /src/serviceinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/serviceinfo.cpp -------------------------------------------------------------------------------- /src/serviceinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/serviceinfo.h -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/timeformatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/timeformatter.cpp -------------------------------------------------------------------------------- /src/timeformatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/timeformatter.h -------------------------------------------------------------------------------- /src/trackloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/trackloader.cpp -------------------------------------------------------------------------------- /src/trackloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/trackloader.h -------------------------------------------------------------------------------- /src/trackrecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/trackrecorder.cpp -------------------------------------------------------------------------------- /src/trackrecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/src/trackrecorder.h -------------------------------------------------------------------------------- /translations/harbour-laufhelden-de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/translations/harbour-laufhelden-de.ts -------------------------------------------------------------------------------- /translations/harbour-laufhelden-es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/translations/harbour-laufhelden-es.ts -------------------------------------------------------------------------------- /translations/harbour-laufhelden-fi_FI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/translations/harbour-laufhelden-fi_FI.ts -------------------------------------------------------------------------------- /translations/harbour-laufhelden-fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/translations/harbour-laufhelden-fr.ts -------------------------------------------------------------------------------- /translations/harbour-laufhelden-hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/translations/harbour-laufhelden-hu.ts -------------------------------------------------------------------------------- /translations/harbour-laufhelden-nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/translations/harbour-laufhelden-nl.ts -------------------------------------------------------------------------------- /translations/harbour-laufhelden-nl_BE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/translations/harbour-laufhelden-nl_BE.ts -------------------------------------------------------------------------------- /translations/harbour-laufhelden-pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/translations/harbour-laufhelden-pl.ts -------------------------------------------------------------------------------- /translations/harbour-laufhelden-ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/translations/harbour-laufhelden-ru.ts -------------------------------------------------------------------------------- /translations/harbour-laufhelden-sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/translations/harbour-laufhelden-sv.ts -------------------------------------------------------------------------------- /translations/harbour-laufhelden-zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/translations/harbour-laufhelden-zh_CN.ts -------------------------------------------------------------------------------- /translations/harbour-laufhelden.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdrescher2006/Laufhelden/HEAD/translations/harbour-laufhelden.ts --------------------------------------------------------------------------------