├── .gitignore └── OpenVehicleApp ├── Cars.xcdatamodeld └── .xccurrentversion ├── Default-568h@2x.png ├── Default-Landscape~ipad.png ├── Default-Portrait~ipad.png ├── Default.png ├── Model.xcdatamodeld ├── .xccurrentversion ├── Model.xcdatamodel │ └── contents ├── Model2.xcdatamodel │ └── contents ├── Model3.xcdatamodel │ └── contents └── Model4.xcdatamodel │ └── contents ├── Open Vehicle.entitlements ├── Open Vehicle.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── Open Vehicle.xccheckout │ └── xcuserdata │ │ ├── goev.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ │ └── Expressions.xcexplist │ │ ├── jlab13.xcuserdatad │ │ └── WorkspaceSettings.xcsettings │ │ └── mark.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ ├── goev.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── Open Vehicle.xcscheme │ │ └── xcschememanagement.plist │ ├── hq.mark.johnson.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── jlab13.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ └── xcschemes │ │ ├── Open Vehicle.xcscheme │ │ └── xcschememanagement.plist │ └── mark.xcuserdatad │ └── xcschemes │ ├── Open Vehicle.xcscheme │ └── xcschememanagement.plist ├── Settings.bundle ├── Root.plist └── en.lproj │ └── Root.strings ├── ovms ├── 00-icons-license.txt ├── 193-location-arrow-white.png ├── 193-location-arrow.png ├── 20-gear2.png ├── 49-battery.png ├── 51-outlet.png ├── 54-lock.png ├── 74-location.png ├── 77-ekg.png ├── 81-dashboard.png ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── OVMS_logo_120-1.png │ │ ├── OVMS_logo_120.png │ │ ├── OVMS_logo_152.png │ │ ├── OVMS_logo_167.png │ │ ├── OVMS_logo_180.png │ │ ├── OVMS_logo_20.png │ │ ├── OVMS_logo_29.png │ │ ├── OVMS_logo_40-1.png │ │ ├── OVMS_logo_40-2.png │ │ ├── OVMS_logo_40.png │ │ ├── OVMS_logo_58-1.png │ │ ├── OVMS_logo_58.png │ │ ├── OVMS_logo_60.png │ │ ├── OVMS_logo_80-1.png │ │ ├── OVMS_logo_80.png │ │ ├── OVMS_logo_87.png │ │ ├── icon76x76.png │ │ └── ovms_appstore.png │ ├── Contents.json │ ├── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── Default-Landscape~ipad-2x.png │ │ ├── Default-Landscape~ipad.png │ │ ├── Default-Portrait~ipad-2x.png │ │ └── Default-Portrait~ipad.png │ └── ovms │ │ ├── Bubble │ │ ├── Contents.json │ │ ├── OvmsBubbleIncomingFull.imageset │ │ │ ├── Contents.json │ │ │ ├── ModernBubbleIncomingFull@2x.png │ │ │ ├── ModernBubbleIncomingFullPad.png │ │ │ └── ModernBubbleIncomingFullPad@2x.png │ │ ├── OvmsBubbleIncomingFullHL.imageset │ │ │ ├── Contents.json │ │ │ ├── ModernBubbleIncomingFullHighlighted@2x.png │ │ │ ├── ModernBubbleIncomingFullHighlightedPad.png │ │ │ └── ModernBubbleIncomingFullHighlightedPad@2x.png │ │ ├── OvmsBubbleIncomingPartial.imageset │ │ │ ├── Contents.json │ │ │ ├── ModernBubbleIncomingPartial@2x.png │ │ │ ├── ModernBubbleIncomingPartialPad.png │ │ │ └── ModernBubbleIncomingPartialPad@2x.png │ │ ├── OvmsBubbleIncomingPartialHL.imageset │ │ │ ├── Contents.json │ │ │ ├── ModernBubbleIncomingPartialHighlighted@2x.png │ │ │ ├── ModernBubbleIncomingPartialHighlightedPad.png │ │ │ └── ModernBubbleIncomingPartialHighlightedPad@2x.png │ │ ├── OvmsBubbleOutgoingFull.imageset │ │ │ ├── Contents.json │ │ │ ├── ModernBubbleOutgoingFull@2x.png │ │ │ ├── ModernBubbleOutgoingFullHighlightedPad.png │ │ │ └── ModernBubbleOutgoingFullHighlightedPad@2x.png │ │ ├── OvmsBubbleOutgoingFullHL.imageset │ │ │ ├── Contents.json │ │ │ ├── ModernBubbleOutgoingFullHighlighted@2x.png │ │ │ ├── ModernBubbleOutgoingFullPad.png │ │ │ └── ModernBubbleOutgoingFullPad@2x.png │ │ ├── OvmsBubbleOutgoingPartial.imageset │ │ │ ├── Contents.json │ │ │ ├── ModernBubbleOutgoingPartial@2x.png │ │ │ ├── ModernBubbleOutgoingPartialPad.png │ │ │ └── ModernBubbleOutgoingPartialPad@2x.png │ │ └── OvmsBubbleOutgoingPartialHL.imageset │ │ │ ├── Contents.json │ │ │ ├── ModernBubbleOutgoingPartialHighlighted@2x.png │ │ │ ├── ModernBubbleOutgoingPartialHighlightedPad.png │ │ │ └── ModernBubbleOutgoingPartialHighlightedPad@2x.png │ │ ├── Clock │ │ ├── Contents.json │ │ ├── OvmsClockGrayFrame.imageset │ │ │ ├── ClockIncomingFrame@2x.png │ │ │ └── Contents.json │ │ ├── OvmsClockGrayHour.imageset │ │ │ ├── ClockIncomingHour@2x.png │ │ │ └── Contents.json │ │ ├── OvmsClockGrayMin.imageset │ │ │ ├── ClockIncomingMin@2x.png │ │ │ └── Contents.json │ │ ├── OvmsClockGreenFrame.imageset │ │ │ ├── ClockFrame@2x.png │ │ │ └── Contents.json │ │ ├── OvmsClockGreenHour.imageset │ │ │ ├── ClockHour@2x.png │ │ │ └── Contents.json │ │ ├── OvmsClockGreenMin.imageset │ │ │ ├── ClockMin@2x.png │ │ │ └── Contents.json │ │ ├── OvmsClockWhiteFrame.imageset │ │ │ ├── ClockWhiteFrame@2x.png │ │ │ └── Contents.json │ │ ├── OvmsClockWhiteHour.imageset │ │ │ ├── ClockWhiteHour@2x.png │ │ │ └── Contents.json │ │ └── OvmsClockWhiteMin.imageset │ │ │ ├── ClockWhiteMin@2x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Icons │ │ ├── Contents.json │ │ ├── Icon.imageset │ │ │ ├── Contents.json │ │ │ └── Icon.png │ │ ├── icon114x114.imageset │ │ │ ├── Contents.json │ │ │ └── icon114x114.png │ │ ├── icon120x120.imageset │ │ │ ├── Contents.json │ │ │ └── icon120x120.png │ │ ├── icon152x152.imageset │ │ │ ├── Contents.json │ │ │ └── icon152x152.png │ │ ├── icon72x72.imageset │ │ │ ├── Contents.json │ │ │ └── icon72x72.png │ │ └── icon76x76.imageset │ │ │ ├── Contents.json │ │ │ └── icon76x76.png │ │ ├── Input │ │ ├── Contents.json │ │ ├── OvmsAttachButton.imageset │ │ │ ├── Contents.json │ │ │ ├── ModernConversationAttach.png │ │ │ └── ModernConversationAttach@2x.png │ │ ├── OvmsInputFieldBackground.imageset │ │ │ ├── Contents.json │ │ │ ├── ModernConversationInput.png │ │ │ └── ModernConversationInput@2x.png │ │ └── OvmsMicButton.imageset │ │ │ ├── Contents.json │ │ │ ├── ModernConversationMicButton.png │ │ │ └── ModernConversationMicButton@2x.png │ │ ├── Status │ │ ├── Contents.json │ │ ├── OvmsMessageCheckmark1.imageset │ │ │ ├── Contents.json │ │ │ ├── ModernMessageCheckmark1.png │ │ │ └── ModernMessageCheckmark1@2x.png │ │ ├── OvmsMessageCheckmark2.imageset │ │ │ ├── Contents.json │ │ │ ├── ModernMessageCheckmark2.png │ │ │ └── ModernMessageCheckmark2@2x.png │ │ ├── OvmsMessageCheckmarkMedia1.imageset │ │ │ ├── Contents.json │ │ │ └── ModernMessageCheckmarkMedia1@2x.png │ │ ├── OvmsMessageCheckmarkMedia2.imageset │ │ │ ├── Contents.json │ │ │ └── ModernMessageCheckmarkMedia2@2x.png │ │ └── OvmsMessageUnsentButton.imageset │ │ │ ├── Contents.json │ │ │ └── ModernMessageUnsentButton@2x.png │ │ ├── User Info │ │ ├── Contents.json │ │ └── TGUserInfo.imageset │ │ │ ├── Contents.json │ │ │ └── TGUserInfo.png │ │ └── Wallpaper │ │ ├── Contents.json │ │ └── OvmsWallpaper.imageset │ │ ├── Contents.json │ │ └── builtin-wallpaper-0.jpg ├── Base.lproj │ ├── MainStoryboard_iPad.storyboard │ └── MainStoryboard_iPhone.storyboard ├── CRTableViewCell.h ├── CRTableViewCell.m ├── ChargingAnnotation.h ├── ChargingAnnotation.m ├── ConnectionTypesController.h ├── ConnectionTypesController.m ├── Default-568h@2x.png ├── EntityName.h ├── EntityName.m ├── Entitys │ ├── AddressInfo.h │ ├── AddressInfo.m │ ├── Cars.h │ ├── Cars.m │ ├── ChargerTypes.h │ ├── ChargerTypes.m │ ├── ChargingLocation.h │ ├── ChargingLocation.m │ ├── Connection.h │ ├── Connection.m │ ├── ConnectionTypes.h │ ├── ConnectionTypes.m │ ├── OperatorInfo.h │ ├── OperatorInfo.m │ └── aux_battery.png ├── GCDAsyncSocket.h ├── GCDAsyncSocket.m ├── HPGrowingTextView │ ├── HPGrowingTextView.h │ ├── HPGrowingTextView.m │ ├── HPTextViewInternal.h │ └── HPTextViewInternal.m ├── Icon.png ├── NSObject+CDHelper.h ├── NSObject+CDHelper.m ├── NoChat │ ├── NOCChatCollectionView.h │ ├── NOCChatCollectionView.m │ ├── NOCChatCollectionViewLayout.h │ ├── NOCChatCollectionViewLayout.m │ ├── NOCChatContainerView.h │ ├── NOCChatContainerView.m │ ├── NOCChatInputPanel.h │ ├── NOCChatInputPanel.m │ ├── NOCChatItem.h │ ├── NOCChatItemCell.h │ ├── NOCChatItemCell.m │ ├── NOCChatItemCellLayout.h │ ├── NOCChatViewController.h │ ├── NOCChatViewController.m │ ├── NoChat.h │ ├── ovmsBaseMessageCell.h │ ├── ovmsBaseMessageCell.m │ ├── ovmsBaseMessageCellLayout.h │ ├── ovmsBaseMessageCellLayout.m │ ├── ovmsChat.h │ ├── ovmsChat.m │ ├── ovmsClockProgressView.h │ ├── ovmsClockProgressView.m │ ├── ovmsDeliveryStatusView.h │ ├── ovmsDeliveryStatusView.m │ ├── ovmsMessageInputPanel.h │ ├── ovmsMessageInputPanel.m │ ├── ovmsTextMessageCell.h │ ├── ovmsTextMessageCell.m │ ├── ovmsTextMessageCellLayout.h │ └── ovmsTextMessageCellLayout.m ├── Nothing.png ├── OCMInformationController.h ├── OCMInformationController.m ├── OCMSyncHelper.h ├── OCMSyncHelper.m ├── Open Vehicle-Prefix.pch ├── PopoverView │ ├── PopoverView.h │ ├── PopoverView.m │ ├── PopoverView_Configuration.h │ ├── error.png │ ├── error@2x.png │ ├── success.png │ └── success@2x.png ├── REVClusterMap │ ├── REVAnnotationsCollection.h │ ├── REVAnnotationsCollection.m │ ├── REVClusterAnnotationView.h │ ├── REVClusterAnnotationView.m │ ├── REVClusterBlock.h │ ├── REVClusterBlock.m │ ├── REVClusterManager.h │ ├── REVClusterManager.m │ ├── REVClusterMap.h │ ├── REVClusterMapView.h │ ├── REVClusterMapView.m │ ├── REVClusterPin.h │ └── REVClusterPin.m ├── Support Views │ ├── JHNotificationManager.h │ ├── JHNotificationManager.m │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ ├── Reachability.h │ └── Reachability.m ├── VehicleAnnotation.h ├── VehicleAnnotation.m ├── YYText │ ├── Component │ │ ├── YYTextContainerView.h │ │ ├── YYTextContainerView.m │ │ ├── YYTextDebugOption.h │ │ ├── YYTextDebugOption.m │ │ ├── YYTextEffectWindow.h │ │ ├── YYTextEffectWindow.m │ │ ├── YYTextInput.h │ │ ├── YYTextInput.m │ │ ├── YYTextKeyboardManager.h │ │ ├── YYTextKeyboardManager.m │ │ ├── YYTextLayout.h │ │ ├── YYTextLayout.m │ │ ├── YYTextLine.h │ │ ├── YYTextLine.m │ │ ├── YYTextMagnifier.h │ │ ├── YYTextMagnifier.m │ │ ├── YYTextSelectionView.h │ │ └── YYTextSelectionView.m │ ├── String │ │ ├── YYTextArchiver.h │ │ ├── YYTextArchiver.m │ │ ├── YYTextAttribute.h │ │ ├── YYTextAttribute.m │ │ ├── YYTextParser.h │ │ ├── YYTextParser.m │ │ ├── YYTextRubyAnnotation.h │ │ ├── YYTextRubyAnnotation.m │ │ ├── YYTextRunDelegate.h │ │ └── YYTextRunDelegate.m │ ├── Utility │ │ ├── NSAttributedString+YYText.h │ │ ├── NSAttributedString+YYText.m │ │ ├── NSParagraphStyle+YYText.h │ │ ├── NSParagraphStyle+YYText.m │ │ ├── UIPasteboard+YYText.h │ │ ├── UIPasteboard+YYText.m │ │ ├── UIView+YYText.h │ │ ├── UIView+YYText.m │ │ ├── YYTextAsyncLayer.h │ │ ├── YYTextAsyncLayer.m │ │ ├── YYTextTransaction.h │ │ ├── YYTextTransaction.m │ │ ├── YYTextUtilities.h │ │ ├── YYTextUtilities.m │ │ ├── YYTextWeakProxy.h │ │ └── YYTextWeakProxy.m │ ├── YYLabel.h │ ├── YYLabel.m │ ├── YYText.h │ ├── YYTextView.h │ └── YYTextView.m ├── aux_battery.png ├── battery_000.png ├── battery_100.png ├── battery_coppertops.png ├── battery_textbox.png ├── car.png ├── carimages │ ├── car_ampera_black.png │ ├── car_ampera_crystalred.png │ ├── car_ampera_cybergray.png │ ├── car_ampera_lithiumwhite.png │ ├── car_ampera_powerblue.png │ ├── car_ampera_silvertopas.png │ ├── car_ampera_sovereignsilver.png │ ├── car_ampera_summitwhite.png │ ├── car_default.png │ ├── car_env200_white.png │ ├── car_holdenvolt_black.png │ ├── car_holdenvolt_crystalclaret.png │ ├── car_holdenvolt_silvernitrate.png │ ├── car_holdenvolt_urbanfresh.png │ ├── car_holdenvolt_whitediamond.png │ ├── car_imiev_black.png │ ├── car_imiev_blue.png │ ├── car_imiev_cherrybrown.png │ ├── car_imiev_coolsilver.png │ ├── car_imiev_white.png │ ├── car_imiev_whitered.png │ ├── car_kianiro_aluminium_silver.png │ ├── car_kianiro_aurora_black.png │ ├── car_kianiro_clear_white.png │ ├── car_kianiro_graphite.png │ ├── car_kianiro_gravity_blue.png │ ├── car_kianiro_runway_red.png │ ├── car_kianiro_silky_silver.png │ ├── car_kianiro_snow_pearl.png │ ├── car_kiasoul_carribianblueclearwhite.png │ ├── car_kiasoul_cherryblackinfernored.png │ ├── car_kiasoul_clearwhite.png │ ├── car_kiasoul_pearlwhiteelectronicblue.png │ ├── car_kiasoul_titaniumsilver.png │ ├── car_kona_blue.png │ ├── car_kona_grey.png │ ├── car_kona_red.png │ ├── car_kona_white.png │ ├── car_kona_yellow.png │ ├── car_leaf_coulisred.png │ ├── car_leaf_deepblue.png │ ├── car_leaf_forgedbronze.png │ ├── car_leaf_gunmetallic.png │ ├── car_leaf_pearlwhite.png │ ├── car_leaf_superblack.png │ ├── car_maxus_edeliver3.png │ ├── car_mgzs_black.png │ ├── car_mgzs_blue.png │ ├── car_mgzs_lightblue.png │ ├── car_mgzs_red.png │ ├── car_mgzs_white.png │ ├── car_roadster_arcticwhite.png │ ├── car_roadster_brilliantyellow.png │ ├── car_roadster_electricblue.png │ ├── car_roadster_fushionred.png │ ├── car_roadster_glacierblue.png │ ├── car_roadster_jetblack.png │ ├── car_roadster_lightninggreen.png │ ├── car_roadster_obsidianblack.png │ ├── car_roadster_racinggreen.png │ ├── car_roadster_radiantred.png │ ├── car_roadster_sterlingsilver.png │ ├── car_roadster_thundergray.png │ ├── car_roadster_twilightblue.png │ ├── car_roadster_veryorange.png │ ├── car_smart_ed_white.png │ ├── car_smart_eq_black.png │ ├── car_smart_eq_red.png │ ├── car_smart_eq_white.png │ ├── car_teslas_black.png │ ├── car_teslas_blue.png │ ├── car_teslas_red.png │ ├── car_teslas_silver.png │ ├── car_teslas_white.png │ ├── car_teslax_black.png │ ├── car_teslax_blue.png │ ├── car_teslax_red.png │ ├── car_teslax_silver.png │ ├── car_teslax_white.png │ ├── car_thinkcity_brightred.png │ ├── car_thinkcity_citrusyellow.png │ ├── car_thinkcity_classicblack.png │ ├── car_thinkcity_skyblue.png │ ├── car_twizy_diamondblackwithivygreen.png │ ├── car_twizy_snowwhiteandflameorange.png │ ├── car_twizy_snowwhiteandurbanblue.png │ ├── car_twizy_snowwhitewithblack.png │ ├── car_vwup_black.png │ ├── car_vwup_blue.png │ ├── car_vwup_red.png │ ├── car_vwup_silver.png │ ├── car_vwup_white.png │ ├── car_vwup_yellow.png │ ├── car_zoe_black.png │ ├── car_zoe_brown.png │ ├── car_zoe_grey.png │ ├── car_zoe_hellblau.png │ ├── car_zoe_lila.png │ ├── car_zoe_red.png │ ├── car_zoe_white.png │ └── car_zoe_ytriumgrau.png ├── carlights.png ├── carlock.png ├── carlock_b.png ├── carmapimages │ ├── map_car_ampera_black.png │ ├── map_car_ampera_crystalred.png │ ├── map_car_ampera_cybergray.png │ ├── map_car_ampera_lithiumwhite.png │ ├── map_car_ampera_powerblue.png │ ├── map_car_ampera_silvertopas.png │ ├── map_car_ampera_sovereignsilver.png │ ├── map_car_ampera_summitwhite.png │ ├── map_car_default.png │ ├── map_car_env200_white.png │ ├── map_car_holdenvolt_black.png │ ├── map_car_holdenvolt_crystalclaret.png │ ├── map_car_holdenvolt_silvernitrate.png │ ├── map_car_holdenvolt_urbanfresh.png │ ├── map_car_holdenvolt_whitediamond.png │ ├── map_car_imiev_black.png │ ├── map_car_imiev_blue.png │ ├── map_car_imiev_cherrybrown.png │ ├── map_car_imiev_coolsilver.png │ ├── map_car_imiev_white.png │ ├── map_car_imiev_whitered.png │ ├── map_car_kianiro_aluminium_silver.png │ ├── map_car_kianiro_aurora_black.png │ ├── map_car_kianiro_clear_white.png │ ├── map_car_kianiro_graphite.png │ ├── map_car_kianiro_gravity_blue.png │ ├── map_car_kianiro_runway_red.png │ ├── map_car_kianiro_silky_silver.png │ ├── map_car_kianiro_snow_pearl.png │ ├── map_car_kiasoul_carribianblueclearwhite.png │ ├── map_car_kiasoul_cherryblackinfernored.png │ ├── map_car_kiasoul_clearwhite.png │ ├── map_car_kiasoul_pearlwhiteelectronicblue.png │ ├── map_car_kiasoul_titaniumsilver.png │ ├── map_car_kona_blue.png │ ├── map_car_kona_grey.png │ ├── map_car_kona_red.png │ ├── map_car_kona_white.png │ ├── map_car_kona_yellow.png │ ├── map_car_leaf_coulisred.png │ ├── map_car_leaf_deepblue.png │ ├── map_car_leaf_forgedbronze.png │ ├── map_car_leaf_gunmetallic.png │ ├── map_car_leaf_pearlwhite.png │ ├── map_car_leaf_superblack.png │ ├── map_car_maxus_edeliver3.png │ ├── map_car_mgzs_black.png │ ├── map_car_mgzs_blue.png │ ├── map_car_mgzs_lightblue.png │ ├── map_car_mgzs_red.png │ ├── map_car_mgzs_white.png │ ├── map_car_roadster_arcticwhite.png │ ├── map_car_roadster_brilliantyellow.png │ ├── map_car_roadster_electricblue.png │ ├── map_car_roadster_fushionred.png │ ├── map_car_roadster_glacierblue.png │ ├── map_car_roadster_jetblack.png │ ├── map_car_roadster_lightninggreen.png │ ├── map_car_roadster_obsidianblack.png │ ├── map_car_roadster_racinggreen.png │ ├── map_car_roadster_radiantred.png │ ├── map_car_roadster_sterlingsilver.png │ ├── map_car_roadster_thundergray.png │ ├── map_car_roadster_twilightblue.png │ ├── map_car_roadster_veryorange.png │ ├── map_car_smart_ed_white.png │ ├── map_car_smart_eq_black.png │ ├── map_car_smart_eq_red.png │ ├── map_car_smart_eq_white.png │ ├── map_car_teslas_black.png │ ├── map_car_teslas_blue.png │ ├── map_car_teslas_red.png │ ├── map_car_teslas_silver.png │ ├── map_car_teslas_white.png │ ├── map_car_teslax_black.png │ ├── map_car_teslax_blue.png │ ├── map_car_teslax_red.png │ ├── map_car_teslax_silver.png │ ├── map_car_teslax_white.png │ ├── map_car_thinkcity_brightred.png │ ├── map_car_thinkcity_citrusyellow.png │ ├── map_car_thinkcity_classicblack.png │ ├── map_car_thinkcity_skyblue.png │ ├── map_car_twizy_diamondblackwithivygreen.png │ ├── map_car_twizy_snowwhiteandflameorange.png │ ├── map_car_twizy_snowwhiteandurbanblue.png │ ├── map_car_twizy_snowwhitewithblack.png │ ├── map_car_vwup_black.png │ ├── map_car_vwup_blue.png │ ├── map_car_vwup_red.png │ ├── map_car_vwup_silver.png │ ├── map_car_vwup_white.png │ ├── map_car_vwup_yellow.png │ ├── map_car_zoe_black.png │ ├── map_car_zoe_brown.png │ ├── map_car_zoe_grey.png │ ├── map_car_zoe_hellblau.png │ ├── map_car_zoe_lila.png │ ├── map_car_zoe_red.png │ ├── map_car_zoe_white.png │ └── map_car_zoe_ytriumgrau.png ├── caroutlines │ ├── ol_car_ampera_black.png │ ├── ol_car_ampera_crystalred.png │ ├── ol_car_ampera_cybergray.png │ ├── ol_car_ampera_lithiumwhite.png │ ├── ol_car_ampera_powerblue.png │ ├── ol_car_ampera_silvertopas.png │ ├── ol_car_ampera_sovereignsilver.png │ ├── ol_car_ampera_summitwhite.png │ ├── ol_car_default.png │ ├── ol_car_env200_white.png │ ├── ol_car_holdenvolt_black.png │ ├── ol_car_holdenvolt_crystalclaret.png │ ├── ol_car_holdenvolt_silvernitrate.png │ ├── ol_car_holdenvolt_urbanfresh.png │ ├── ol_car_holdenvolt_whitediamond.png │ ├── ol_car_imiev_black.png │ ├── ol_car_imiev_blue.png │ ├── ol_car_imiev_cherrybrown.png │ ├── ol_car_imiev_coolsilver.png │ ├── ol_car_imiev_white.png │ ├── ol_car_imiev_whitered.png │ ├── ol_car_kianiro_aluminium_silver.png │ ├── ol_car_kianiro_aurora_black.png │ ├── ol_car_kianiro_clear_white.png │ ├── ol_car_kianiro_graphite.png │ ├── ol_car_kianiro_gravity_blue.png │ ├── ol_car_kianiro_runway_red.png │ ├── ol_car_kianiro_silky_silver.png │ ├── ol_car_kianiro_snow_pearl.png │ ├── ol_car_kiasoul_carribianblueclearwhite.png │ ├── ol_car_kiasoul_cherryblackinfernored.png │ ├── ol_car_kiasoul_clearwhite.png │ ├── ol_car_kiasoul_pearlwhiteelectronicblue.png │ ├── ol_car_kiasoul_titaniumsilver.png │ ├── ol_car_kona_blue.png │ ├── ol_car_kona_grey.png │ ├── ol_car_kona_red.png │ ├── ol_car_kona_white.png │ ├── ol_car_kona_yellow.png │ ├── ol_car_leaf_coulisred.png │ ├── ol_car_leaf_deepblue.png │ ├── ol_car_leaf_forgedbronze.png │ ├── ol_car_leaf_gunmetallic.png │ ├── ol_car_leaf_pearlwhite.png │ ├── ol_car_leaf_superblack.png │ ├── ol_car_maxus_edeliver3.png │ ├── ol_car_mgzs_black.png │ ├── ol_car_mgzs_blue.png │ ├── ol_car_mgzs_lightblue.png │ ├── ol_car_mgzs_red.png │ ├── ol_car_mgzs_white.png │ ├── ol_car_roadster_arcticwhite.png │ ├── ol_car_roadster_brilliantyellow.png │ ├── ol_car_roadster_electricblue.png │ ├── ol_car_roadster_fushionred.png │ ├── ol_car_roadster_glacierblue.png │ ├── ol_car_roadster_jetblack.png │ ├── ol_car_roadster_lightninggreen.png │ ├── ol_car_roadster_obsidianblack.png │ ├── ol_car_roadster_racinggreen.png │ ├── ol_car_roadster_radiantred.png │ ├── ol_car_roadster_sterlingsilver.png │ ├── ol_car_roadster_thundergray.png │ ├── ol_car_roadster_twilightblue.png │ ├── ol_car_roadster_veryorange.png │ ├── ol_car_smart_ed_white.png │ ├── ol_car_smart_eq_black.png │ ├── ol_car_smart_eq_red.png │ ├── ol_car_smart_eq_white.png │ ├── ol_car_teslas_black.png │ ├── ol_car_teslas_blue.png │ ├── ol_car_teslas_red.png │ ├── ol_car_teslas_silver.png │ ├── ol_car_teslas_white.png │ ├── ol_car_teslax_black.png │ ├── ol_car_teslax_blue.png │ ├── ol_car_teslax_red.png │ ├── ol_car_teslax_silver.png │ ├── ol_car_teslax_white.png │ ├── ol_car_thinkcity_brightred.png │ ├── ol_car_thinkcity_citrusyellow.png │ ├── ol_car_thinkcity_classicblack.png │ ├── ol_car_thinkcity_skyblue.png │ ├── ol_car_twizy_diamondblackwithivygreen.png │ ├── ol_car_twizy_snowwhiteandflameorange.png │ ├── ol_car_twizy_snowwhiteandurbanblue.png │ ├── ol_car_twizy_snowwhitewithblack.png │ ├── ol_car_vwup_black.png │ ├── ol_car_vwup_blue.png │ ├── ol_car_vwup_red.png │ ├── ol_car_vwup_silver.png │ ├── ol_car_vwup_white.png │ ├── ol_car_vwup_yellow.png │ ├── ol_car_zoe_black.png │ ├── ol_car_zoe_brown.png │ ├── ol_car_zoe_grey.png │ ├── ol_car_zoe_hellblau.png │ ├── ol_car_zoe_lila.png │ ├── ol_car_zoe_red.png │ ├── ol_car_zoe_white.png │ └── ol_car_zoe_ytriumgrau.png ├── carunlock.png ├── carunlock_b.png ├── carvaletoff.png ├── carvaletoff_b.png ├── carvaleton.png ├── carvaleton_b.png ├── charger_blank.png ├── charger_button.png ├── charger_plug.png ├── cluster.png ├── cluster@2x.png ├── connection_bad.png ├── connection_bad_paranoid.png ├── connection_good.png ├── connection_good_paranoid.png ├── connection_unknown.png ├── connection_unknown_paranoid.png ├── crypto.h ├── crypto_base64.c ├── crypto_base64.h ├── crypto_hmac.c ├── crypto_hmac.h ├── crypto_md5.c ├── crypto_md5.h ├── crypto_rc4.c ├── crypto_rc4.h ├── disclosure.png ├── en.lproj │ └── InfoPlist.strings ├── first.png ├── first@2x.png ├── geo_fence.png ├── high_battery.png ├── homelink-logo.png ├── ic_pin.png ├── ic_pin@2x.png ├── icon114x114.png ├── icon120x120.png ├── icon152x152.png ├── icon72x72.png ├── icon76x76.png ├── level0.png ├── level0@2x.png ├── level1.png ├── level1@2x.png ├── level3.png ├── level3@2x.png ├── main.m ├── message.png ├── motortemp_letterbox.png ├── notification_background.png ├── ol_car_imiev_charge.png ├── ol_car_imiev_charge_quick.png ├── ovms-Info.plist ├── ovmsAppDelegate.h ├── ovmsAppDelegate.m ├── ovmsBodyViewController.h ├── ovmsBodyViewController.m ├── ovmsCarsTableViewController.h ├── ovmsCarsTableViewController.m ├── ovmsChargerSettingsViewController.h ├── ovmsChargerSettingsViewController.m ├── ovmsControlCellularUsageView.html ├── ovmsControlCellularUsageViewController.h ├── ovmsControlCellularUsageViewController.m ├── ovmsControlFeaturesViewController.h ├── ovmsControlFeaturesViewController.m ├── ovmsControlPINEntry.h ├── ovmsControlPINEntry.m ├── ovmsControlParametersViewController.h ├── ovmsControlParametersViewController.m ├── ovmsControlUSSDEntry.h ├── ovmsControlUSSDEntry.m ├── ovmsControlViewController.h ├── ovmsControlViewController.m ├── ovmsLocationViewController.h ├── ovmsLocationViewController.m ├── ovmsMessage.h ├── ovmsMessage.m ├── ovmsMessagesViewController.h ├── ovmsMessagesViewController.m ├── ovmsStatusViewController.h ├── ovmsStatusViewController.m ├── ovmsStatusViewControllerPad.h ├── ovmsStatusViewControllerPad.m ├── ovmsVehicleInfo.h ├── ovmsVehicleInfo.m ├── ovms_splashscreen.png ├── parking.png ├── roadster_outline.png ├── roadster_outline_cd.png ├── roadster_outline_ce.png ├── roadster_outline_cp.png ├── roadster_outline_cs.png ├── roadster_outline_cu.png ├── roadster_outline_hd.png ├── roadster_outline_ld.png ├── roadster_outline_rd.png ├── roadster_outline_tr.png ├── second.png ├── second@2x.png ├── settings.png ├── signalbars-0.png ├── signalbars-1.png ├── signalbars-2.png ├── signalbars-3.png ├── signalbars-4.png ├── signalbars-5.png ├── teslapin.png ├── tirepress_letterbox.png └── wsymbol │ ├── wsymbol_113.png │ ├── wsymbol_116.png │ ├── wsymbol_119.png │ ├── wsymbol_122.png │ ├── wsymbol_143.png │ ├── wsymbol_176.png │ ├── wsymbol_179.png │ ├── wsymbol_182.png │ ├── wsymbol_185.png │ ├── wsymbol_200.png │ ├── wsymbol_227.png │ ├── wsymbol_230.png │ ├── wsymbol_248.png │ ├── wsymbol_260.png │ ├── wsymbol_263.png │ ├── wsymbol_266.png │ ├── wsymbol_281.png │ ├── wsymbol_284.png │ ├── wsymbol_293.png │ ├── wsymbol_296.png │ ├── wsymbol_299.png │ ├── wsymbol_302.png │ ├── wsymbol_305.png │ ├── wsymbol_308.png │ ├── wsymbol_311.png │ ├── wsymbol_314.png │ ├── wsymbol_317.png │ ├── wsymbol_320.png │ ├── wsymbol_323.png │ ├── wsymbol_326.png │ ├── wsymbol_329.png │ ├── wsymbol_332.png │ ├── wsymbol_335.png │ ├── wsymbol_338.png │ ├── wsymbol_350.png │ ├── wsymbol_353.png │ ├── wsymbol_356.png │ ├── wsymbol_359.png │ ├── wsymbol_362.png │ ├── wsymbol_365.png │ ├── wsymbol_368.png │ ├── wsymbol_371.png │ ├── wsymbol_374.png │ ├── wsymbol_377.png │ ├── wsymbol_386.png │ ├── wsymbol_389.png │ ├── wsymbol_392.png │ └── wsymbol_395.png ├── ovmsCarsFormViewController.h ├── ovmsCarsFormViewController.m ├── ovmsGroupsTableViewController.h └── ovmsGroupsTableViewController.m /OpenVehicleApp/Cars.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /OpenVehicleApp/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/Default-568h@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /OpenVehicleApp/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /OpenVehicleApp/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/Default.png -------------------------------------------------------------------------------- /OpenVehicleApp/Model.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | Model.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /OpenVehicleApp/Open Vehicle.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | aps-environment 6 | development 7 | 8 | 9 | -------------------------------------------------------------------------------- /OpenVehicleApp/Open Vehicle.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /OpenVehicleApp/Open Vehicle.xcodeproj/project.xcworkspace/xcuserdata/goev.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/Open Vehicle.xcodeproj/project.xcworkspace/xcuserdata/goev.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /OpenVehicleApp/Open Vehicle.xcodeproj/project.xcworkspace/xcuserdata/jlab13.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HasAskedToTakeAutomaticSnapshotBeforeSignificantChanges 6 | 7 | SnapshotAutomaticallyBeforeSignificantChanges 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /OpenVehicleApp/Open Vehicle.xcodeproj/project.xcworkspace/xcuserdata/mark.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/Open Vehicle.xcodeproj/project.xcworkspace/xcuserdata/mark.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /OpenVehicleApp/Open Vehicle.xcodeproj/project.xcworkspace/xcuserdata/mark.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HasAskedToTakeAutomaticSnapshotBeforeSignificantChanges 6 | 7 | SnapshotAutomaticallyBeforeSignificantChanges 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /OpenVehicleApp/Open Vehicle.xcodeproj/xcuserdata/hq.mark.johnson.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | Open Vehicle.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /OpenVehicleApp/Open Vehicle.xcodeproj/xcuserdata/jlab13.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /OpenVehicleApp/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/193-location-arrow-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/193-location-arrow-white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/193-location-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/193-location-arrow.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/20-gear2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/20-gear2.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/49-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/49-battery.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/51-outlet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/51-outlet.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/54-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/54-lock.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/74-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/74-location.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/77-ekg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/77-ekg.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/81-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/81-dashboard.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_120-1.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_120.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_152.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_167.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_180.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_20.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_29.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_40-1.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_40-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_40-2.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_40.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_58-1.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_58.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_60.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_80-1.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_80.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/OVMS_logo_87.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/icon76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/icon76x76.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/ovms_appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/AppIcon.appiconset/ovms_appstore.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/LaunchImage.launchimage/Default-Landscape~ipad-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/LaunchImage.launchimage/Default-Landscape~ipad-2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/LaunchImage.launchimage/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/LaunchImage.launchimage/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/LaunchImage.launchimage/Default-Portrait~ipad-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/LaunchImage.launchimage/Default-Portrait~ipad-2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/LaunchImage.launchimage/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/LaunchImage.launchimage/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingFull.imageset/ModernBubbleIncomingFull@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingFull.imageset/ModernBubbleIncomingFull@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingFull.imageset/ModernBubbleIncomingFullPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingFull.imageset/ModernBubbleIncomingFullPad.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingFull.imageset/ModernBubbleIncomingFullPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingFull.imageset/ModernBubbleIncomingFullPad@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingFullHL.imageset/ModernBubbleIncomingFullHighlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingFullHL.imageset/ModernBubbleIncomingFullHighlighted@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingFullHL.imageset/ModernBubbleIncomingFullHighlightedPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingFullHL.imageset/ModernBubbleIncomingFullHighlightedPad.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingFullHL.imageset/ModernBubbleIncomingFullHighlightedPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingFullHL.imageset/ModernBubbleIncomingFullHighlightedPad@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingPartial.imageset/ModernBubbleIncomingPartial@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingPartial.imageset/ModernBubbleIncomingPartial@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingPartial.imageset/ModernBubbleIncomingPartialPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingPartial.imageset/ModernBubbleIncomingPartialPad.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingPartial.imageset/ModernBubbleIncomingPartialPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingPartial.imageset/ModernBubbleIncomingPartialPad@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingPartialHL.imageset/ModernBubbleIncomingPartialHighlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingPartialHL.imageset/ModernBubbleIncomingPartialHighlighted@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingPartialHL.imageset/ModernBubbleIncomingPartialHighlightedPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingPartialHL.imageset/ModernBubbleIncomingPartialHighlightedPad.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingPartialHL.imageset/ModernBubbleIncomingPartialHighlightedPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleIncomingPartialHL.imageset/ModernBubbleIncomingPartialHighlightedPad@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingFull.imageset/ModernBubbleOutgoingFull@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingFull.imageset/ModernBubbleOutgoingFull@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingFull.imageset/ModernBubbleOutgoingFullHighlightedPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingFull.imageset/ModernBubbleOutgoingFullHighlightedPad.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingFull.imageset/ModernBubbleOutgoingFullHighlightedPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingFull.imageset/ModernBubbleOutgoingFullHighlightedPad@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingFullHL.imageset/ModernBubbleOutgoingFullHighlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingFullHL.imageset/ModernBubbleOutgoingFullHighlighted@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingFullHL.imageset/ModernBubbleOutgoingFullPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingFullHL.imageset/ModernBubbleOutgoingFullPad.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingFullHL.imageset/ModernBubbleOutgoingFullPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingFullHL.imageset/ModernBubbleOutgoingFullPad@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingPartial.imageset/ModernBubbleOutgoingPartial@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingPartial.imageset/ModernBubbleOutgoingPartial@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingPartial.imageset/ModernBubbleOutgoingPartialPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingPartial.imageset/ModernBubbleOutgoingPartialPad.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingPartial.imageset/ModernBubbleOutgoingPartialPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingPartial.imageset/ModernBubbleOutgoingPartialPad@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingPartialHL.imageset/ModernBubbleOutgoingPartialHighlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingPartialHL.imageset/ModernBubbleOutgoingPartialHighlighted@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingPartialHL.imageset/ModernBubbleOutgoingPartialHighlightedPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingPartialHL.imageset/ModernBubbleOutgoingPartialHighlightedPad.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingPartialHL.imageset/ModernBubbleOutgoingPartialHighlightedPad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Bubble/OvmsBubbleOutgoingPartialHL.imageset/ModernBubbleOutgoingPartialHighlightedPad@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGrayFrame.imageset/ClockIncomingFrame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGrayFrame.imageset/ClockIncomingFrame@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGrayFrame.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ClockIncomingFrame@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGrayHour.imageset/ClockIncomingHour@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGrayHour.imageset/ClockIncomingHour@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGrayHour.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ClockIncomingHour@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGrayMin.imageset/ClockIncomingMin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGrayMin.imageset/ClockIncomingMin@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGrayMin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ClockIncomingMin@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGreenFrame.imageset/ClockFrame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGreenFrame.imageset/ClockFrame@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGreenFrame.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ClockFrame@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGreenHour.imageset/ClockHour@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGreenHour.imageset/ClockHour@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGreenHour.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ClockHour@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGreenMin.imageset/ClockMin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGreenMin.imageset/ClockMin@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockGreenMin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ClockMin@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockWhiteFrame.imageset/ClockWhiteFrame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockWhiteFrame.imageset/ClockWhiteFrame@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockWhiteFrame.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ClockWhiteFrame@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockWhiteHour.imageset/ClockWhiteHour@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockWhiteHour.imageset/ClockWhiteHour@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockWhiteHour.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ClockWhiteHour@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockWhiteMin.imageset/ClockWhiteMin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockWhiteMin.imageset/ClockWhiteMin@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Clock/OvmsClockWhiteMin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ClockWhiteMin@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/Icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Icon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/Icon.imageset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/Icon.imageset/Icon.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon114x114.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon114x114.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon114x114.imageset/icon114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon114x114.imageset/icon114x114.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon120x120.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon120x120.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon120x120.imageset/icon120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon120x120.imageset/icon120x120.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon152x152.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon152x152.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon152x152.imageset/icon152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon152x152.imageset/icon152x152.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon72x72.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon72x72.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon72x72.imageset/icon72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon72x72.imageset/icon72x72.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon76x76.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon76x76.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon76x76.imageset/icon76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Icons/icon76x76.imageset/icon76x76.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsAttachButton.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ModernConversationAttach.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ModernConversationAttach@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsAttachButton.imageset/ModernConversationAttach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsAttachButton.imageset/ModernConversationAttach.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsAttachButton.imageset/ModernConversationAttach@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsAttachButton.imageset/ModernConversationAttach@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsInputFieldBackground.imageset/ModernConversationInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsInputFieldBackground.imageset/ModernConversationInput.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsInputFieldBackground.imageset/ModernConversationInput@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsInputFieldBackground.imageset/ModernConversationInput@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsMicButton.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ModernConversationMicButton.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ModernConversationMicButton@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | }, 22 | "properties" : { 23 | "template-rendering-intent" : "original" 24 | } 25 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsMicButton.imageset/ModernConversationMicButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsMicButton.imageset/ModernConversationMicButton.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsMicButton.imageset/ModernConversationMicButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Input/OvmsMicButton.imageset/ModernConversationMicButton@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmark1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ModernMessageCheckmark1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ModernMessageCheckmark1@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmark1.imageset/ModernMessageCheckmark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmark1.imageset/ModernMessageCheckmark1.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmark1.imageset/ModernMessageCheckmark1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmark1.imageset/ModernMessageCheckmark1@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmark2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ModernMessageCheckmark2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "ModernMessageCheckmark2@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmark2.imageset/ModernMessageCheckmark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmark2.imageset/ModernMessageCheckmark2.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmark2.imageset/ModernMessageCheckmark2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmark2.imageset/ModernMessageCheckmark2@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmarkMedia1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ModernMessageCheckmarkMedia1@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmarkMedia1.imageset/ModernMessageCheckmarkMedia1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmarkMedia1.imageset/ModernMessageCheckmarkMedia1@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmarkMedia2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ModernMessageCheckmarkMedia2@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmarkMedia2.imageset/ModernMessageCheckmarkMedia2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageCheckmarkMedia2.imageset/ModernMessageCheckmarkMedia2@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageUnsentButton.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ModernMessageUnsentButton@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageUnsentButton.imageset/ModernMessageUnsentButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Status/OvmsMessageUnsentButton.imageset/ModernMessageUnsentButton@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/User Info/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/User Info/TGUserInfo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "TGUserInfo.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/User Info/TGUserInfo.imageset/TGUserInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/User Info/TGUserInfo.imageset/TGUserInfo.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Wallpaper/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Wallpaper/OvmsWallpaper.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "builtin-wallpaper-0.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Assets.xcassets/ovms/Wallpaper/OvmsWallpaper.imageset/builtin-wallpaper-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Assets.xcassets/ovms/Wallpaper/OvmsWallpaper.imageset/builtin-wallpaper-0.jpg -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/CRTableViewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // CRTableViewCell.h 3 | // CRMultiRowSelector 4 | // 5 | // Created by Christian Roman on 6/17/12. 6 | // Copyright (c) 2012 chroman. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface CRTableViewCell : UITableViewCell 12 | 13 | @property (nonatomic, assign) BOOL isSelected; 14 | @property (nonatomic, readonly, strong) UILabel *textLabel; 15 | @property (nonatomic, readonly, strong) UIImageView *imageView; 16 | @property (nonatomic, readonly, strong) UIImage *renderedMark; 17 | 18 | @end -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/ChargingAnnotation.h: -------------------------------------------------------------------------------- 1 | // 2 | // ChargingPin.h 3 | // OpenChargeMap 4 | // 5 | // Created by JLab13 on 2/21/13. 6 | // Copyright (c) 2013 JLab13. All rights reserved. 7 | // 8 | 9 | #import "REVClusterPin.h" 10 | #import "EntityName.h" 11 | 12 | @interface ChargingAnnotation : REVClusterPin 13 | 14 | @property (nonatomic, assign) NSInteger level; 15 | @property (nonatomic, copy) NSString *uuid; 16 | 17 | + (id)pinWithChargingLocation:(ChargingLocation*)location; 18 | - (id)initWithChargingLocation:(ChargingLocation*)location; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/ConnectionTypesController.h: -------------------------------------------------------------------------------- 1 | // 2 | // CRTableViewController.h 3 | // CRMultiRowSelector 4 | // 5 | // Created by JLab13 on 3/01/13. 6 | // Copyright (c) 2013 JLab13. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "Cars.h" 11 | 12 | @interface ConnectionTypesController : UITableViewController 13 | 14 | //@property (nonatomic, strong) NSString *connectionTypeIds; 15 | 16 | //@property (nonatomic, strong) id target; 17 | //@property (nonatomic, unsafe_unretained) SEL action; 18 | @property (strong, nonatomic) NSString *carEditingId; 19 | 20 | 21 | @end -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Default-568h@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/EntityName.m: -------------------------------------------------------------------------------- 1 | // 2 | // EntityName.m 3 | // OpenChargeMap 4 | // 5 | // Created by JLab13 on 2/20/13. 6 | // Copyright (c) 2013 JLab13. All rights reserved. 7 | // 8 | 9 | #import "EntityName.h" 10 | 11 | NSString *const ENAddressInfo = @"AddressInfo"; 12 | NSString *const ENChargingLocation = @"ChargingLocation"; 13 | NSString *const ENConnection = @"Connection"; 14 | NSString *const ENOperatorInfo = @"OperatorInfo"; 15 | NSString *const ENCars = @"Cars"; 16 | NSString *const ENConnectionTypes = @"ConnectionTypes"; 17 | NSString *const ENChargerTypes = @"ChargerTypes"; 18 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Entitys/AddressInfo.m: -------------------------------------------------------------------------------- 1 | // 2 | // AddressInfo.m 3 | // Open Vehicle 4 | // 5 | // Created by JLab13 on 3/1/13. 6 | // Copyright (c) 2013 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import "AddressInfo.h" 10 | 11 | 12 | @implementation AddressInfo 13 | 14 | @dynamic access_comments; 15 | @dynamic address_line1; 16 | @dynamic contact_telephone1; 17 | @dynamic country_iso_code; 18 | @dynamic country_title; 19 | @dynamic id; 20 | @dynamic latitude; 21 | @dynamic longitude; 22 | @dynamic postcode; 23 | @dynamic related_url; 24 | @dynamic state_or_province; 25 | @dynamic title; 26 | @dynamic town; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Entitys/Cars.m: -------------------------------------------------------------------------------- 1 | // 2 | // Cars.m 3 | // Open Vehicle 4 | // 5 | // Created by JLab13 on 3/1/13. 6 | // Copyright (c) 2013 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import "Cars.h" 10 | 11 | 12 | @implementation Cars 13 | 14 | @dynamic imagepath; 15 | @dynamic label; 16 | @dynamic netpass; 17 | @dynamic userpass; 18 | @dynamic vehicleid; 19 | @dynamic connection_type_ids; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Entitys/ChargerTypes.h: -------------------------------------------------------------------------------- 1 | // 2 | // ChargerTypes.h 3 | // Open Vehicle 4 | // 5 | // Created by JLab13 on 3/1/13. 6 | // Copyright (c) 2013 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | 13 | @interface ChargerTypes : NSManagedObject 14 | 15 | @property (nonatomic, retain) NSString * comments; 16 | @property (nonatomic, retain) NSNumber * id; 17 | @property (nonatomic, retain) NSNumber * is_fast_charge_capable; 18 | @property (nonatomic, retain) NSString * title; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Entitys/ChargerTypes.m: -------------------------------------------------------------------------------- 1 | // 2 | // ChargerTypes.m 3 | // Open Vehicle 4 | // 5 | // Created by JLab13 on 3/1/13. 6 | // Copyright (c) 2013 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import "ChargerTypes.h" 10 | 11 | 12 | @implementation ChargerTypes 13 | 14 | @dynamic comments; 15 | @dynamic id; 16 | @dynamic is_fast_charge_capable; 17 | @dynamic title; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Entitys/Connection.m: -------------------------------------------------------------------------------- 1 | // 2 | // Connection.m 3 | // Open Vehicle 4 | // 5 | // Created by JLab13 on 3/1/13. 6 | // Copyright (c) 2013 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import "Connection.h" 10 | #import "ChargerTypes.h" 11 | #import "ConnectionTypes.h" 12 | 13 | 14 | @implementation Connection 15 | 16 | @dynamic amps; 17 | @dynamic comments; 18 | @dynamic id; 19 | @dynamic power_kw; 20 | @dynamic quantity; 21 | @dynamic reference; 22 | @dynamic status_is_operational; 23 | @dynamic status_title; 24 | @dynamic voltage; 25 | @dynamic level; 26 | @dynamic connection_type; 27 | 28 | @end 29 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Entitys/ConnectionTypes.h: -------------------------------------------------------------------------------- 1 | // 2 | // ConnectionTypes.h 3 | // Open Vehicle 4 | // 5 | // Created by JLab13 on 3/1/13. 6 | // Copyright (c) 2013 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | 13 | @interface ConnectionTypes : NSManagedObject 14 | 15 | @property (nonatomic, retain) NSString * formal_name; 16 | @property (nonatomic, retain) NSNumber * id; 17 | @property (nonatomic, retain) NSNumber * is_discontinued; 18 | @property (nonatomic, retain) NSNumber * is_obsolete; 19 | @property (nonatomic, retain) NSString * title; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Entitys/ConnectionTypes.m: -------------------------------------------------------------------------------- 1 | // 2 | // ConnectionTypes.m 3 | // Open Vehicle 4 | // 5 | // Created by JLab13 on 3/1/13. 6 | // Copyright (c) 2013 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import "ConnectionTypes.h" 10 | 11 | 12 | @implementation ConnectionTypes 13 | 14 | @dynamic formal_name; 15 | @dynamic id; 16 | @dynamic is_discontinued; 17 | @dynamic is_obsolete; 18 | @dynamic title; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Entitys/OperatorInfo.m: -------------------------------------------------------------------------------- 1 | // 2 | // OperatorInfo.m 3 | // Open Vehicle 4 | // 5 | // Created by JLab13 on 3/1/13. 6 | // Copyright (c) 2013 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import "OperatorInfo.h" 10 | 11 | 12 | @implementation OperatorInfo 13 | 14 | @dynamic address_info; 15 | @dynamic booking_url; 16 | @dynamic comments; 17 | @dynamic contact_email; 18 | @dynamic fault_report_email; 19 | @dynamic id; 20 | @dynamic is_private_individual; 21 | @dynamic phone_primary_contact; 22 | @dynamic phone_secondary_contact; 23 | @dynamic title; 24 | @dynamic website_url; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Entitys/aux_battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Entitys/aux_battery.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Icon.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/NoChat/ovmsBaseMessageCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ovmsBaseMessageCell.h 3 | // Open Vehicle 4 | // 5 | // Created by Mark Webb-Johnson on 25/1/2019. 6 | // Copyright © 2019 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #ifndef ovmsBaseMessageCell_h 10 | #define ovmsBaseMessageCell_h 11 | 12 | #import "NoChat.h" 13 | 14 | @interface OvmsBaseMessageCell : NOCChatItemCell 15 | 16 | @property (nonatomic, strong) UIView *bubbleView; 17 | 18 | @property (nonatomic, assign, getter=isHighlight) BOOL hightlight; 19 | 20 | @end 21 | 22 | #endif /* ovmsBaseMessageCell_h */ 23 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/NoChat/ovmsChat.m: -------------------------------------------------------------------------------- 1 | // 2 | // ovmsChat.m 3 | // Open Vehicle 4 | // 5 | // Created by Mark Webb-Johnson on 25/1/2019. 6 | // Copyright © 2019 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "ovmsChat.h" 11 | 12 | @implementation OvmsChat 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/NoChat/ovmsClockProgressView.h: -------------------------------------------------------------------------------- 1 | // 2 | // ovmsClockProgressView.h 3 | // Open Vehicle 4 | // 5 | // Created by Mark Webb-Johnson on 25/1/2019. 6 | // Copyright © 2019 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #ifndef ovmsClockProgressView_h 10 | #define ovmsClockProgressView_h 11 | 12 | #import 13 | 14 | @interface OvmsClockProgressView : UIView 15 | 16 | - (void)startAnimating; 17 | - (void)stopAnimating; 18 | 19 | @end 20 | 21 | #endif /* ovmsClockProgressView_h */ 22 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/NoChat/ovmsClockProgressView.m: -------------------------------------------------------------------------------- 1 | // 2 | // ovmsClockProgressView.m 3 | // Open Vehicle 4 | // 5 | // Created by Mark Webb-Johnson on 25/1/2019. 6 | // Copyright © 2019 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "ovmsClockProgressView.h" 11 | 12 | @implementation OvmsClockProgressView 13 | 14 | - (void)startAnimating 15 | { 16 | 17 | } 18 | 19 | - (void)stopAnimating 20 | { 21 | 22 | } 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Nothing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/Nothing.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/OCMInformationController.h: -------------------------------------------------------------------------------- 1 | // 2 | // OCMInformationController.h 3 | // Open Vehicle 4 | // 5 | // Created by JLab13 on 3/7/13. 6 | // Copyright (c) 2013 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface OCMInformationController : UITableViewController 13 | 14 | @property (nonatomic, strong) NSString *locationUUID; 15 | @property (nonatomic, assign) CLLocationCoordinate2D from; 16 | @property (nonatomic, assign) CLLocationCoordinate2D to; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/Open Vehicle-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ovms' target in the 'ovms' project 3 | // 4 | 5 | #import 6 | 7 | #ifndef __IPHONE_5_0 8 | #warning "This project uses features only available in iOS SDK 5.0 and later." 9 | #endif 10 | 11 | #ifdef __OBJC__ 12 | #import 13 | #import 14 | #import 15 | #endif 16 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/PopoverView/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/PopoverView/error.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/PopoverView/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/PopoverView/error@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/PopoverView/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/PopoverView/success.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/PopoverView/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/PopoverView/success@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/REVClusterMap/REVClusterAnnotationView.h: -------------------------------------------------------------------------------- 1 | // 2 | // 3 | // ___ _____ ______ __ _ _________ 4 | // / _ \/ __/ | / / __ \/ /| | / / __/ _ \ 5 | // / , _/ _/ | |/ / /_/ / /_| |/ / _// , _/ 6 | // /_/|_/___/ |___/\____/____/___/___/_/|_| 7 | // 8 | // Created by Bart Claessens. bart (at) revolver . be 9 | // 10 | 11 | #import 12 | #import 13 | 14 | @interface REVClusterAnnotationView : MKAnnotationView { 15 | UILabel *label; 16 | } 17 | - (void) setClusterText:(NSString *)text; 18 | @property (nonatomic, readonly) CLLocationCoordinate2D coordinate; 19 | @end 20 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/REVClusterMap/REVClusterMap.h: -------------------------------------------------------------------------------- 1 | // 2 | // 3 | // ___ _____ ______ __ _ _________ 4 | // / _ \/ __/ | / / __ \/ /| | / / __/ _ \ 5 | // / , _/ _/ | |/ / /_/ / /_| |/ / _// , _/ 6 | // /_/|_/___/ |___/\____/____/___/___/_/|_| 7 | // 8 | // Created by Bart Claessens. bart (at) revolver . be 9 | // 10 | 11 | #import 12 | #import 13 | #import "REVClusterMapView.h" 14 | #import "REVAnnotationsCollection.h" 15 | #import "REVClusterManager.h" 16 | #import "REVClusterBlock.h" 17 | #import "REVClusterPin.h" 18 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/aux_battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/aux_battery.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/battery_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/battery_000.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/battery_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/battery_100.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/battery_coppertops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/battery_coppertops.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/battery_textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/battery_textbox.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/car.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_ampera_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_ampera_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_ampera_crystalred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_ampera_crystalred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_ampera_cybergray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_ampera_cybergray.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_ampera_lithiumwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_ampera_lithiumwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_ampera_powerblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_ampera_powerblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_ampera_silvertopas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_ampera_silvertopas.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_ampera_sovereignsilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_ampera_sovereignsilver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_ampera_summitwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_ampera_summitwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_default.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_env200_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_env200_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_holdenvolt_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_holdenvolt_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_holdenvolt_crystalclaret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_holdenvolt_crystalclaret.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_holdenvolt_silvernitrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_holdenvolt_silvernitrate.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_holdenvolt_urbanfresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_holdenvolt_urbanfresh.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_holdenvolt_whitediamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_holdenvolt_whitediamond.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_imiev_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_imiev_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_imiev_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_imiev_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_imiev_cherrybrown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_imiev_cherrybrown.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_imiev_coolsilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_imiev_coolsilver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_imiev_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_imiev_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_imiev_whitered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_imiev_whitered.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kianiro_aluminium_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kianiro_aluminium_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kianiro_aurora_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kianiro_aurora_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kianiro_clear_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kianiro_clear_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kianiro_graphite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kianiro_graphite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kianiro_gravity_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kianiro_gravity_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kianiro_runway_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kianiro_runway_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kianiro_silky_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kianiro_silky_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kianiro_snow_pearl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kianiro_snow_pearl.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kiasoul_carribianblueclearwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kiasoul_carribianblueclearwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kiasoul_cherryblackinfernored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kiasoul_cherryblackinfernored.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kiasoul_clearwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kiasoul_clearwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kiasoul_pearlwhiteelectronicblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kiasoul_pearlwhiteelectronicblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kiasoul_titaniumsilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kiasoul_titaniumsilver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kona_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kona_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kona_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kona_grey.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kona_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kona_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kona_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kona_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_kona_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_kona_yellow.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_leaf_coulisred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_leaf_coulisred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_leaf_deepblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_leaf_deepblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_leaf_forgedbronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_leaf_forgedbronze.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_leaf_gunmetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_leaf_gunmetallic.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_leaf_pearlwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_leaf_pearlwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_leaf_superblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_leaf_superblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_maxus_edeliver3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_maxus_edeliver3.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_mgzs_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_mgzs_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_mgzs_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_mgzs_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_mgzs_lightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_mgzs_lightblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_mgzs_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_mgzs_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_mgzs_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_mgzs_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_arcticwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_arcticwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_brilliantyellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_brilliantyellow.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_electricblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_electricblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_fushionred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_fushionred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_glacierblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_glacierblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_jetblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_jetblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_lightninggreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_lightninggreen.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_obsidianblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_obsidianblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_racinggreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_racinggreen.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_radiantred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_radiantred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_sterlingsilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_sterlingsilver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_thundergray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_thundergray.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_twilightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_twilightblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_roadster_veryorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_roadster_veryorange.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_smart_ed_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_smart_ed_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_smart_eq_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_smart_eq_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_smart_eq_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_smart_eq_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_smart_eq_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_smart_eq_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_teslas_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_teslas_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_teslas_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_teslas_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_teslas_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_teslas_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_teslas_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_teslas_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_teslas_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_teslas_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_teslax_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_teslax_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_teslax_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_teslax_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_teslax_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_teslax_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_teslax_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_teslax_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_teslax_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_teslax_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_thinkcity_brightred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_thinkcity_brightred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_thinkcity_citrusyellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_thinkcity_citrusyellow.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_thinkcity_classicblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_thinkcity_classicblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_thinkcity_skyblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_thinkcity_skyblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_twizy_diamondblackwithivygreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_twizy_diamondblackwithivygreen.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_twizy_snowwhiteandflameorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_twizy_snowwhiteandflameorange.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_twizy_snowwhiteandurbanblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_twizy_snowwhiteandurbanblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_twizy_snowwhitewithblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_twizy_snowwhitewithblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_vwup_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_vwup_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_vwup_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_vwup_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_vwup_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_vwup_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_vwup_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_vwup_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_vwup_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_vwup_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_vwup_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_vwup_yellow.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_zoe_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_zoe_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_zoe_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_zoe_brown.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_zoe_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_zoe_grey.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_zoe_hellblau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_zoe_hellblau.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_zoe_lila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_zoe_lila.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_zoe_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_zoe_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_zoe_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_zoe_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carimages/car_zoe_ytriumgrau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carimages/car_zoe_ytriumgrau.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carlights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carlights.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carlock.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carlock_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carlock_b.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_ampera_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_ampera_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_ampera_crystalred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_ampera_crystalred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_ampera_cybergray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_ampera_cybergray.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_ampera_lithiumwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_ampera_lithiumwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_ampera_powerblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_ampera_powerblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_ampera_silvertopas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_ampera_silvertopas.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_ampera_sovereignsilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_ampera_sovereignsilver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_ampera_summitwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_ampera_summitwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_default.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_env200_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_env200_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_holdenvolt_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_holdenvolt_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_holdenvolt_crystalclaret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_holdenvolt_crystalclaret.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_holdenvolt_silvernitrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_holdenvolt_silvernitrate.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_holdenvolt_urbanfresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_holdenvolt_urbanfresh.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_holdenvolt_whitediamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_holdenvolt_whitediamond.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_imiev_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_imiev_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_imiev_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_imiev_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_imiev_cherrybrown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_imiev_cherrybrown.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_imiev_coolsilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_imiev_coolsilver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_imiev_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_imiev_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_imiev_whitered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_imiev_whitered.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kianiro_aluminium_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kianiro_aluminium_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kianiro_aurora_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kianiro_aurora_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kianiro_clear_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kianiro_clear_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kianiro_graphite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kianiro_graphite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kianiro_gravity_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kianiro_gravity_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kianiro_runway_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kianiro_runway_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kianiro_silky_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kianiro_silky_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kianiro_snow_pearl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kianiro_snow_pearl.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kiasoul_carribianblueclearwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kiasoul_carribianblueclearwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kiasoul_cherryblackinfernored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kiasoul_cherryblackinfernored.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kiasoul_clearwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kiasoul_clearwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kiasoul_pearlwhiteelectronicblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kiasoul_pearlwhiteelectronicblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kiasoul_titaniumsilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kiasoul_titaniumsilver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kona_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kona_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kona_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kona_grey.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kona_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kona_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kona_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kona_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_kona_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_kona_yellow.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_leaf_coulisred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_leaf_coulisred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_leaf_deepblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_leaf_deepblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_leaf_forgedbronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_leaf_forgedbronze.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_leaf_gunmetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_leaf_gunmetallic.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_leaf_pearlwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_leaf_pearlwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_leaf_superblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_leaf_superblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_maxus_edeliver3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_maxus_edeliver3.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_mgzs_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_mgzs_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_mgzs_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_mgzs_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_mgzs_lightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_mgzs_lightblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_mgzs_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_mgzs_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_mgzs_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_mgzs_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_arcticwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_arcticwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_brilliantyellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_brilliantyellow.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_electricblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_electricblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_fushionred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_fushionred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_glacierblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_glacierblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_jetblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_jetblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_lightninggreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_lightninggreen.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_obsidianblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_obsidianblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_racinggreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_racinggreen.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_radiantred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_radiantred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_sterlingsilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_sterlingsilver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_thundergray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_thundergray.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_twilightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_twilightblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_roadster_veryorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_roadster_veryorange.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_smart_ed_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_smart_ed_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_smart_eq_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_smart_eq_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_smart_eq_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_smart_eq_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_smart_eq_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_smart_eq_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_teslas_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_teslas_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_teslas_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_teslas_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_teslas_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_teslas_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_teslas_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_teslas_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_teslas_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_teslas_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_teslax_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_teslax_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_teslax_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_teslax_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_teslax_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_teslax_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_teslax_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_teslax_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_teslax_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_teslax_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_thinkcity_brightred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_thinkcity_brightred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_thinkcity_citrusyellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_thinkcity_citrusyellow.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_thinkcity_classicblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_thinkcity_classicblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_thinkcity_skyblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_thinkcity_skyblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_twizy_diamondblackwithivygreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_twizy_diamondblackwithivygreen.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_twizy_snowwhiteandflameorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_twizy_snowwhiteandflameorange.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_twizy_snowwhiteandurbanblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_twizy_snowwhiteandurbanblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_twizy_snowwhitewithblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_twizy_snowwhitewithblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_vwup_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_vwup_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_vwup_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_vwup_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_vwup_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_vwup_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_vwup_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_vwup_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_vwup_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_vwup_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_vwup_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_vwup_yellow.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_zoe_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_zoe_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_zoe_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_zoe_brown.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_zoe_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_zoe_grey.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_zoe_hellblau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_zoe_hellblau.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_zoe_lila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_zoe_lila.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_zoe_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_zoe_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_zoe_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_zoe_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carmapimages/map_car_zoe_ytriumgrau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carmapimages/map_car_zoe_ytriumgrau.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_ampera_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_ampera_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_ampera_crystalred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_ampera_crystalred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_ampera_cybergray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_ampera_cybergray.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_ampera_lithiumwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_ampera_lithiumwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_ampera_powerblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_ampera_powerblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_ampera_silvertopas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_ampera_silvertopas.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_ampera_sovereignsilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_ampera_sovereignsilver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_ampera_summitwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_ampera_summitwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_default.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_env200_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_env200_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_holdenvolt_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_holdenvolt_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_holdenvolt_crystalclaret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_holdenvolt_crystalclaret.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_holdenvolt_silvernitrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_holdenvolt_silvernitrate.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_holdenvolt_urbanfresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_holdenvolt_urbanfresh.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_holdenvolt_whitediamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_holdenvolt_whitediamond.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_imiev_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_imiev_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_imiev_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_imiev_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_imiev_cherrybrown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_imiev_cherrybrown.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_imiev_coolsilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_imiev_coolsilver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_imiev_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_imiev_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_imiev_whitered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_imiev_whitered.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_aluminium_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_aluminium_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_aurora_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_aurora_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_clear_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_clear_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_graphite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_graphite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_gravity_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_gravity_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_runway_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_runway_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_silky_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_silky_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_snow_pearl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kianiro_snow_pearl.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kiasoul_carribianblueclearwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kiasoul_carribianblueclearwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kiasoul_cherryblackinfernored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kiasoul_cherryblackinfernored.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kiasoul_clearwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kiasoul_clearwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kiasoul_pearlwhiteelectronicblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kiasoul_pearlwhiteelectronicblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kiasoul_titaniumsilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kiasoul_titaniumsilver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kona_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kona_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kona_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kona_grey.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kona_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kona_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kona_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kona_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_kona_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_kona_yellow.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_leaf_coulisred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_leaf_coulisred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_leaf_deepblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_leaf_deepblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_leaf_forgedbronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_leaf_forgedbronze.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_leaf_gunmetallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_leaf_gunmetallic.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_leaf_pearlwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_leaf_pearlwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_leaf_superblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_leaf_superblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_maxus_edeliver3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_maxus_edeliver3.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_mgzs_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_mgzs_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_mgzs_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_mgzs_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_mgzs_lightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_mgzs_lightblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_mgzs_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_mgzs_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_mgzs_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_mgzs_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_arcticwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_arcticwhite.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_brilliantyellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_brilliantyellow.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_electricblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_electricblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_fushionred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_fushionred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_glacierblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_glacierblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_jetblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_jetblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_lightninggreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_lightninggreen.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_obsidianblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_obsidianblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_racinggreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_racinggreen.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_radiantred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_radiantred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_sterlingsilver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_sterlingsilver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_thundergray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_thundergray.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_twilightblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_twilightblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_roadster_veryorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_roadster_veryorange.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_smart_ed_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_smart_ed_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_smart_eq_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_smart_eq_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_smart_eq_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_smart_eq_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_smart_eq_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_smart_eq_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_teslas_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_teslas_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_teslas_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_teslas_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_teslas_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_teslas_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_teslas_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_teslas_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_teslas_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_teslas_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_teslax_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_teslax_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_teslax_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_teslax_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_teslax_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_teslax_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_teslax_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_teslax_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_teslax_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_teslax_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_thinkcity_brightred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_thinkcity_brightred.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_thinkcity_citrusyellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_thinkcity_citrusyellow.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_thinkcity_classicblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_thinkcity_classicblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_thinkcity_skyblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_thinkcity_skyblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_twizy_diamondblackwithivygreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_twizy_diamondblackwithivygreen.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_twizy_snowwhiteandflameorange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_twizy_snowwhiteandflameorange.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_twizy_snowwhiteandurbanblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_twizy_snowwhiteandurbanblue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_twizy_snowwhitewithblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_twizy_snowwhitewithblack.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_vwup_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_vwup_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_vwup_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_vwup_blue.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_vwup_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_vwup_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_vwup_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_vwup_silver.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_vwup_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_vwup_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_vwup_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_vwup_yellow.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_zoe_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_zoe_black.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_zoe_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_zoe_brown.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_zoe_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_zoe_grey.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_zoe_hellblau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_zoe_hellblau.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_zoe_lila.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_zoe_lila.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_zoe_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_zoe_red.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_zoe_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_zoe_white.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/caroutlines/ol_car_zoe_ytriumgrau.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/caroutlines/ol_car_zoe_ytriumgrau.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carunlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carunlock.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carunlock_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carunlock_b.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carvaletoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carvaletoff.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carvaletoff_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carvaletoff_b.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carvaleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carvaleton.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/carvaleton_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/carvaleton_b.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/charger_blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/charger_blank.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/charger_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/charger_button.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/charger_plug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/charger_plug.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/cluster.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/cluster@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/cluster@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/connection_bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/connection_bad.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/connection_bad_paranoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/connection_bad_paranoid.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/connection_good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/connection_good.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/connection_good_paranoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/connection_good_paranoid.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/connection_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/connection_unknown.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/connection_unknown_paranoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/connection_unknown_paranoid.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/disclosure.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/first.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/first@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/first@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/geo_fence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/geo_fence.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/high_battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/high_battery.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/homelink-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/homelink-logo.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/ic_pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/ic_pin.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/ic_pin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/ic_pin@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/icon114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/icon114x114.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/icon120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/icon120x120.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/icon152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/icon152x152.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/icon72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/icon72x72.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/icon76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/icon76x76.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/level0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/level0.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/level0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/level0@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/level1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/level1.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/level1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/level1@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/level3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/level3.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/level3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/level3@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // ovms 4 | // 5 | // Created by Mark Webb-Johnson on 16/11/11. 6 | // Copyright (c) 2011 Hong Hay Villa. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "ovmsAppDelegate.h" 12 | 13 | int main(int argc, char *argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([ovmsAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/message.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/motortemp_letterbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/motortemp_letterbox.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/notification_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/notification_background.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/ol_car_imiev_charge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/ol_car_imiev_charge.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/ol_car_imiev_charge_quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/ol_car_imiev_charge_quick.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/ovmsCarsTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ovmsCarsTableViewController.h 3 | // ovms 4 | // 5 | // Created by Mark Webb-Johnson on 23/11/11. 6 | // Copyright (c) 2011 Hong Hay Villa. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "ovmsAppDelegate.h" 11 | 12 | @interface ovmsCarsTableViewController : UITableViewController { 13 | NSArray *_cars; 14 | NSManagedObjectContext *_context; 15 | } 16 | 17 | @property (nonatomic, retain) NSArray *cars; 18 | @property (nonatomic, retain) NSManagedObjectContext *context; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/ovmsControlUSSDEntry.h: -------------------------------------------------------------------------------- 1 | // 2 | // ovmsControlUSSDEntry.h 3 | // Open Vehicle 4 | // 5 | // Created by Mark Webb-Johnson on 13/5/12. 6 | // Copyright (c) 2012 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "ovmsAppDelegate.h" 11 | 12 | @interface ovmsControlUSSDEntry : UIViewController 13 | 14 | @property (strong, nonatomic) IBOutlet UITextField *m_ussd; 15 | 16 | - (IBAction)Send:(id)sender; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/ovmsMessage.m: -------------------------------------------------------------------------------- 1 | // 2 | // ovmsMessage.m 3 | // Open Vehicle 4 | // 5 | // Created by Mark Webb-Johnson on 25/1/2019. 6 | // Copyright © 2019 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import "ovmsMessage.h" 10 | 11 | @implementation OvmsMessage 12 | 13 | - (instancetype)init 14 | { 15 | self = [super init]; 16 | if (self) { 17 | _msgId = [NSUUID new].UUIDString; 18 | _type = @"Text"; 19 | _date = [NSDate date]; 20 | } 21 | return self; 22 | } 23 | 24 | - (NSString *)uniqueIdentifier 25 | { 26 | return self.msgId; 27 | } 28 | 29 | @end 30 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/ovmsMessagesViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ovmsMessagesViewController.h 3 | // Open Vehicle 4 | // 5 | // Created by Mark Webb-Johnson on 15/1/2019. 6 | // Copyright © 2019 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #ifndef ovmsMessagesViewController_h 10 | #define ovmsMessagesViewController_h 11 | 12 | #import 13 | #import "ovmsAppDelegate.h" 14 | #import "NoChat/NoChat.h" 15 | 16 | @interface ovmsMessagesViewController : NOCChatViewController 17 | 18 | @end 19 | 20 | #endif /* ovmsMessagesViewController_h */ 21 | -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/ovms_splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/ovms_splashscreen.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/parking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/parking.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/roadster_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/roadster_outline.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/roadster_outline_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/roadster_outline_cd.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/roadster_outline_ce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/roadster_outline_ce.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/roadster_outline_cp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/roadster_outline_cp.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/roadster_outline_cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/roadster_outline_cs.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/roadster_outline_cu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/roadster_outline_cu.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/roadster_outline_hd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/roadster_outline_hd.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/roadster_outline_ld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/roadster_outline_ld.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/roadster_outline_rd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/roadster_outline_rd.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/roadster_outline_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/roadster_outline_tr.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/second.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/second@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/second@2x.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/settings.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/signalbars-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/signalbars-0.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/signalbars-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/signalbars-1.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/signalbars-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/signalbars-2.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/signalbars-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/signalbars-3.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/signalbars-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/signalbars-4.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/signalbars-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/signalbars-5.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/teslapin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/teslapin.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/tirepress_letterbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/tirepress_letterbox.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_113.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_116.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_119.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_122.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_143.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_176.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_179.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_182.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_185.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_200.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_227.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_230.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_248.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_260.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_260.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_263.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_266.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_266.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_281.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_281.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_284.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_284.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_293.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_293.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_296.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_299.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_299.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_302.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_302.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_305.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_305.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_308.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_308.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_311.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_311.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_314.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_317.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_317.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_320.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_323.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_323.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_326.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_326.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_329.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_329.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_332.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_332.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_335.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_335.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_338.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_338.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_350.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_350.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_353.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_353.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_356.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_356.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_359.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_359.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_362.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_362.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_365.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_368.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_368.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_371.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_371.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_374.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_374.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_377.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_377.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_386.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_386.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_389.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_389.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_392.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_392.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovms/wsymbol/wsymbol_395.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openvehicles/Open-Vehicle-iOS/edbc4c01159e9fd753ec6827f8c1affac59f4b62/OpenVehicleApp/ovms/wsymbol/wsymbol_395.png -------------------------------------------------------------------------------- /OpenVehicleApp/ovmsGroupsTableViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ovmsGroupsTableViewController.h 3 | // Open Vehicle 4 | // 5 | // Created by Mark Webb-Johnson on 16/4/12. 6 | // Copyright (c) 2012 Open Vehicle Systems. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "ovmsAppDelegate.h" 11 | 12 | @interface ovmsGroupsTableViewController : UITableViewController 13 | { 14 | } 15 | 16 | @property (strong, nonatomic) NSMutableArray* locationGroups; 17 | @property (assign) int editing_insertrow; 18 | 19 | - (IBAction)done:(id)sender; 20 | - (IBAction)endedit:(id)sender; 21 | - (IBAction)endswitchedit:(id)sender; 22 | 23 | @end 24 | --------------------------------------------------------------------------------