├── .DS_Store ├── .gitignore ├── ExampleImages ├── .DS_Store ├── example1.gif ├── example9.gif ├── v2_example4.gif ├── v2_example5.jpeg ├── v2_example6.png ├── v2_example7.png └── v2_example8.png ├── GPSTracker.sketch ├── GPSTracker.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── gtreulands.xcuserdatad │ │ ├── IDEFindNavigatorScopes.plist │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ ├── GPS Tracker.xcscheme │ │ ├── WatchApp Extension.xcscheme │ │ └── WatchApp.xcscheme └── xcuserdata │ ├── gt.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── gtreulands.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── GPSTracker.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ ├── gt.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── gtreulands.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── GPSTracker ├── .DS_Store ├── AppDelegate │ └── AppDelegate.swift ├── Assets.xcassets │ ├── .DS_Store │ ├── AppIcon.appiconset │ │ ├── .DS_Store │ │ ├── Contents.json │ │ ├── Icon_1024.png │ │ ├── Icon_20@2x.png │ │ ├── Icon_20@3x.png │ │ ├── Icon_29@2x.png │ │ ├── Icon_29@3x.png │ │ ├── Icon_40@2x.png │ │ ├── Icon_40@3x.png │ │ ├── Icon_60@2x.png │ │ └── Icon_60@3x.png │ ├── BusinessColor.colorset │ │ └── Contents.json │ ├── CellSeparatorColor.colorset │ │ └── Contents.json │ ├── Contents.json │ ├── DateColor.colorset │ │ └── Contents.json │ ├── DeleteColor.colorset │ │ └── Contents.json │ ├── DisabledButtonColor.colorset │ │ └── Contents.json │ ├── Main │ │ ├── .DS_Store │ │ ├── Contents.json │ │ ├── back_button.imageset │ │ │ ├── Contents.json │ │ │ ├── back_button@2x.png │ │ │ └── back_button@3x.png │ │ ├── bottom_tableView_shadow.imageset │ │ │ ├── Contents.json │ │ │ ├── bottom_tableView_shadow@2x.png │ │ │ └── bottom_tableView_shadow@3x.png │ │ ├── calendar.imageset │ │ │ ├── Contents.json │ │ │ ├── calendar@2x.png │ │ │ └── calendar@3x.png │ │ ├── car.imageset │ │ │ ├── Contents.json │ │ │ ├── car@2x.png │ │ │ └── car@3x.png │ │ ├── cell_arrow.imageset │ │ │ ├── Contents.json │ │ │ ├── cell_arrow@2x.png │ │ │ └── cell_arrow@3x.png │ │ ├── cell_bg_bottom.imageset │ │ │ ├── Contents.json │ │ │ ├── cell_bg_bottom@2x.png │ │ │ └── cell_bg_bottom@3x.png │ │ ├── cell_bg_middle.imageset │ │ │ ├── Contents.json │ │ │ ├── cell_bg_middle@2x.png │ │ │ └── cell_bg_middle@3x.png │ │ ├── cell_bg_selected_bottom.imageset │ │ │ ├── Contents.json │ │ │ ├── cell_bg_selected_bottom@2x.png │ │ │ └── cell_bg_selected_bottom@3x.png │ │ ├── cell_bg_selected_middle.imageset │ │ │ ├── Contents.json │ │ │ ├── cell_bg_selected_middle@2x.png │ │ │ └── cell_bg_selected_middle@3x.png │ │ ├── cell_bg_selected_single.imageset │ │ │ ├── Contents.json │ │ │ ├── cell_bg_selected_single@2x.png │ │ │ └── cell_bg_selected_single@3x.png │ │ ├── cell_bg_selected_top.imageset │ │ │ ├── Contents.json │ │ │ ├── cell_bg_selected_top@2x.png │ │ │ └── cell_bg_selected_top@3x.png │ │ ├── cell_bg_single.imageset │ │ │ ├── Contents.json │ │ │ ├── cell_bg_single@2x.png │ │ │ └── cell_bg_single@3x.png │ │ ├── cell_bg_top.imageset │ │ │ ├── Contents.json │ │ │ ├── cell_bg_top@2x.png │ │ │ └── cell_bg_top@3x.png │ │ ├── check_mark.imageset │ │ │ ├── Contents.json │ │ │ ├── check_mark@2x.png │ │ │ └── check_mark@3x.png │ │ ├── forward_arrow.imageset │ │ │ ├── Contents.json │ │ │ ├── forward_arrow@2x.png │ │ │ └── forward_arrow@3x.png │ │ ├── gps_image.imageset │ │ │ ├── Contents.json │ │ │ ├── gps_image@2x.png │ │ │ └── gps_image@3x.png │ │ ├── list_green_pin.imageset │ │ │ ├── Contents.json │ │ │ ├── list_green_pin@2x.png │ │ │ └── list_green_pin@3x.png │ │ ├── list_red_pin.imageset │ │ │ ├── Contents.json │ │ │ ├── list_red_pin@2x.png │ │ │ └── list_red_pin@3x.png │ │ ├── list_road.imageset │ │ │ ├── Contents.json │ │ │ ├── list_road@2x.png │ │ │ └── list_road@3x.png │ │ ├── list_time.imageset │ │ │ ├── Contents.json │ │ │ ├── list_time@2x.png │ │ │ └── list_time@3x.png │ │ ├── map_bubble.imageset │ │ │ ├── Contents.json │ │ │ ├── map_bubble@2x.png │ │ │ └── map_bubble@3x.png │ │ ├── map_bubble_arrow.imageset │ │ │ ├── Contents.json │ │ │ ├── map_bubble_arrow@2x.png │ │ │ └── map_bubble_arrow@3x.png │ │ ├── map_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── map_icon@2x.png │ │ │ └── map_icon@3x.png │ │ ├── map_tiny_pin.imageset │ │ │ ├── Contents.json │ │ │ ├── map_tiny_pin@2x.png │ │ │ └── map_tiny_pin@3x.png │ │ ├── motion_image.imageset │ │ │ ├── Contents.json │ │ │ ├── motion_image@2x.png │ │ │ └── motion_image@3x.png │ │ ├── nav_bar_bottom_blur.imageset │ │ │ ├── Contents.json │ │ │ ├── nav_bar_bottom_blur@2x.png │ │ │ └── nav_bar_bottom_blur@3x.png │ │ ├── nav_bar_shadow.imageset │ │ │ ├── Contents.json │ │ │ ├── nav_bar_shadow@2x.png │ │ │ └── nav_bar_shadow@3x.png │ │ ├── nav_bar_top_blur.imageset │ │ │ ├── Contents.json │ │ │ ├── nav_bar_top_blur@2x.png │ │ │ └── nav_bar_top_blur@3x.png │ │ ├── price.imageset │ │ │ ├── Contents.json │ │ │ ├── price@2x.png │ │ │ └── price@3x.png │ │ ├── settings_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── settings_icon@2x.png │ │ │ └── settings_icon@3x.png │ │ ├── splash_screen2.imageset │ │ │ ├── Contents.json │ │ │ ├── splash_screen2@2x.png │ │ │ └── splash_screen2@3x.png │ │ ├── tab_main_off.imageset │ │ │ ├── Contents.json │ │ │ ├── tab_main_off@2x.png │ │ │ └── tab_main_off@3x.png │ │ ├── tab_main_on.imageset │ │ │ ├── Contents.json │ │ │ ├── tab_main_on@2x.png │ │ │ └── tab_main_on@3x.png │ │ ├── tab_stats_off.imageset │ │ │ ├── Contents.json │ │ │ ├── tab_stats_off@2x.png │ │ │ └── tab_stats_off@3x.png │ │ ├── tab_stats_on.imageset │ │ │ ├── Contents.json │ │ │ ├── tab_stats_on@2x.png │ │ │ └── tab_stats_on@3x.png │ │ └── top_white_gradient.imageset │ │ │ ├── Contents.json │ │ │ ├── top_white_gradient@2x.png │ │ │ └── top_white_gradient@3x.png │ ├── OtherStuffColor.colorset │ │ └── Contents.json │ ├── SubTitleColor.colorset │ │ └── Contents.json │ └── TitleColor.colorset │ │ └── Contents.json ├── CommonViews │ ├── .DS_Store │ ├── Cells │ │ ├── .DS_Store │ │ ├── FontChangeTableViewCell.swift │ │ ├── LanguageListCell.swift │ │ ├── LanguageListCell.xib │ │ ├── MainListCell.swift │ │ ├── MainListCell.xib │ │ ├── SettingsListCell.swift │ │ ├── SettingsListCell.xib │ │ ├── StatsListPriceCell.swift │ │ ├── StatsListPriceCell.xib │ │ ├── StatsListYearCell.swift │ │ └── StatsListYearCell.xib │ └── Views │ │ ├── .DS_Store │ │ ├── FontChangeView.swift │ │ ├── MainListHeaderView.swift │ │ ├── MainListHeaderView.xib │ │ ├── MainTabBarView.swift │ │ ├── MainTabBarView.xib │ │ ├── MapPinAccessoryView.swift │ │ ├── MapPinAccessoryView.xib │ │ ├── NotifPhoneAnimationView.swift │ │ ├── NotifPhoneAnimationView.xib │ │ ├── StatsSegmentHeaderView.swift │ │ ├── StatsSegmentHeaderView.xib │ │ ├── TableViewNoDataView.swift │ │ ├── TableViewNoDataView.xib │ │ ├── TextTableViewHeaderView.swift │ │ └── TextTableViewHeaderView.xib ├── DB │ ├── .DS_Store │ └── DataBase.xcdatamodeld │ │ └── DataBase.xcdatamodel │ │ └── contents ├── Extensions │ ├── CollectionExtension.swift │ ├── DateExtension.swift │ ├── DispatchQueue.swift │ ├── DoubleRoundExtension.swift │ ├── StringLocalizationExtension.swift │ ├── StringSizeExtension.swift │ ├── UIDeviceExtension.swift │ ├── UIViewAnimateExtension.swift │ └── UserDefaultsExtension.swift ├── GPSTracker.entitlements ├── Info.plist ├── LaunchScreen.storyboard ├── Localization │ ├── .DS_Store │ ├── en.lproj │ │ └── Localizable.strings │ ├── lv.lproj │ │ └── Localizable.strings │ └── ru.lproj │ │ └── Localizable.strings ├── Main.storyboard ├── Models │ ├── .DS_Store │ ├── AppFonts.swift │ ├── CellBackgroundType.swift │ └── NSDataToSha256String.swift ├── Scenes │ ├── .DS_Store │ ├── Main │ │ ├── .DS_Store │ │ ├── MainList │ │ │ ├── MainListInteractor.swift │ │ │ ├── MainListLayoutView.swift │ │ │ ├── MainListLayoutView.xib │ │ │ ├── MainListModels.swift │ │ │ ├── MainListPresenter.swift │ │ │ ├── MainListRouter.swift │ │ │ ├── MainListViewController.swift │ │ │ ├── MainListWorker.swift │ │ │ ├── StatsLayoutView.swift │ │ │ └── StatsLayoutView.xib │ │ └── Map │ │ │ ├── MapInteractor.swift │ │ │ ├── MapLayoutView.swift │ │ │ ├── MapLayoutView.xib │ │ │ ├── MapModels.swift │ │ │ ├── MapPoint.swift │ │ │ ├── MapPresenter.swift │ │ │ ├── MapRouter.swift │ │ │ ├── MapViewController.swift │ │ │ └── MapWorker.swift │ ├── ScenesManager.swift │ ├── SetUp │ │ ├── .DS_Store │ │ ├── AppLanguage │ │ │ ├── SetupAppLanguageInteractor.swift │ │ │ ├── SetupAppLanguageLayoutView.swift │ │ │ ├── SetupAppLanguageLayoutView.xib │ │ │ ├── SetupAppLanguageModels.swift │ │ │ ├── SetupAppLanguagePresenter.swift │ │ │ ├── SetupAppLanguageRouter.swift │ │ │ ├── SetupAppLanguageViewController.swift │ │ │ └── SetupAppLanguageWorker.swift │ │ ├── GPSAccess │ │ │ ├── GPSAccessInteractor.swift │ │ │ ├── GPSAccessLayoutView.swift │ │ │ ├── GPSAccessLayoutView.xib │ │ │ └── GPSAccessViewController.swift │ │ └── MotionAccess │ │ │ ├── MotionAccessInteractor.swift │ │ │ ├── MotionAccessLayoutView.swift │ │ │ ├── MotionAccessLayoutView.xib │ │ │ └── MotionAccessViewController.swift │ └── Settings │ │ ├── .DS_Store │ │ ├── AppLanguage │ │ ├── AppLanguageInteractor.swift │ │ ├── AppLanguageLayoutView.swift │ │ ├── AppLanguageLayoutView.xib │ │ ├── AppLanguageModels.swift │ │ ├── AppLanguagePresenter.swift │ │ ├── AppLanguageRouter.swift │ │ ├── AppLanguageViewController.swift │ │ └── AppLanguageWorker.swift │ │ └── Settings │ │ ├── SettingsInteractor.swift │ │ ├── SettingsModels.swift │ │ ├── SettingsPresenter.swift │ │ ├── SettingsRouter.swift │ │ ├── SettingsViewController.swift │ │ ├── SettingsViewLayoutView.swift │ │ ├── SettingsViewLayoutView.xib │ │ └── SettingsWorker.swift ├── Server │ ├── CarDataDownloader.swift │ ├── DataDownloader.swift │ ├── DownloaderState.swift │ └── MyCarDataModel.swift ├── Services │ └── DataBaseManager.swift └── Workers │ ├── .DS_Store │ ├── ActivityWorker.swift │ ├── AltitudeWorker.swift │ ├── AppSettingsWorker.swift │ ├── BoltDrivePriceWorker.swift │ ├── CarGuruPriceWorker.swift │ ├── CityBeePriceWorker.swift │ ├── DataBaseWorker.swift │ ├── GatesWorker.swift │ ├── HelperWorker.swift │ └── WatchConnectionWorker.swift ├── Info.plist ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── WatchApp Extension ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── GatesIcon.png │ ├── Contents.json │ ├── WidgetBackground.colorset │ │ └── Contents.json │ └── u0iNw.imageset │ │ ├── Contents.json │ │ └── u0iNw.png ├── Info.plist └── WatchApp_Extension.swift ├── WatchApp Watch App ├── AppConnectionWorker.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ └── GatesIcon.png │ └── Contents.json ├── ContentView.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json └── WatchAppApp.swift ├── WatchApp-Watch-App-Info.plist ├── excel2LangFiles.py ├── excel2LangFiles.rb └── gpstracker_languages.xlsx /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Pods/ 2 | fuelhunter/GoogleService-Info.plist 3 | -------------------------------------------------------------------------------- /ExampleImages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/ExampleImages/.DS_Store -------------------------------------------------------------------------------- /ExampleImages/example1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/ExampleImages/example1.gif -------------------------------------------------------------------------------- /ExampleImages/example9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/ExampleImages/example9.gif -------------------------------------------------------------------------------- /ExampleImages/v2_example4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/ExampleImages/v2_example4.gif -------------------------------------------------------------------------------- /ExampleImages/v2_example5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/ExampleImages/v2_example5.jpeg -------------------------------------------------------------------------------- /ExampleImages/v2_example6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/ExampleImages/v2_example6.png -------------------------------------------------------------------------------- /ExampleImages/v2_example7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/ExampleImages/v2_example7.png -------------------------------------------------------------------------------- /ExampleImages/v2_example8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/ExampleImages/v2_example8.png -------------------------------------------------------------------------------- /GPSTracker.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.sketch -------------------------------------------------------------------------------- /GPSTracker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /GPSTracker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GPSTracker.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /GPSTracker.xcodeproj/project.xcworkspace/xcuserdata/gtreulands.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcodeproj/project.xcworkspace/xcuserdata/gtreulands.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /GPSTracker.xcodeproj/project.xcworkspace/xcuserdata/gtreulands.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcodeproj/project.xcworkspace/xcuserdata/gtreulands.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GPSTracker.xcodeproj/xcshareddata/xcschemes/GPS Tracker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcodeproj/xcshareddata/xcschemes/GPS Tracker.xcscheme -------------------------------------------------------------------------------- /GPSTracker.xcodeproj/xcshareddata/xcschemes/WatchApp Extension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcodeproj/xcshareddata/xcschemes/WatchApp Extension.xcscheme -------------------------------------------------------------------------------- /GPSTracker.xcodeproj/xcshareddata/xcschemes/WatchApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcodeproj/xcshareddata/xcschemes/WatchApp.xcscheme -------------------------------------------------------------------------------- /GPSTracker.xcodeproj/xcuserdata/gt.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcodeproj/xcuserdata/gt.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GPSTracker.xcodeproj/xcuserdata/gtreulands.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcodeproj/xcuserdata/gtreulands.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /GPSTracker.xcodeproj/xcuserdata/gtreulands.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcodeproj/xcuserdata/gtreulands.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /GPSTracker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /GPSTracker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /GPSTracker.xcworkspace/xcuserdata/gt.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcworkspace/xcuserdata/gt.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GPSTracker.xcworkspace/xcuserdata/gt.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcworkspace/xcuserdata/gt.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /GPSTracker.xcworkspace/xcuserdata/gtreulands.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcworkspace/xcuserdata/gtreulands.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /GPSTracker.xcworkspace/xcuserdata/gtreulands.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker.xcworkspace/xcuserdata/gtreulands.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /GPSTracker/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/AppDelegate/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/AppDelegate/AppDelegate.swift -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/AppIcon.appiconset/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/AppIcon.appiconset/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_1024.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_20@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_20@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_29@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_29@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_40@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_40@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_60@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/AppIcon.appiconset/Icon_60@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/BusinessColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/BusinessColor.colorset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/CellSeparatorColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/CellSeparatorColor.colorset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/DateColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/DateColor.colorset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/DeleteColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/DeleteColor.colorset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/DisabledButtonColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/DisabledButtonColor.colorset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/back_button.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/back_button.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/back_button.imageset/back_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/back_button.imageset/back_button@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/back_button.imageset/back_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/back_button.imageset/back_button@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/bottom_tableView_shadow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/bottom_tableView_shadow.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/bottom_tableView_shadow.imageset/bottom_tableView_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/bottom_tableView_shadow.imageset/bottom_tableView_shadow@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/bottom_tableView_shadow.imageset/bottom_tableView_shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/bottom_tableView_shadow.imageset/bottom_tableView_shadow@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/calendar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/calendar.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/calendar.imageset/calendar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/calendar.imageset/calendar@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/calendar.imageset/calendar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/calendar.imageset/calendar@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/car.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/car.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/car.imageset/car@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/car.imageset/car@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/car.imageset/car@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/car.imageset/car@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_arrow.imageset/cell_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_arrow.imageset/cell_arrow@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_arrow.imageset/cell_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_arrow.imageset/cell_arrow@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_bottom.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_bottom.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_bottom.imageset/cell_bg_bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_bottom.imageset/cell_bg_bottom@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_bottom.imageset/cell_bg_bottom@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_bottom.imageset/cell_bg_bottom@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_middle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_middle.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_middle.imageset/cell_bg_middle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_middle.imageset/cell_bg_middle@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_middle.imageset/cell_bg_middle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_middle.imageset/cell_bg_middle@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_selected_bottom.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_selected_bottom.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_selected_bottom.imageset/cell_bg_selected_bottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_selected_bottom.imageset/cell_bg_selected_bottom@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_selected_bottom.imageset/cell_bg_selected_bottom@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_selected_bottom.imageset/cell_bg_selected_bottom@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_selected_middle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_selected_middle.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_selected_middle.imageset/cell_bg_selected_middle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_selected_middle.imageset/cell_bg_selected_middle@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_selected_middle.imageset/cell_bg_selected_middle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_selected_middle.imageset/cell_bg_selected_middle@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_selected_single.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_selected_single.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_selected_single.imageset/cell_bg_selected_single@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_selected_single.imageset/cell_bg_selected_single@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_selected_single.imageset/cell_bg_selected_single@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_selected_single.imageset/cell_bg_selected_single@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_selected_top.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_selected_top.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_selected_top.imageset/cell_bg_selected_top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_selected_top.imageset/cell_bg_selected_top@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_selected_top.imageset/cell_bg_selected_top@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_selected_top.imageset/cell_bg_selected_top@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_single.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_single.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_single.imageset/cell_bg_single@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_single.imageset/cell_bg_single@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_single.imageset/cell_bg_single@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_single.imageset/cell_bg_single@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_top.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_top.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_top.imageset/cell_bg_top@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_top.imageset/cell_bg_top@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/cell_bg_top.imageset/cell_bg_top@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/cell_bg_top.imageset/cell_bg_top@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/check_mark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/check_mark.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/check_mark.imageset/check_mark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/check_mark.imageset/check_mark@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/check_mark.imageset/check_mark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/check_mark.imageset/check_mark@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/forward_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/forward_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/forward_arrow.imageset/forward_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/forward_arrow.imageset/forward_arrow@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/forward_arrow.imageset/forward_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/forward_arrow.imageset/forward_arrow@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/gps_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/gps_image.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/gps_image.imageset/gps_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/gps_image.imageset/gps_image@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/gps_image.imageset/gps_image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/gps_image.imageset/gps_image@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/list_green_pin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/list_green_pin.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/list_green_pin.imageset/list_green_pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/list_green_pin.imageset/list_green_pin@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/list_green_pin.imageset/list_green_pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/list_green_pin.imageset/list_green_pin@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/list_red_pin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/list_red_pin.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/list_red_pin.imageset/list_red_pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/list_red_pin.imageset/list_red_pin@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/list_red_pin.imageset/list_red_pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/list_red_pin.imageset/list_red_pin@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/list_road.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/list_road.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/list_road.imageset/list_road@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/list_road.imageset/list_road@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/list_road.imageset/list_road@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/list_road.imageset/list_road@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/list_time.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/list_time.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/list_time.imageset/list_time@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/list_time.imageset/list_time@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/list_time.imageset/list_time@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/list_time.imageset/list_time@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/map_bubble.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/map_bubble.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/map_bubble.imageset/map_bubble@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/map_bubble.imageset/map_bubble@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/map_bubble.imageset/map_bubble@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/map_bubble.imageset/map_bubble@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/map_bubble_arrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/map_bubble_arrow.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/map_bubble_arrow.imageset/map_bubble_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/map_bubble_arrow.imageset/map_bubble_arrow@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/map_bubble_arrow.imageset/map_bubble_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/map_bubble_arrow.imageset/map_bubble_arrow@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/map_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/map_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/map_icon.imageset/map_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/map_icon.imageset/map_icon@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/map_icon.imageset/map_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/map_icon.imageset/map_icon@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/map_tiny_pin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/map_tiny_pin.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/map_tiny_pin.imageset/map_tiny_pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/map_tiny_pin.imageset/map_tiny_pin@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/map_tiny_pin.imageset/map_tiny_pin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/map_tiny_pin.imageset/map_tiny_pin@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/motion_image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/motion_image.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/motion_image.imageset/motion_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/motion_image.imageset/motion_image@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/motion_image.imageset/motion_image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/motion_image.imageset/motion_image@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/nav_bar_bottom_blur.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/nav_bar_bottom_blur.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/nav_bar_bottom_blur.imageset/nav_bar_bottom_blur@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/nav_bar_bottom_blur.imageset/nav_bar_bottom_blur@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/nav_bar_bottom_blur.imageset/nav_bar_bottom_blur@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/nav_bar_bottom_blur.imageset/nav_bar_bottom_blur@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/nav_bar_shadow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/nav_bar_shadow.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/nav_bar_shadow.imageset/nav_bar_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/nav_bar_shadow.imageset/nav_bar_shadow@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/nav_bar_shadow.imageset/nav_bar_shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/nav_bar_shadow.imageset/nav_bar_shadow@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/nav_bar_top_blur.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/nav_bar_top_blur.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/nav_bar_top_blur.imageset/nav_bar_top_blur@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/nav_bar_top_blur.imageset/nav_bar_top_blur@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/nav_bar_top_blur.imageset/nav_bar_top_blur@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/nav_bar_top_blur.imageset/nav_bar_top_blur@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/price.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/price.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/price.imageset/price@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/price.imageset/price@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/price.imageset/price@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/price.imageset/price@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/settings_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/settings_icon.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/settings_icon.imageset/settings_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/settings_icon.imageset/settings_icon@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/settings_icon.imageset/settings_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/settings_icon.imageset/settings_icon@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/splash_screen2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/splash_screen2.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/splash_screen2.imageset/splash_screen2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/splash_screen2.imageset/splash_screen2@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/splash_screen2.imageset/splash_screen2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/splash_screen2.imageset/splash_screen2@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/tab_main_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/tab_main_off.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/tab_main_off.imageset/tab_main_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/tab_main_off.imageset/tab_main_off@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/tab_main_off.imageset/tab_main_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/tab_main_off.imageset/tab_main_off@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/tab_main_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/tab_main_on.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/tab_main_on.imageset/tab_main_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/tab_main_on.imageset/tab_main_on@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/tab_main_on.imageset/tab_main_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/tab_main_on.imageset/tab_main_on@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/tab_stats_off.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/tab_stats_off.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/tab_stats_off.imageset/tab_stats_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/tab_stats_off.imageset/tab_stats_off@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/tab_stats_off.imageset/tab_stats_off@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/tab_stats_off.imageset/tab_stats_off@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/tab_stats_on.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/tab_stats_on.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/tab_stats_on.imageset/tab_stats_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/tab_stats_on.imageset/tab_stats_on@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/tab_stats_on.imageset/tab_stats_on@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/tab_stats_on.imageset/tab_stats_on@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/top_white_gradient.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/top_white_gradient.imageset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/top_white_gradient.imageset/top_white_gradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/top_white_gradient.imageset/top_white_gradient@2x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/Main/top_white_gradient.imageset/top_white_gradient@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/Main/top_white_gradient.imageset/top_white_gradient@3x.png -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/OtherStuffColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/OtherStuffColor.colorset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/SubTitleColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/SubTitleColor.colorset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/Assets.xcassets/TitleColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Assets.xcassets/TitleColor.colorset/Contents.json -------------------------------------------------------------------------------- /GPSTracker/CommonViews/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Cells/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Cells/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Cells/FontChangeTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Cells/FontChangeTableViewCell.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Cells/LanguageListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Cells/LanguageListCell.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Cells/LanguageListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Cells/LanguageListCell.xib -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Cells/MainListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Cells/MainListCell.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Cells/MainListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Cells/MainListCell.xib -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Cells/SettingsListCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Cells/SettingsListCell.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Cells/SettingsListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Cells/SettingsListCell.xib -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Cells/StatsListPriceCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Cells/StatsListPriceCell.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Cells/StatsListPriceCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Cells/StatsListPriceCell.xib -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Cells/StatsListYearCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Cells/StatsListYearCell.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Cells/StatsListYearCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Cells/StatsListYearCell.xib -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/FontChangeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/FontChangeView.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/MainListHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/MainListHeaderView.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/MainListHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/MainListHeaderView.xib -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/MainTabBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/MainTabBarView.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/MainTabBarView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/MainTabBarView.xib -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/MapPinAccessoryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/MapPinAccessoryView.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/MapPinAccessoryView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/MapPinAccessoryView.xib -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/NotifPhoneAnimationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/NotifPhoneAnimationView.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/NotifPhoneAnimationView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/NotifPhoneAnimationView.xib -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/StatsSegmentHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/StatsSegmentHeaderView.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/StatsSegmentHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/StatsSegmentHeaderView.xib -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/TableViewNoDataView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/TableViewNoDataView.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/TableViewNoDataView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/TableViewNoDataView.xib -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/TextTableViewHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/TextTableViewHeaderView.swift -------------------------------------------------------------------------------- /GPSTracker/CommonViews/Views/TextTableViewHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/CommonViews/Views/TextTableViewHeaderView.xib -------------------------------------------------------------------------------- /GPSTracker/DB/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/DB/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/DB/DataBase.xcdatamodeld/DataBase.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/DB/DataBase.xcdatamodeld/DataBase.xcdatamodel/contents -------------------------------------------------------------------------------- /GPSTracker/Extensions/CollectionExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Extensions/CollectionExtension.swift -------------------------------------------------------------------------------- /GPSTracker/Extensions/DateExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Extensions/DateExtension.swift -------------------------------------------------------------------------------- /GPSTracker/Extensions/DispatchQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Extensions/DispatchQueue.swift -------------------------------------------------------------------------------- /GPSTracker/Extensions/DoubleRoundExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Extensions/DoubleRoundExtension.swift -------------------------------------------------------------------------------- /GPSTracker/Extensions/StringLocalizationExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Extensions/StringLocalizationExtension.swift -------------------------------------------------------------------------------- /GPSTracker/Extensions/StringSizeExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Extensions/StringSizeExtension.swift -------------------------------------------------------------------------------- /GPSTracker/Extensions/UIDeviceExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Extensions/UIDeviceExtension.swift -------------------------------------------------------------------------------- /GPSTracker/Extensions/UIViewAnimateExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Extensions/UIViewAnimateExtension.swift -------------------------------------------------------------------------------- /GPSTracker/Extensions/UserDefaultsExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Extensions/UserDefaultsExtension.swift -------------------------------------------------------------------------------- /GPSTracker/GPSTracker.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/GPSTracker.entitlements -------------------------------------------------------------------------------- /GPSTracker/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Info.plist -------------------------------------------------------------------------------- /GPSTracker/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/LaunchScreen.storyboard -------------------------------------------------------------------------------- /GPSTracker/Localization/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Localization/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/Localization/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Localization/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /GPSTracker/Localization/lv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Localization/lv.lproj/Localizable.strings -------------------------------------------------------------------------------- /GPSTracker/Localization/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Localization/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /GPSTracker/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Main.storyboard -------------------------------------------------------------------------------- /GPSTracker/Models/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Models/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/Models/AppFonts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Models/AppFonts.swift -------------------------------------------------------------------------------- /GPSTracker/Models/CellBackgroundType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Models/CellBackgroundType.swift -------------------------------------------------------------------------------- /GPSTracker/Models/NSDataToSha256String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Models/NSDataToSha256String.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/MainList/MainListInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/MainList/MainListInteractor.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/MainList/MainListLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/MainList/MainListLayoutView.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/MainList/MainListLayoutView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/MainList/MainListLayoutView.xib -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/MainList/MainListModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/MainList/MainListModels.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/MainList/MainListPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/MainList/MainListPresenter.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/MainList/MainListRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/MainList/MainListRouter.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/MainList/MainListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/MainList/MainListViewController.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/MainList/MainListWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/MainList/MainListWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/MainList/StatsLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/MainList/StatsLayoutView.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/MainList/StatsLayoutView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/MainList/StatsLayoutView.xib -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/Map/MapInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/Map/MapInteractor.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/Map/MapLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/Map/MapLayoutView.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/Map/MapLayoutView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/Map/MapLayoutView.xib -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/Map/MapModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/Map/MapModels.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/Map/MapPoint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/Map/MapPoint.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/Map/MapPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/Map/MapPresenter.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/Map/MapRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/Map/MapRouter.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/Map/MapViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/Map/MapViewController.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Main/Map/MapWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Main/Map/MapWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/ScenesManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/ScenesManager.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageInteractor.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageLayoutView.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageLayoutView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageLayoutView.xib -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageModels.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguagePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguagePresenter.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageRouter.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageViewController.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/AppLanguage/SetupAppLanguageWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/GPSAccess/GPSAccessInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/GPSAccess/GPSAccessInteractor.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/GPSAccess/GPSAccessLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/GPSAccess/GPSAccessLayoutView.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/GPSAccess/GPSAccessLayoutView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/GPSAccess/GPSAccessLayoutView.xib -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/GPSAccess/GPSAccessViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/GPSAccess/GPSAccessViewController.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/MotionAccess/MotionAccessInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/MotionAccess/MotionAccessInteractor.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/MotionAccess/MotionAccessLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/MotionAccess/MotionAccessLayoutView.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/MotionAccess/MotionAccessLayoutView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/MotionAccess/MotionAccessLayoutView.xib -------------------------------------------------------------------------------- /GPSTracker/Scenes/SetUp/MotionAccess/MotionAccessViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/SetUp/MotionAccess/MotionAccessViewController.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/AppLanguage/AppLanguageInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/AppLanguage/AppLanguageInteractor.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/AppLanguage/AppLanguageLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/AppLanguage/AppLanguageLayoutView.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/AppLanguage/AppLanguageLayoutView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/AppLanguage/AppLanguageLayoutView.xib -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/AppLanguage/AppLanguageModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/AppLanguage/AppLanguageModels.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/AppLanguage/AppLanguagePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/AppLanguage/AppLanguagePresenter.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/AppLanguage/AppLanguageRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/AppLanguage/AppLanguageRouter.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/AppLanguage/AppLanguageViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/AppLanguage/AppLanguageViewController.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/AppLanguage/AppLanguageWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/AppLanguage/AppLanguageWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/Settings/SettingsInteractor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/Settings/SettingsInteractor.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/Settings/SettingsModels.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/Settings/SettingsModels.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/Settings/SettingsPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/Settings/SettingsPresenter.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/Settings/SettingsRouter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/Settings/SettingsRouter.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/Settings/SettingsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/Settings/SettingsViewController.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/Settings/SettingsViewLayoutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/Settings/SettingsViewLayoutView.swift -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/Settings/SettingsViewLayoutView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/Settings/SettingsViewLayoutView.xib -------------------------------------------------------------------------------- /GPSTracker/Scenes/Settings/Settings/SettingsWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Scenes/Settings/Settings/SettingsWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Server/CarDataDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Server/CarDataDownloader.swift -------------------------------------------------------------------------------- /GPSTracker/Server/DataDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Server/DataDownloader.swift -------------------------------------------------------------------------------- /GPSTracker/Server/DownloaderState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Server/DownloaderState.swift -------------------------------------------------------------------------------- /GPSTracker/Server/MyCarDataModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Server/MyCarDataModel.swift -------------------------------------------------------------------------------- /GPSTracker/Services/DataBaseManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Services/DataBaseManager.swift -------------------------------------------------------------------------------- /GPSTracker/Workers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Workers/.DS_Store -------------------------------------------------------------------------------- /GPSTracker/Workers/ActivityWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Workers/ActivityWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Workers/AltitudeWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Workers/AltitudeWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Workers/AppSettingsWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Workers/AppSettingsWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Workers/BoltDrivePriceWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Workers/BoltDrivePriceWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Workers/CarGuruPriceWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Workers/CarGuruPriceWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Workers/CityBeePriceWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Workers/CityBeePriceWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Workers/DataBaseWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Workers/DataBaseWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Workers/GatesWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Workers/GatesWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Workers/HelperWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Workers/HelperWorker.swift -------------------------------------------------------------------------------- /GPSTracker/Workers/WatchConnectionWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/GPSTracker/Workers/WatchConnectionWorker.swift -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/README.md -------------------------------------------------------------------------------- /WatchApp Extension/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Extension/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /WatchApp Extension/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Extension/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WatchApp Extension/Assets.xcassets/AppIcon.appiconset/GatesIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Extension/Assets.xcassets/AppIcon.appiconset/GatesIcon.png -------------------------------------------------------------------------------- /WatchApp Extension/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Extension/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WatchApp Extension/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Extension/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /WatchApp Extension/Assets.xcassets/u0iNw.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Extension/Assets.xcassets/u0iNw.imageset/Contents.json -------------------------------------------------------------------------------- /WatchApp Extension/Assets.xcassets/u0iNw.imageset/u0iNw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Extension/Assets.xcassets/u0iNw.imageset/u0iNw.png -------------------------------------------------------------------------------- /WatchApp Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Extension/Info.plist -------------------------------------------------------------------------------- /WatchApp Extension/WatchApp_Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Extension/WatchApp_Extension.swift -------------------------------------------------------------------------------- /WatchApp Watch App/AppConnectionWorker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Watch App/AppConnectionWorker.swift -------------------------------------------------------------------------------- /WatchApp Watch App/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Watch App/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /WatchApp Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WatchApp Watch App/Assets.xcassets/AppIcon.appiconset/GatesIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Watch App/Assets.xcassets/AppIcon.appiconset/GatesIcon.png -------------------------------------------------------------------------------- /WatchApp Watch App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Watch App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WatchApp Watch App/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Watch App/ContentView.swift -------------------------------------------------------------------------------- /WatchApp Watch App/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Watch App/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WatchApp Watch App/WatchAppApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp Watch App/WatchAppApp.swift -------------------------------------------------------------------------------- /WatchApp-Watch-App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/WatchApp-Watch-App-Info.plist -------------------------------------------------------------------------------- /excel2LangFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/excel2LangFiles.py -------------------------------------------------------------------------------- /excel2LangFiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/excel2LangFiles.rb -------------------------------------------------------------------------------- /gpstracker_languages.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuntisTreulands/drives/HEAD/gpstracker_languages.xlsx --------------------------------------------------------------------------------