├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── PostItNoteRacing.JSExtensions ├── Post-It-Note-Racing_extensions.js └── PostItNoteRacing.JSExtensions.esproj ├── PostItNoteRacing.Plugin ├── Common │ ├── Converters │ │ ├── BooleanToVisibilityConverter.cs │ │ └── EnumDescriptionTypeConverter.cs │ ├── DialogService.cs │ ├── DisposableObject.cs │ ├── Extensions │ │ ├── EnumBindingSourceExtension.cs │ │ ├── EnumerableExtensions.cs │ │ └── ListExtensions.cs │ ├── FixedSizeObservableCollection.cs │ ├── Interfaces │ │ └── IDialogService.cs │ ├── RelayCommand.cs │ ├── Utilities │ │ └── PerformanceMonitor.cs │ └── ViewModels │ │ ├── InteractiveViewModel.cs │ │ ├── NavigableViewModel.cs │ │ └── ViewModelBase.cs ├── EventArgs │ ├── BestLapChangedEventArgs.cs │ └── NotifyDataUpdatedEventArgs.cs ├── Extensions │ └── EnumerableExtensions.cs ├── GlobalSuppressions.cs ├── Interfaces │ ├── IModifySimHub.cs │ ├── INotifyBestLapChanged.cs │ └── IProvideSettings.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── MainPageResources.xaml ├── Models │ ├── IntegerProperty.cs │ ├── ReferenceLap.cs │ ├── SimHubAction.cs │ ├── Telemetry.cs │ └── Utility.cs ├── PostItNoteRacing.Plugin.csproj ├── PostItNoteRacing.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ └── MenuIcon.png ├── Telemetry │ ├── CarClass.cs │ ├── Colors.cs │ ├── Driver.cs │ ├── Entity.cs │ ├── Game.cs │ ├── Lap.cs │ ├── License.cs │ ├── MiniSector.cs │ ├── Player.cs │ ├── Session.cs │ └── Team.cs ├── ViewModels │ ├── BooleanPropertyViewModel.cs │ ├── FooterViewModel.cs │ ├── IntegerPropertyViewModel.cs │ ├── MainPageViewModel.cs │ ├── PropertyViewModel.cs │ ├── SettingsViewModel.cs │ ├── SimHubViewModel.cs │ ├── TelemetryViewModel.cs │ └── UtilityViewModel.cs ├── Views │ ├── FooterView.xaml │ ├── FooterView.xaml.cs │ ├── TelemetryView.xaml │ ├── TelemetryView.xaml.cs │ ├── UtilityView.xaml │ └── UtilityView.xaml.cs └── packages.config ├── PostItNoteRacing.sln └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/LICENSE -------------------------------------------------------------------------------- /PostItNoteRacing.JSExtensions/Post-It-Note-Racing_extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.JSExtensions/Post-It-Note-Racing_extensions.js -------------------------------------------------------------------------------- /PostItNoteRacing.JSExtensions/PostItNoteRacing.JSExtensions.esproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.JSExtensions/PostItNoteRacing.JSExtensions.esproj -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/Converters/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/Converters/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/Converters/EnumDescriptionTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/Converters/EnumDescriptionTypeConverter.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/DialogService.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/DisposableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/DisposableObject.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/Extensions/EnumBindingSourceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/Extensions/EnumBindingSourceExtension.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/Extensions/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/Extensions/ListExtensions.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/FixedSizeObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/FixedSizeObservableCollection.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/Interfaces/IDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/Interfaces/IDialogService.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/RelayCommand.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/Utilities/PerformanceMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/Utilities/PerformanceMonitor.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/ViewModels/InteractiveViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/ViewModels/InteractiveViewModel.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/ViewModels/NavigableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/ViewModels/NavigableViewModel.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Common/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Common/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/EventArgs/BestLapChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/EventArgs/BestLapChangedEventArgs.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/EventArgs/NotifyDataUpdatedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/EventArgs/NotifyDataUpdatedEventArgs.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/GlobalSuppressions.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Interfaces/IModifySimHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Interfaces/IModifySimHub.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Interfaces/INotifyBestLapChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Interfaces/INotifyBestLapChanged.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Interfaces/IProvideSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Interfaces/IProvideSettings.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/MainPage.xaml -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/MainPage.xaml.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/MainPageResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/MainPageResources.xaml -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Models/IntegerProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Models/IntegerProperty.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Models/ReferenceLap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Models/ReferenceLap.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Models/SimHubAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Models/SimHubAction.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Models/Telemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Models/Telemetry.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Models/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Models/Utility.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/PostItNoteRacing.Plugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/PostItNoteRacing.Plugin.csproj -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/PostItNoteRacing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/PostItNoteRacing.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Properties/Resources.resx -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Resources/MenuIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Resources/MenuIcon.png -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Telemetry/CarClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Telemetry/CarClass.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Telemetry/Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Telemetry/Colors.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Telemetry/Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Telemetry/Driver.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Telemetry/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Telemetry/Entity.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Telemetry/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Telemetry/Game.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Telemetry/Lap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Telemetry/Lap.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Telemetry/License.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Telemetry/License.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Telemetry/MiniSector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Telemetry/MiniSector.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Telemetry/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Telemetry/Player.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Telemetry/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Telemetry/Session.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Telemetry/Team.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Telemetry/Team.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/ViewModels/BooleanPropertyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/ViewModels/BooleanPropertyViewModel.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/ViewModels/FooterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/ViewModels/FooterViewModel.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/ViewModels/IntegerPropertyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/ViewModels/IntegerPropertyViewModel.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/ViewModels/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/ViewModels/MainPageViewModel.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/ViewModels/PropertyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/ViewModels/PropertyViewModel.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/ViewModels/SimHubViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/ViewModels/SimHubViewModel.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/ViewModels/TelemetryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/ViewModels/TelemetryViewModel.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/ViewModels/UtilityViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/ViewModels/UtilityViewModel.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Views/FooterView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Views/FooterView.xaml -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Views/FooterView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Views/FooterView.xaml.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Views/TelemetryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Views/TelemetryView.xaml -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Views/TelemetryView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Views/TelemetryView.xaml.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Views/UtilityView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Views/UtilityView.xaml -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/Views/UtilityView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/Views/UtilityView.xaml.cs -------------------------------------------------------------------------------- /PostItNoteRacing.Plugin/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.Plugin/packages.config -------------------------------------------------------------------------------- /PostItNoteRacing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/PostItNoteRacing.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derrickmoeller/PostItNoteRacing/HEAD/README.md --------------------------------------------------------------------------------