├── .gitattributes ├── .gitignore ├── LICENSE ├── MTConnect-Sniffer ├── MTConnect-Sniffer.csproj ├── MTConnect-Sniffer.nuspec ├── MTConnect-Sniffer.sln ├── MTConnectDevice.cs ├── PingQueue.cs ├── Properties │ └── AssemblyInfo.cs ├── Sniffer.cs ├── nuget.exe └── packages.config ├── MTConnect.NET ├── Clients │ ├── Asset.cs │ ├── Current.cs │ ├── MTConnectClient.cs │ ├── Probe.cs │ ├── Sample.cs │ ├── SampleRange.cs │ └── Stream.cs ├── ConditionValue.cs ├── DataItemCategory.cs ├── Delegates.cs ├── Headers │ ├── MTConnectAssestsHeader.cs │ ├── MTConnectDevicesHeader.cs │ ├── MTConnectErrorHeader.cs │ └── MTConnectStreamsHeader.cs ├── MTConnect.NET.csproj ├── MTConnect.NET.sln ├── MTConnectAssets │ ├── Asset.cs │ ├── CuttingTools │ │ ├── CutterStatus.cs │ │ ├── CuttingItem.cs │ │ ├── CuttingTool.cs │ │ ├── CuttingToolLifeCycle.cs │ │ ├── Description.cs │ │ ├── ItemLife.cs │ │ ├── Location.cs │ │ ├── LocationType.cs │ │ ├── Measurement.cs │ │ ├── ProcessFeedrate.cs │ │ ├── ProcessSpindleSpeed.cs │ │ ├── ReconditionCount.cs │ │ ├── ToolLife.cs │ │ ├── ToolLifeCountDirection.cs │ │ └── ToolLifeType.cs │ └── Document.cs ├── MTConnectDevices │ ├── Component.cs │ ├── ComponentCollection.cs │ ├── Constraints.cs │ ├── DataItem.cs │ ├── Description.cs │ ├── Device.cs │ ├── Document.cs │ ├── Filter.cs │ └── Source.cs ├── MTConnectError │ ├── Document.cs │ ├── Error.cs │ └── ErrorCode.cs ├── MTConnectStreams │ ├── ComponentStream.cs │ ├── Condition.cs │ ├── DataItem.cs │ ├── DataItemCollection.cs │ ├── DeviceStream.cs │ ├── Document.cs │ ├── Event.cs │ └── Sample.cs ├── Namespaces.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── EventTypes.xml ├── Types │ ├── ConditionTypes.xml │ ├── Conditions.cs │ ├── EventTypes.xml │ ├── Events.cs │ ├── SampleTypes.xml │ └── Samples.cs ├── Version.cs ├── app.config ├── nuget.exe └── packages.config ├── README.md ├── Server-Login ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── TrakHound.ico │ └── blank_profile_01_sm.png └── Server-Login.csproj ├── TrakHound-Community.sln ├── TrakHound-Dashboard ├── App.config ├── App.xaml ├── App.xaml.cs ├── Controls │ ├── Developer Console │ │ ├── PopUp.xaml │ │ └── PopUp.xaml.cs │ ├── MenuItem.xaml │ ├── MenuItem.xaml.cs │ ├── Message Center │ │ ├── Message.xaml │ │ ├── Message.xaml.cs │ │ ├── MessageCenter.xaml │ │ ├── MessageCenter.xaml.cs │ │ ├── MessageData.cs │ │ └── Notifications │ │ │ ├── Exception.cs │ │ │ ├── Notification_Item.xaml │ │ │ └── Notification_Item.xaml.cs │ ├── Page.xaml │ ├── Page.xaml.cs │ ├── PageManager.xaml │ ├── PageManager.xaml.cs │ ├── TabHeader.xaml │ └── TabHeader.xaml.cs ├── DeviceComparisonTypes.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MainWindow │ ├── Default Messages.cs │ ├── Developer Console.cs │ ├── Devices.cs │ ├── Message Center.cs │ ├── Navigation Menu.cs │ ├── Pages.cs │ ├── Plugins.cs │ ├── Report Bug.cs │ ├── Server Management.cs │ ├── Splash Screen.cs │ └── Window.cs ├── NLog.config ├── Pages │ ├── About │ │ ├── Information │ │ │ ├── Information_01.png │ │ │ ├── Page.xaml │ │ │ └── Page.xaml.cs │ │ └── License │ │ │ ├── Key_01.png │ │ │ ├── Key_02.png │ │ │ ├── Key_03.png │ │ │ ├── Page.xaml │ │ │ └── Page.xaml.cs │ ├── Account │ │ ├── Countries.cs │ │ ├── MyAccountPage.xaml │ │ ├── MyAccountPage.xaml.cs │ │ └── States.cs │ ├── Dashboard │ │ ├── ControllerStatus │ │ │ ├── ControllerStatus.xaml │ │ │ ├── ControllerStatus.xaml.cs │ │ │ └── Controls │ │ │ │ ├── Row.xaml │ │ │ │ └── Row.xaml.cs │ │ ├── Dashboard.xaml │ │ ├── Dashboard.xaml.cs │ │ ├── DeviceStatusTimes │ │ │ ├── Controls │ │ │ │ ├── Row.xaml │ │ │ │ └── Row.xaml.cs │ │ │ ├── StatusTimes.xaml │ │ │ └── StatusTimes.xaml.cs │ │ ├── Footprint │ │ │ ├── Controls │ │ │ │ ├── DeviceItem.xaml │ │ │ │ ├── DeviceItem.xaml.cs │ │ │ │ ├── ListItem.xaml │ │ │ │ ├── ListItem.xaml.cs │ │ │ │ ├── MoveThumb.cs │ │ │ │ └── ResizeThumb.cs │ │ │ ├── Footprint.xaml │ │ │ └── Footprint.xaml.cs │ │ ├── OeeHourTimeline │ │ │ ├── Controls │ │ │ │ ├── Row.xaml │ │ │ │ ├── Row.xaml.cs │ │ │ │ ├── Segment.xaml │ │ │ │ └── Segment.xaml.cs │ │ │ ├── HourData.cs │ │ │ ├── OeeStatusTimeline.xaml │ │ │ └── OeeStatusTimeline.xaml.cs │ │ ├── OeeStatus │ │ │ ├── Controls │ │ │ │ ├── Row.xaml │ │ │ │ └── Row.xaml.cs │ │ │ ├── OeeStatus.xaml │ │ │ └── OeeStatus.xaml.cs │ │ ├── OverrideStatus │ │ │ ├── Controls │ │ │ │ ├── Row.xaml │ │ │ │ └── Row.xaml.cs │ │ │ ├── Plugin.cs │ │ │ ├── StatusTimes.xaml │ │ │ ├── StatusTimes.xaml.cs │ │ │ └── Update Data.cs │ │ ├── Overview │ │ │ ├── Controls │ │ │ │ ├── Column.xaml │ │ │ │ └── Column.xaml.cs │ │ │ ├── Overview.xaml │ │ │ └── Overview.xaml.cs │ │ ├── ProductionStatus │ │ │ ├── Controls │ │ │ │ ├── Row.xaml │ │ │ │ └── Row.xaml.cs │ │ │ ├── ProductionStatus.xaml │ │ │ └── ProductionStatus.xaml.cs │ │ ├── ProductionStatusTimes │ │ │ ├── Controls │ │ │ │ ├── Row.xaml │ │ │ │ └── Row.xaml.cs │ │ │ ├── StatusTimes.xaml │ │ │ └── StatusTimes.xaml.cs │ │ ├── ShopStatus1 │ │ │ ├── Controls │ │ │ │ ├── DeviceItem.xaml │ │ │ │ ├── DeviceItem.xaml.cs │ │ │ │ ├── ListItem.xaml │ │ │ │ ├── ListItem.xaml.cs │ │ │ │ ├── MoveThumb.cs │ │ │ │ └── ResizeThumb.cs │ │ │ ├── ShopStatus.xaml │ │ │ └── ShopStatus.xaml.cs │ │ ├── StatusData │ │ │ ├── OptionsPage.xaml │ │ │ ├── OptionsPage.xaml.cs │ │ │ └── StatusData.cs │ │ └── StatusGrid │ │ │ ├── Controls │ │ │ ├── Item.xaml │ │ │ └── Item.xaml.cs │ │ │ ├── StatusGrid.xaml │ │ │ └── StatusGrid.xaml.cs │ ├── DeviceDetails │ │ ├── Controls │ │ │ ├── HourSegment.xaml │ │ │ ├── HourSegment.xaml.cs │ │ │ ├── HourTimeline.xaml │ │ │ └── HourTimeline.xaml.cs │ │ ├── HourData.cs │ │ ├── Page.xaml │ │ ├── Page.xaml.cs │ │ └── Plugin.cs │ ├── DeviceManager │ │ ├── AddDevice │ │ │ ├── DeviceInfo.cs │ │ │ ├── Page.xaml │ │ │ ├── Page.xaml.cs │ │ │ └── Pages │ │ │ │ ├── AutoDetect.xaml │ │ │ │ ├── AutoDetect.xaml.cs │ │ │ │ ├── LoadFromFile.xaml │ │ │ │ ├── LoadFromFile.xaml.cs │ │ │ │ ├── Manual.xaml │ │ │ │ └── Manual.xaml.cs │ │ ├── Controls │ │ │ └── DataGrid Controls.cs │ │ ├── DeviceList.xaml │ │ ├── DeviceList.xaml.cs │ │ ├── DeviceListItem.cs │ │ ├── EditPage.xaml │ │ ├── EditPage.xaml.cs │ │ ├── GeneratedEvents.xml │ │ ├── Global.cs │ │ └── Pages │ │ │ ├── Cycles │ │ │ ├── Controls │ │ │ │ ├── OverrideLinkItem.xaml │ │ │ │ ├── OverrideLinkItem.xaml.cs │ │ │ │ ├── ProductionTypeItem.xaml │ │ │ │ └── ProductionTypeItem.xaml.cs │ │ │ ├── Info.cs │ │ │ ├── Page.xaml │ │ │ └── Page.xaml.cs │ │ │ ├── Description │ │ │ ├── Info.cs │ │ │ ├── Page.xaml │ │ │ └── Page.xaml.cs │ │ │ ├── GeneratedEvents │ │ │ ├── Controls │ │ │ │ ├── CaptureItem.xaml │ │ │ │ ├── CaptureItem.xaml.cs │ │ │ │ ├── Default.xaml │ │ │ │ ├── Default.xaml.cs │ │ │ │ ├── Event.xaml │ │ │ │ ├── Event.xaml.cs │ │ │ │ ├── EventButton.xaml │ │ │ │ ├── EventButton.xaml.cs │ │ │ │ ├── MultiTrigger.xaml │ │ │ │ ├── MultiTrigger.xaml.cs │ │ │ │ ├── Trigger.xaml │ │ │ │ ├── Trigger.xaml.cs │ │ │ │ ├── Value.xaml │ │ │ │ └── Value.xaml.cs │ │ │ ├── Info.cs │ │ │ ├── Page.xaml │ │ │ └── Page.xaml.cs │ │ │ ├── MTConnect │ │ │ ├── Controls │ │ │ │ ├── MessageItem.xaml │ │ │ │ └── MessageItem.xaml.cs │ │ │ ├── Info.cs │ │ │ ├── Page.xaml │ │ │ └── Page.xaml.cs │ │ │ ├── Parts │ │ │ ├── Controls │ │ │ │ ├── PartCountEventItem.xaml │ │ │ │ └── PartCountEventItem.xaml.cs │ │ │ ├── Info.cs │ │ │ ├── Page.xaml │ │ │ └── Page.xaml.cs │ │ │ └── SnapshotData │ │ │ ├── Controls │ │ │ ├── SnapshotItem.xaml │ │ │ └── SnapshotItem.xaml.cs │ │ │ ├── Info.cs │ │ │ ├── Page.xaml │ │ │ └── Page.xaml.cs │ └── Options │ │ ├── API │ │ ├── Page.xaml │ │ └── Page.xaml.cs │ │ ├── General │ │ ├── Page.xaml │ │ └── Page.xaml.cs │ │ ├── Logger │ │ ├── Page.xaml │ │ └── Page.xaml.cs │ │ └── Updates │ │ ├── Page.xaml │ │ ├── Page.xaml.cs │ │ ├── UpdateItem.xaml │ │ └── UpdateItem.xaml.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── About_01.png │ ├── Active_01.png │ ├── Active_01_100px.png │ ├── AddUser_01.png │ ├── Add_01.png │ ├── Analyse_01.png │ ├── Arrow_Down_01.png │ ├── Arrow_Up_01.png │ ├── Auto_01.png │ ├── Back_01.png │ ├── Bell_01.png │ ├── BlockSkip_01.png │ ├── Block_01.png │ ├── Bug_01.png │ ├── Camera_01.png │ ├── Carrot_Arrow_Down_01.png │ ├── Carrot_Arrow_Up_01.png │ ├── CheckMark_01.png │ ├── Cloud_01.png │ ├── Copy_01.png │ ├── Cycle_01.png │ ├── Dashboard_01.png │ ├── Dashboard_Splash_02.jpg │ ├── DatabaseConfig_01.png │ ├── Developer_01.png │ ├── Disk_01.png │ ├── DryRun_01.png │ ├── Edit_01.png │ ├── Edit_02.png │ ├── Envelope_01.png │ ├── Error_01.png │ ├── Estop_02.png │ ├── Expand_01.png │ ├── Footprint_01.png │ ├── Forward_01.png │ ├── FullScreen_02_30px.png │ ├── Generate_01.png │ ├── Grid_01.png │ ├── Group_01.png │ ├── Help_01.png │ ├── Home_02.png │ ├── Hourglass_01.png │ ├── Hourglass_01_100px.png │ ├── Jog_01.png │ ├── Lab_01.png │ ├── List_01.png │ ├── Lock_01.png │ ├── MDI_01.png │ ├── MTConnect_01.png │ ├── MachineLock_01.png │ ├── Manual_01.png │ ├── Menu_01.png │ ├── Minus_04.png │ ├── Oee_Percent_03.png │ ├── Off_01.png │ ├── Off_01_25px.png │ ├── On_01.png │ ├── On_01_25px.png │ ├── Options_01.png │ ├── Outline_01.png │ ├── Pause_01.png │ ├── Pause_02.png │ ├── Plug_01.png │ ├── Plus_04.png │ ├── Power_01.png │ ├── Power_01_100px.png │ ├── Power_01_200px.png │ ├── Production_Percentage_01.png │ ├── Refresh_01.png │ ├── Rocket_02.png │ ├── Root.png │ ├── Search_01.png │ ├── Send_01.png │ ├── Share_01.png │ ├── SingleBlock_01.png │ ├── Start_01.png │ ├── Start_02.png │ ├── Status_Percentage_01.png │ ├── Stop_01.png │ ├── Stop_02.png │ ├── Table_01.png │ ├── Time_Status_01.png │ ├── Timer_01.png │ ├── TrakHound_Logo_10.png │ ├── TrakHound_Logo_10_150px_White.png │ ├── TrakHound_Logo_10_40px_Wide_White.png │ ├── TrakHound_Logo_Initials_10.ico │ ├── TrakHound_Logo_Initials_10_30px.png │ ├── Update_01.png │ ├── Update_02_100px.png │ ├── Warning_01.png │ ├── Warning_01_100px.png │ ├── Warning_01_200px.png │ ├── X_01.png │ ├── blank_profile_01.png │ ├── blank_profile_01_sm.png │ ├── github_01.png │ ├── gplv3-127x51.png │ └── sqlite_logo.png ├── TrakHound-Dashboard.csproj ├── User │ ├── Login.cs │ ├── Logout.cs │ ├── ProfileImage.cs │ └── Users.cs ├── Windows │ ├── Fullscreen.xaml │ ├── Fullscreen.xaml.cs │ ├── Splash.xaml │ ├── Splash.xaml.cs │ ├── UpdateNotification.xaml │ └── UpdateNotification.xaml.cs └── packages.config ├── TrakHound-Server ├── App.config ├── Header.txt ├── NLog.config ├── Plugins │ ├── Cycles │ │ ├── Configuration.cs │ │ ├── CycleData.cs │ │ ├── CycleProductionType.cs │ │ ├── Cycles.cs │ │ └── Override.cs │ ├── GeneratedEvents │ │ ├── Components │ │ │ ├── CaptureItem.cs │ │ │ ├── Event.cs │ │ │ ├── MultiTrigger.cs │ │ │ ├── Return.cs │ │ │ ├── Trigger.cs │ │ │ └── Value.cs │ │ ├── Configuration.cs │ │ ├── GeneratedEvent.cs │ │ ├── Plugin.cs │ │ └── Tools.cs │ ├── Instances │ │ ├── Instance.cs │ │ ├── Plugin.cs │ │ └── Processing.cs │ ├── MTConnectData │ │ ├── AgentData.cs │ │ ├── Plugin.cs │ │ └── Requests.cs │ ├── OEE │ │ ├── Configuration.cs │ │ ├── OEE.cs │ │ └── OEEData.cs │ ├── Overrides │ │ ├── Configuration.cs │ │ ├── Override.cs │ │ └── Plugin.cs │ ├── Parts │ │ ├── Configuration.cs │ │ ├── PartInfo.cs │ │ └── Plugin.cs │ ├── SnapshotData │ │ ├── Configuration.cs │ │ ├── Plugin.cs │ │ └── Snapshot.cs │ ├── Status │ │ ├── Plugin.cs │ │ └── StatusInfo.cs │ └── TrakHoundCloud │ │ ├── Plugin.cs │ │ └── UpdateQueue.cs ├── Program.cs ├── ProjectInstaller.Designer.cs ├── ProjectInstaller.cs ├── ProjectInstaller.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Settings.Designer.cs │ └── Settings.settings ├── Service1.Designer.cs ├── Service1.cs ├── TrakHound-Server.csproj └── packages.config ├── TrakHound-UI ├── All.xaml ├── Controls │ ├── Button.xaml │ ├── Button.xaml.cs │ ├── CollapseButton.xaml │ ├── CollapseButton.xaml.cs │ ├── Histogram │ │ ├── Histogram.xaml │ │ ├── Histogram.xaml.cs │ │ ├── Label.xaml │ │ └── Label.xaml.cs │ ├── ImageBox.xaml │ ├── ImageBox.xaml.cs │ ├── ImageDisplay.xaml │ ├── ImageDisplay.xaml.cs │ ├── LevelIndicator │ │ ├── BetterSegment.cs │ │ ├── Indicator.xaml │ │ ├── Indicator.xaml.cs │ │ ├── Segment.xaml │ │ └── Segment.xaml.cs │ ├── ListButton.xaml │ ├── ListButton.xaml.cs │ ├── MeterDisplay.xaml │ ├── MeterDisplay.xaml.cs │ ├── NumberDisplay.xaml │ ├── NumberDisplay.xaml.cs │ ├── PasswordBox.xaml │ ├── PasswordBox.xaml.cs │ ├── PieChart.xaml │ ├── PieChart.xaml.cs │ ├── ProgressBar.xaml │ ├── ProgressBar.xaml.cs │ ├── Spinner.xaml │ ├── Spinner.xaml.cs │ ├── TextBox.xaml │ ├── TextBox.xaml.cs │ ├── TimeDisplay.xaml │ ├── TimeDisplay.xaml.cs │ ├── TimeProgress.xaml │ ├── TimeProgress.xaml.cs │ ├── TimeSlider.xaml │ ├── TimeSlider.xaml.cs │ └── Timeline │ │ ├── Compatibility.cs │ │ ├── Controls │ │ ├── DataControlNotifier.cs │ │ ├── ITimelineToolbox.cs │ │ ├── TimelineBand.cs │ │ ├── TimelineToolbox.cs │ │ ├── TimelineTray.cs │ │ └── TimelineUrls.cs │ │ ├── Data │ │ ├── DateTimeConverter.cs │ │ ├── TimelineBuilder.cs │ │ ├── TimelineCalendar.cs │ │ ├── TimelineDisplayEvent.cs │ │ └── TimelineEvent.cs │ │ ├── Themes │ │ ├── Constants.xaml │ │ ├── Generic.xaml │ │ ├── NavigationButtons.xaml │ │ └── ToolboxButton.xaml │ │ └── Tools │ │ ├── InertialScroll.cs │ │ ├── TooltipServiceEx.cs │ │ └── Utilities.cs ├── Converters │ └── UppercaseFirst.cs ├── Extensions │ ├── ControlFocus.cs │ └── VisualTree_Functions.cs ├── Fonts │ ├── DS-DIGI.TTF │ ├── DS-DIGIB.TTF │ ├── DS-DIGII.TTF │ └── DS-DIGIT.TTF ├── Functions │ ├── Brushes.cs │ ├── Colors.cs │ └── Images.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── Camera_01.png │ ├── Carrot_Arrow_Down_02.png │ ├── Carrot_Arrow_Up_02.png │ ├── Collapse_01.png │ ├── Expand_01.png │ ├── Help_01.png │ ├── TrakHound_Logo_10_90px.png │ ├── TrakHound_Logo_Initials_10_30px.png │ └── X_01.png ├── Styles │ ├── Alert.xaml │ ├── Borders.xaml │ ├── Buttons.xaml │ ├── Buttons_Old.xaml │ ├── CheckBoxes.xaml │ ├── Colors.xaml │ ├── ComboBox1.xaml │ ├── ComboBox2.xaml │ ├── ComboBox3.xaml │ ├── DataGrid.xaml │ ├── RadioButtons.xaml │ ├── ScrollBars.xaml │ ├── Status.xaml │ ├── Text.xaml │ ├── Theme_Dark.xaml │ ├── Theme_Light.xaml │ ├── ToggleButtons.xaml │ ├── TrakHound.xaml │ └── Windows.xaml ├── ThemeSelector.cs ├── TrakHound-UI.csproj ├── Windows │ ├── BugReportSent.xaml │ ├── BugReportSent.xaml.cs │ ├── MessageBox.xaml │ └── MessageBox.xaml.cs └── app.config ├── TrakHound.NET ├── API │ ├── ApiConfiguration.cs │ ├── ApiError.cs │ ├── Bugs │ │ ├── BugInfo.cs │ │ ├── BugType.cs │ │ └── Send.cs │ ├── ConfigurationServer.cs │ ├── Data │ │ ├── AgentInfo.cs │ │ ├── ControllerInfo.cs │ │ ├── CycleInfo.cs │ │ ├── DescriptionInfo.cs │ │ ├── DeviceInfo.cs │ │ ├── Get.cs │ │ ├── HourInfo.cs │ │ ├── OeeInfo.cs │ │ ├── OverrideInfo.cs │ │ ├── StatusInfo.cs │ │ ├── TimersInfo.cs │ │ └── Update.cs │ ├── Devices │ │ ├── Check.cs │ │ ├── CheckInfo.cs │ │ ├── DeviceInfo.cs │ │ ├── Get.cs │ │ ├── List.cs │ │ ├── Remove.cs │ │ └── Update.cs │ ├── Files │ │ ├── Download.cs │ │ └── Upload.cs │ ├── Messages │ │ ├── Get.cs │ │ ├── MessageInfo.cs │ │ ├── MessageType.cs │ │ ├── Remove.cs │ │ ├── Send.cs │ │ └── Update.cs │ ├── Users │ │ ├── CreateUserInfo.cs │ │ ├── EditUserInfo.cs │ │ ├── ServerCredentials.cs │ │ ├── UserConfiguration.cs │ │ └── UserManagement.cs │ └── v2 │ │ └── Images │ │ ├── DeviceImage.cs │ │ └── Image.cs ├── ApplicationNames.cs ├── Configurations │ ├── AutoGenerate │ │ ├── Agent.cs │ │ ├── Configuration.cs │ │ ├── Cycles.cs │ │ ├── Description.cs │ │ ├── GeneratedEvents │ │ │ ├── CycleExecution.cs │ │ │ ├── DeviceStatus.cs │ │ │ ├── PartsCount.cs │ │ │ └── ProductionStatus.cs │ │ ├── Manufacturers │ │ │ └── Okuma.cs │ │ ├── Oee.cs │ │ ├── Overrides.cs │ │ ├── Parts.cs │ │ └── SnapshotData.cs │ ├── DeviceConfiguration.cs │ └── DeviceDescription.cs ├── EventData.cs ├── FileLocations.cs ├── GitHub │ ├── Authentication │ │ ├── Authentication.cs │ │ └── Tokens.cs │ └── Issues │ │ └── Issues.cs ├── IPage.cs ├── Logging │ ├── CompilerServices.cs │ ├── Line.cs │ ├── LogLineType.cs │ ├── LogReader.cs │ ├── Logger.cs │ ├── LoggerConfiguration.cs │ └── Queue.cs ├── Oee │ └── Oee.cs ├── Plugins │ ├── Client │ │ ├── ClientPlugin.cs │ │ ├── Configuration.cs │ │ └── IClientPlugin.cs │ ├── Reader.cs │ └── Server │ │ ├── ConifgurationInfoPlugin.cs │ │ ├── ConifgurationPagePlugin.cs │ │ ├── IConfigurationInfo.cs │ │ ├── IConfigurationPage.cs │ │ ├── IServerPlugin.cs │ │ └── ServerPlugin.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Settings.Designer.cs │ └── Settings.settings ├── Servers │ ├── DataProcessing │ │ ├── DeviceServer.cs │ │ ├── Devices.cs │ │ ├── Login.cs │ │ └── Server.cs │ └── DataStorage │ │ ├── Backup.cs │ │ └── LocalServer.cs ├── Shifts │ └── ShiftId.cs ├── Tables │ ├── Names.cs │ └── Variables.cs ├── Tools │ ├── DataTable_Functions.cs │ ├── DateTime_Functions.cs │ ├── FileSystem_Functions.cs │ ├── Image_Functions.cs │ ├── IpNetwork │ │ ├── BigIntegerExt.cs │ │ ├── IPAddressCollection.cs │ │ ├── IPNetwork.cs │ │ └── IPNetworkCollection.cs │ ├── List_Functions.cs │ ├── Math_Functions.cs │ ├── Network_Functions.cs │ ├── Object_Functions.cs │ ├── Registry_Functions.cs │ ├── Service_Functions.cs │ ├── String_Functions.cs │ ├── TimeSpan_Functions.cs │ ├── WCF_Functions.cs │ ├── Web │ │ ├── Download.cs │ │ ├── HTTP.cs │ │ ├── JSON.cs │ │ └── ProxySettings.cs │ ├── XML │ │ ├── Attributes.cs │ │ ├── Documents.cs │ │ ├── Files.cs │ │ ├── InnerText.cs │ │ └── Nodes.cs │ └── XML_Functions.cs ├── TrakHound.NET.csproj ├── Updates │ ├── AppInfo.cs │ └── UpdateConfiguration.cs ├── app.config └── packages.config ├── Version.cs ├── github-header.jpg ├── images ├── autodetect.png ├── controllerstatus.png ├── details.png ├── devicemanager.png ├── editdescription.png ├── footprint.png ├── github-header.jpg ├── grid.png ├── overview.png ├── productionstatus.png ├── statustimes.png └── timers.png └── lib ├── Newtonsoft.Json.dll ├── RestSharp.dll ├── System.Data.SQLite.dll └── System.Net.Http.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/LICENSE -------------------------------------------------------------------------------- /MTConnect-Sniffer/MTConnect-Sniffer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect-Sniffer/MTConnect-Sniffer.csproj -------------------------------------------------------------------------------- /MTConnect-Sniffer/MTConnect-Sniffer.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect-Sniffer/MTConnect-Sniffer.nuspec -------------------------------------------------------------------------------- /MTConnect-Sniffer/MTConnect-Sniffer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect-Sniffer/MTConnect-Sniffer.sln -------------------------------------------------------------------------------- /MTConnect-Sniffer/MTConnectDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect-Sniffer/MTConnectDevice.cs -------------------------------------------------------------------------------- /MTConnect-Sniffer/PingQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect-Sniffer/PingQueue.cs -------------------------------------------------------------------------------- /MTConnect-Sniffer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect-Sniffer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MTConnect-Sniffer/Sniffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect-Sniffer/Sniffer.cs -------------------------------------------------------------------------------- /MTConnect-Sniffer/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect-Sniffer/nuget.exe -------------------------------------------------------------------------------- /MTConnect-Sniffer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect-Sniffer/packages.config -------------------------------------------------------------------------------- /MTConnect.NET/Clients/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Clients/Asset.cs -------------------------------------------------------------------------------- /MTConnect.NET/Clients/Current.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Clients/Current.cs -------------------------------------------------------------------------------- /MTConnect.NET/Clients/MTConnectClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Clients/MTConnectClient.cs -------------------------------------------------------------------------------- /MTConnect.NET/Clients/Probe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Clients/Probe.cs -------------------------------------------------------------------------------- /MTConnect.NET/Clients/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Clients/Sample.cs -------------------------------------------------------------------------------- /MTConnect.NET/Clients/SampleRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Clients/SampleRange.cs -------------------------------------------------------------------------------- /MTConnect.NET/Clients/Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Clients/Stream.cs -------------------------------------------------------------------------------- /MTConnect.NET/ConditionValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/ConditionValue.cs -------------------------------------------------------------------------------- /MTConnect.NET/DataItemCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/DataItemCategory.cs -------------------------------------------------------------------------------- /MTConnect.NET/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Delegates.cs -------------------------------------------------------------------------------- /MTConnect.NET/Headers/MTConnectAssestsHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Headers/MTConnectAssestsHeader.cs -------------------------------------------------------------------------------- /MTConnect.NET/Headers/MTConnectDevicesHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Headers/MTConnectDevicesHeader.cs -------------------------------------------------------------------------------- /MTConnect.NET/Headers/MTConnectErrorHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Headers/MTConnectErrorHeader.cs -------------------------------------------------------------------------------- /MTConnect.NET/Headers/MTConnectStreamsHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Headers/MTConnectStreamsHeader.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnect.NET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnect.NET.csproj -------------------------------------------------------------------------------- /MTConnect.NET/MTConnect.NET.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnect.NET.sln -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/Asset.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/CutterStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/CutterStatus.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/CuttingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/CuttingItem.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/CuttingTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/CuttingTool.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/CuttingToolLifeCycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/CuttingToolLifeCycle.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/Description.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/Description.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/ItemLife.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/ItemLife.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/Location.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/LocationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/LocationType.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/Measurement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/Measurement.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/ProcessFeedrate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/ProcessFeedrate.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/ProcessSpindleSpeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/ProcessSpindleSpeed.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/ReconditionCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/ReconditionCount.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/ToolLife.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/ToolLife.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/ToolLifeCountDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/ToolLifeCountDirection.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/CuttingTools/ToolLifeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/CuttingTools/ToolLifeType.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectAssets/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectAssets/Document.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectDevices/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectDevices/Component.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectDevices/ComponentCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectDevices/ComponentCollection.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectDevices/Constraints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectDevices/Constraints.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectDevices/DataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectDevices/DataItem.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectDevices/Description.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectDevices/Description.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectDevices/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectDevices/Device.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectDevices/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectDevices/Document.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectDevices/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectDevices/Filter.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectDevices/Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectDevices/Source.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectError/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectError/Document.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectError/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectError/Error.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectError/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectError/ErrorCode.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectStreams/ComponentStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectStreams/ComponentStream.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectStreams/Condition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectStreams/Condition.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectStreams/DataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectStreams/DataItem.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectStreams/DataItemCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectStreams/DataItemCollection.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectStreams/DeviceStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectStreams/DeviceStream.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectStreams/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectStreams/Document.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectStreams/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectStreams/Event.cs -------------------------------------------------------------------------------- /MTConnect.NET/MTConnectStreams/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/MTConnectStreams/Sample.cs -------------------------------------------------------------------------------- /MTConnect.NET/Namespaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Namespaces.cs -------------------------------------------------------------------------------- /MTConnect.NET/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MTConnect.NET/Resources/EventTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Resources/EventTypes.xml -------------------------------------------------------------------------------- /MTConnect.NET/Types/ConditionTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Types/ConditionTypes.xml -------------------------------------------------------------------------------- /MTConnect.NET/Types/Conditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Types/Conditions.cs -------------------------------------------------------------------------------- /MTConnect.NET/Types/EventTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Types/EventTypes.xml -------------------------------------------------------------------------------- /MTConnect.NET/Types/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Types/Events.cs -------------------------------------------------------------------------------- /MTConnect.NET/Types/SampleTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Types/SampleTypes.xml -------------------------------------------------------------------------------- /MTConnect.NET/Types/Samples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Types/Samples.cs -------------------------------------------------------------------------------- /MTConnect.NET/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/Version.cs -------------------------------------------------------------------------------- /MTConnect.NET/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/app.config -------------------------------------------------------------------------------- /MTConnect.NET/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/nuget.exe -------------------------------------------------------------------------------- /MTConnect.NET/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/MTConnect.NET/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/README.md -------------------------------------------------------------------------------- /Server-Login/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Server-Login/App.config -------------------------------------------------------------------------------- /Server-Login/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Server-Login/App.xaml -------------------------------------------------------------------------------- /Server-Login/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Server-Login/App.xaml.cs -------------------------------------------------------------------------------- /Server-Login/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Server-Login/MainWindow.xaml -------------------------------------------------------------------------------- /Server-Login/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Server-Login/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Server-Login/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Server-Login/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Server-Login/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Server-Login/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Server-Login/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Server-Login/Properties/Resources.resx -------------------------------------------------------------------------------- /Server-Login/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Server-Login/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Server-Login/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Server-Login/Properties/Settings.settings -------------------------------------------------------------------------------- /Server-Login/Resources/TrakHound.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Server-Login/Resources/TrakHound.ico -------------------------------------------------------------------------------- /Server-Login/Resources/blank_profile_01_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Server-Login/Resources/blank_profile_01_sm.png -------------------------------------------------------------------------------- /Server-Login/Server-Login.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Server-Login/Server-Login.csproj -------------------------------------------------------------------------------- /TrakHound-Community.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Community.sln -------------------------------------------------------------------------------- /TrakHound-Dashboard/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/App.config -------------------------------------------------------------------------------- /TrakHound-Dashboard/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/App.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/App.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/Developer Console/PopUp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/Developer Console/PopUp.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/Developer Console/PopUp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/Developer Console/PopUp.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/MenuItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/MenuItem.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/MenuItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/MenuItem.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/Message Center/Message.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/Message Center/Message.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/Message Center/Message.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/Message Center/Message.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/Message Center/MessageCenter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/Message Center/MessageCenter.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/Message Center/MessageCenter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/Message Center/MessageCenter.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/Message Center/MessageData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/Message Center/MessageData.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/Message Center/Notifications/Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/Message Center/Notifications/Exception.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/Message Center/Notifications/Notification_Item.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/Message Center/Notifications/Notification_Item.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/Message Center/Notifications/Notification_Item.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/Message Center/Notifications/Notification_Item.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/PageManager.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/PageManager.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/PageManager.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/PageManager.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/TabHeader.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/TabHeader.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Controls/TabHeader.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Controls/TabHeader.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/DeviceComparisonTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/DeviceComparisonTypes.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/MainWindow.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/MainWindow.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/MainWindow/Default Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/MainWindow/Default Messages.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/MainWindow/Developer Console.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/MainWindow/Developer Console.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/MainWindow/Devices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/MainWindow/Devices.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/MainWindow/Message Center.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/MainWindow/Message Center.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/MainWindow/Navigation Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/MainWindow/Navigation Menu.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/MainWindow/Pages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/MainWindow/Pages.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/MainWindow/Plugins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/MainWindow/Plugins.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/MainWindow/Report Bug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/MainWindow/Report Bug.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/MainWindow/Server Management.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/MainWindow/Server Management.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/MainWindow/Splash Screen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/MainWindow/Splash Screen.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/MainWindow/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/MainWindow/Window.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/NLog.config -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/About/Information/Information_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/About/Information/Information_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/About/Information/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/About/Information/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/About/Information/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/About/Information/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/About/License/Key_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/About/License/Key_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/About/License/Key_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/About/License/Key_02.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/About/License/Key_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/About/License/Key_03.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/About/License/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/About/License/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/About/License/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/About/License/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Account/Countries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Account/Countries.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Account/MyAccountPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Account/MyAccountPage.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Account/MyAccountPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Account/MyAccountPage.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Account/States.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Account/States.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ControllerStatus/ControllerStatus.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ControllerStatus/ControllerStatus.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ControllerStatus/ControllerStatus.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ControllerStatus/ControllerStatus.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ControllerStatus/Controls/Row.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ControllerStatus/Controls/Row.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ControllerStatus/Controls/Row.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ControllerStatus/Controls/Row.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Dashboard.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Dashboard.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Dashboard.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Dashboard.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/DeviceStatusTimes/Controls/Row.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/DeviceStatusTimes/Controls/Row.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/DeviceStatusTimes/Controls/Row.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/DeviceStatusTimes/Controls/Row.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/DeviceStatusTimes/StatusTimes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/DeviceStatusTimes/StatusTimes.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/DeviceStatusTimes/StatusTimes.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/DeviceStatusTimes/StatusTimes.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Footprint/Controls/DeviceItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Footprint/Controls/DeviceItem.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Footprint/Controls/DeviceItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Footprint/Controls/DeviceItem.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Footprint/Controls/ListItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Footprint/Controls/ListItem.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Footprint/Controls/ListItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Footprint/Controls/ListItem.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Footprint/Controls/MoveThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Footprint/Controls/MoveThumb.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Footprint/Controls/ResizeThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Footprint/Controls/ResizeThumb.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Footprint/Footprint.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Footprint/Footprint.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Footprint/Footprint.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Footprint/Footprint.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/Controls/Row.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/Controls/Row.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/Controls/Row.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/Controls/Row.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/Controls/Segment.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/Controls/Segment.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/Controls/Segment.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/Controls/Segment.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/HourData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/HourData.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/OeeStatusTimeline.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/OeeStatusTimeline.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/OeeStatusTimeline.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OeeHourTimeline/OeeStatusTimeline.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OeeStatus/Controls/Row.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OeeStatus/Controls/Row.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OeeStatus/Controls/Row.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OeeStatus/Controls/Row.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OeeStatus/OeeStatus.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OeeStatus/OeeStatus.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OeeStatus/OeeStatus.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OeeStatus/OeeStatus.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OverrideStatus/Controls/Row.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OverrideStatus/Controls/Row.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OverrideStatus/Controls/Row.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OverrideStatus/Controls/Row.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OverrideStatus/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OverrideStatus/Plugin.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OverrideStatus/StatusTimes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OverrideStatus/StatusTimes.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OverrideStatus/StatusTimes.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OverrideStatus/StatusTimes.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/OverrideStatus/Update Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/OverrideStatus/Update Data.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Overview/Controls/Column.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Overview/Controls/Column.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Overview/Controls/Column.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Overview/Controls/Column.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Overview/Overview.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Overview/Overview.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/Overview/Overview.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/Overview/Overview.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ProductionStatus/Controls/Row.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ProductionStatus/Controls/Row.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ProductionStatus/Controls/Row.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ProductionStatus/Controls/Row.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ProductionStatus/ProductionStatus.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ProductionStatus/ProductionStatus.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ProductionStatus/ProductionStatus.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ProductionStatus/ProductionStatus.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ProductionStatusTimes/Controls/Row.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ProductionStatusTimes/Controls/Row.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ProductionStatusTimes/Controls/Row.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ProductionStatusTimes/Controls/Row.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ProductionStatusTimes/StatusTimes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ProductionStatusTimes/StatusTimes.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ProductionStatusTimes/StatusTimes.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ProductionStatusTimes/StatusTimes.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/Controls/DeviceItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/Controls/DeviceItem.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/Controls/DeviceItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/Controls/DeviceItem.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/Controls/ListItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/Controls/ListItem.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/Controls/ListItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/Controls/ListItem.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/Controls/MoveThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/Controls/MoveThumb.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/Controls/ResizeThumb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/Controls/ResizeThumb.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/ShopStatus.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/ShopStatus.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/ShopStatus.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/ShopStatus1/ShopStatus.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/StatusData/OptionsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/StatusData/OptionsPage.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/StatusData/OptionsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/StatusData/OptionsPage.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/StatusData/StatusData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/StatusData/StatusData.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/StatusGrid/Controls/Item.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/StatusGrid/Controls/Item.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/StatusGrid/Controls/Item.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/StatusGrid/Controls/Item.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/StatusGrid/StatusGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/StatusGrid/StatusGrid.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Dashboard/StatusGrid/StatusGrid.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Dashboard/StatusGrid/StatusGrid.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceDetails/Controls/HourSegment.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceDetails/Controls/HourSegment.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceDetails/Controls/HourSegment.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceDetails/Controls/HourSegment.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceDetails/Controls/HourTimeline.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceDetails/Controls/HourTimeline.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceDetails/Controls/HourTimeline.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceDetails/Controls/HourTimeline.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceDetails/HourData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceDetails/HourData.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceDetails/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceDetails/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceDetails/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceDetails/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceDetails/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceDetails/Plugin.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/AddDevice/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/AddDevice/DeviceInfo.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Pages/AutoDetect.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Pages/AutoDetect.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Pages/AutoDetect.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Pages/AutoDetect.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Pages/LoadFromFile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Pages/LoadFromFile.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Pages/LoadFromFile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Pages/LoadFromFile.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Pages/Manual.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Pages/Manual.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Pages/Manual.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/AddDevice/Pages/Manual.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Controls/DataGrid Controls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Controls/DataGrid Controls.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/DeviceList.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/DeviceList.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/DeviceList.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/DeviceList.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/DeviceListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/DeviceListItem.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/EditPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/EditPage.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/EditPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/EditPage.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/GeneratedEvents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/GeneratedEvents.xml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Global.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Global.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Controls/OverrideLinkItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Controls/OverrideLinkItem.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Controls/OverrideLinkItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Controls/OverrideLinkItem.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Controls/ProductionTypeItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Controls/ProductionTypeItem.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Controls/ProductionTypeItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Controls/ProductionTypeItem.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Info.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Cycles/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Description/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Description/Info.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Description/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Description/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Description/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Description/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/CaptureItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/CaptureItem.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/CaptureItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/CaptureItem.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Default.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Default.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Default.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Default.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Event.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Event.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Event.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Event.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/EventButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/EventButton.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/EventButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/EventButton.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/MultiTrigger.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/MultiTrigger.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/MultiTrigger.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/MultiTrigger.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Trigger.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Trigger.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Trigger.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Trigger.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Value.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Value.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Value.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Controls/Value.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Info.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/GeneratedEvents/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/MTConnect/Controls/MessageItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/MTConnect/Controls/MessageItem.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/MTConnect/Controls/MessageItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/MTConnect/Controls/MessageItem.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/MTConnect/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/MTConnect/Info.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/MTConnect/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/MTConnect/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/MTConnect/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/MTConnect/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Parts/Controls/PartCountEventItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Parts/Controls/PartCountEventItem.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Parts/Controls/PartCountEventItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Parts/Controls/PartCountEventItem.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Parts/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Parts/Info.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Parts/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Parts/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/Parts/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/Parts/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/SnapshotData/Controls/SnapshotItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/SnapshotData/Controls/SnapshotItem.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/SnapshotData/Controls/SnapshotItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/SnapshotData/Controls/SnapshotItem.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/SnapshotData/Info.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/SnapshotData/Info.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/SnapshotData/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/SnapshotData/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/DeviceManager/Pages/SnapshotData/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/DeviceManager/Pages/SnapshotData/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Options/API/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Options/API/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Options/API/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Options/API/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Options/General/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Options/General/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Options/General/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Options/General/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Options/Logger/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Options/Logger/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Options/Logger/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Options/Logger/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Options/Updates/Page.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Options/Updates/Page.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Options/Updates/Page.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Options/Updates/Page.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Options/Updates/UpdateItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Options/Updates/UpdateItem.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Pages/Options/Updates/UpdateItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Pages/Options/Updates/UpdateItem.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Program.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Properties/Resources.resx -------------------------------------------------------------------------------- /TrakHound-Dashboard/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Properties/Settings.settings -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/About_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/About_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Active_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Active_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Active_01_100px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Active_01_100px.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/AddUser_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/AddUser_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Add_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Add_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Analyse_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Analyse_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Arrow_Down_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Arrow_Down_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Arrow_Up_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Arrow_Up_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Auto_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Auto_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Back_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Back_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Bell_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Bell_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/BlockSkip_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/BlockSkip_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Block_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Block_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Bug_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Bug_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Camera_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Camera_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Carrot_Arrow_Down_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Carrot_Arrow_Down_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Carrot_Arrow_Up_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Carrot_Arrow_Up_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/CheckMark_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/CheckMark_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Cloud_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Cloud_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Copy_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Copy_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Cycle_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Cycle_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Dashboard_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Dashboard_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Dashboard_Splash_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Dashboard_Splash_02.jpg -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/DatabaseConfig_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/DatabaseConfig_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Developer_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Developer_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Disk_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Disk_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/DryRun_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/DryRun_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Edit_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Edit_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Edit_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Edit_02.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Envelope_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Envelope_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Error_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Error_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Estop_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Estop_02.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Expand_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Expand_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Footprint_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Footprint_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Forward_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Forward_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/FullScreen_02_30px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/FullScreen_02_30px.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Generate_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Generate_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Grid_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Grid_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Group_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Group_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Help_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Help_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Home_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Home_02.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Hourglass_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Hourglass_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Hourglass_01_100px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Hourglass_01_100px.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Jog_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Jog_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Lab_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Lab_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/List_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/List_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Lock_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Lock_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/MDI_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/MDI_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/MTConnect_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/MTConnect_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/MachineLock_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/MachineLock_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Manual_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Manual_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Menu_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Menu_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Minus_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Minus_04.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Oee_Percent_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Oee_Percent_03.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Off_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Off_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Off_01_25px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Off_01_25px.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/On_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/On_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/On_01_25px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/On_01_25px.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Options_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Options_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Outline_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Outline_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Pause_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Pause_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Pause_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Pause_02.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Plug_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Plug_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Plus_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Plus_04.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Power_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Power_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Power_01_100px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Power_01_100px.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Power_01_200px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Power_01_200px.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Production_Percentage_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Production_Percentage_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Refresh_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Refresh_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Rocket_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Rocket_02.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Root.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Search_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Search_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Send_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Send_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Share_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Share_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/SingleBlock_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/SingleBlock_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Start_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Start_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Start_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Start_02.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Status_Percentage_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Status_Percentage_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Stop_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Stop_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Stop_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Stop_02.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Table_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Table_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Time_Status_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Time_Status_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Timer_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Timer_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/TrakHound_Logo_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/TrakHound_Logo_10.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/TrakHound_Logo_10_150px_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/TrakHound_Logo_10_150px_White.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/TrakHound_Logo_10_40px_Wide_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/TrakHound_Logo_10_40px_Wide_White.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/TrakHound_Logo_Initials_10.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/TrakHound_Logo_Initials_10.ico -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/TrakHound_Logo_Initials_10_30px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/TrakHound_Logo_Initials_10_30px.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Update_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Update_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Update_02_100px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Update_02_100px.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Warning_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Warning_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Warning_01_100px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Warning_01_100px.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/Warning_01_200px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/Warning_01_200px.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/X_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/X_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/blank_profile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/blank_profile_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/blank_profile_01_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/blank_profile_01_sm.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/github_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/github_01.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/gplv3-127x51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/gplv3-127x51.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/Resources/sqlite_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Resources/sqlite_logo.png -------------------------------------------------------------------------------- /TrakHound-Dashboard/TrakHound-Dashboard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/TrakHound-Dashboard.csproj -------------------------------------------------------------------------------- /TrakHound-Dashboard/User/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/User/Login.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/User/Logout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/User/Logout.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/User/ProfileImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/User/ProfileImage.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/User/Users.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/User/Users.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Windows/Fullscreen.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Windows/Fullscreen.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Windows/Fullscreen.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Windows/Fullscreen.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Windows/Splash.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Windows/Splash.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Windows/Splash.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Windows/Splash.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/Windows/UpdateNotification.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Windows/UpdateNotification.xaml -------------------------------------------------------------------------------- /TrakHound-Dashboard/Windows/UpdateNotification.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/Windows/UpdateNotification.xaml.cs -------------------------------------------------------------------------------- /TrakHound-Dashboard/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Dashboard/packages.config -------------------------------------------------------------------------------- /TrakHound-Server/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/App.config -------------------------------------------------------------------------------- /TrakHound-Server/Header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Header.txt -------------------------------------------------------------------------------- /TrakHound-Server/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/NLog.config -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Cycles/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Cycles/Configuration.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Cycles/CycleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Cycles/CycleData.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Cycles/CycleProductionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Cycles/CycleProductionType.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Cycles/Cycles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Cycles/Cycles.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Cycles/Override.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Cycles/Override.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/GeneratedEvents/Components/CaptureItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/GeneratedEvents/Components/CaptureItem.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/GeneratedEvents/Components/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/GeneratedEvents/Components/Event.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/GeneratedEvents/Components/MultiTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/GeneratedEvents/Components/MultiTrigger.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/GeneratedEvents/Components/Return.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/GeneratedEvents/Components/Return.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/GeneratedEvents/Components/Trigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/GeneratedEvents/Components/Trigger.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/GeneratedEvents/Components/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/GeneratedEvents/Components/Value.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/GeneratedEvents/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/GeneratedEvents/Configuration.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/GeneratedEvents/GeneratedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/GeneratedEvents/GeneratedEvent.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/GeneratedEvents/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/GeneratedEvents/Plugin.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/GeneratedEvents/Tools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/GeneratedEvents/Tools.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Instances/Instance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Instances/Instance.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Instances/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Instances/Plugin.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Instances/Processing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Instances/Processing.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/MTConnectData/AgentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/MTConnectData/AgentData.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/MTConnectData/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/MTConnectData/Plugin.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/MTConnectData/Requests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/MTConnectData/Requests.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/OEE/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/OEE/Configuration.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/OEE/OEE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/OEE/OEE.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/OEE/OEEData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/OEE/OEEData.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Overrides/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Overrides/Configuration.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Overrides/Override.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Overrides/Override.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Overrides/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Overrides/Plugin.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Parts/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Parts/Configuration.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Parts/PartInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Parts/PartInfo.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Parts/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Parts/Plugin.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/SnapshotData/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/SnapshotData/Configuration.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/SnapshotData/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/SnapshotData/Plugin.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/SnapshotData/Snapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/SnapshotData/Snapshot.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Status/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Status/Plugin.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/Status/StatusInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/Status/StatusInfo.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/TrakHoundCloud/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/TrakHoundCloud/Plugin.cs -------------------------------------------------------------------------------- /TrakHound-Server/Plugins/TrakHoundCloud/UpdateQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Plugins/TrakHoundCloud/UpdateQueue.cs -------------------------------------------------------------------------------- /TrakHound-Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Program.cs -------------------------------------------------------------------------------- /TrakHound-Server/ProjectInstaller.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/ProjectInstaller.Designer.cs -------------------------------------------------------------------------------- /TrakHound-Server/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/ProjectInstaller.cs -------------------------------------------------------------------------------- /TrakHound-Server/ProjectInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/ProjectInstaller.resx -------------------------------------------------------------------------------- /TrakHound-Server/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TrakHound-Server/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TrakHound-Server/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Properties/Settings.settings -------------------------------------------------------------------------------- /TrakHound-Server/Service1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Service1.Designer.cs -------------------------------------------------------------------------------- /TrakHound-Server/Service1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/Service1.cs -------------------------------------------------------------------------------- /TrakHound-Server/TrakHound-Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/TrakHound-Server.csproj -------------------------------------------------------------------------------- /TrakHound-Server/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-Server/packages.config -------------------------------------------------------------------------------- /TrakHound-UI/All.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/All.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Button.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Button.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Button.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Button.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/CollapseButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/CollapseButton.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/CollapseButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/CollapseButton.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Histogram/Histogram.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Histogram/Histogram.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Histogram/Histogram.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Histogram/Histogram.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Histogram/Label.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Histogram/Label.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Histogram/Label.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Histogram/Label.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/ImageBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/ImageBox.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/ImageBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/ImageBox.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/ImageDisplay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/ImageDisplay.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/ImageDisplay.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/ImageDisplay.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/LevelIndicator/BetterSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/LevelIndicator/BetterSegment.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/LevelIndicator/Indicator.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/LevelIndicator/Indicator.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/LevelIndicator/Indicator.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/LevelIndicator/Indicator.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/LevelIndicator/Segment.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/LevelIndicator/Segment.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/LevelIndicator/Segment.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/LevelIndicator/Segment.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/ListButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/ListButton.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/ListButton.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/ListButton.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/MeterDisplay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/MeterDisplay.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/MeterDisplay.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/MeterDisplay.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/NumberDisplay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/NumberDisplay.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/NumberDisplay.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/NumberDisplay.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/PasswordBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/PasswordBox.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/PasswordBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/PasswordBox.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/PieChart.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/PieChart.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/PieChart.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/PieChart.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/ProgressBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/ProgressBar.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/ProgressBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/ProgressBar.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Spinner.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Spinner.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Spinner.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Spinner.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/TextBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/TextBox.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/TextBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/TextBox.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/TimeDisplay.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/TimeDisplay.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/TimeDisplay.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/TimeDisplay.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/TimeProgress.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/TimeProgress.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/TimeProgress.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/TimeProgress.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/TimeSlider.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/TimeSlider.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/TimeSlider.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/TimeSlider.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Compatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Compatibility.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Controls/DataControlNotifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Controls/DataControlNotifier.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Controls/ITimelineToolbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Controls/ITimelineToolbox.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Controls/TimelineBand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Controls/TimelineBand.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Controls/TimelineToolbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Controls/TimelineToolbox.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Controls/TimelineTray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Controls/TimelineTray.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Controls/TimelineUrls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Controls/TimelineUrls.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Data/DateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Data/DateTimeConverter.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Data/TimelineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Data/TimelineBuilder.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Data/TimelineCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Data/TimelineCalendar.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Data/TimelineDisplayEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Data/TimelineDisplayEvent.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Data/TimelineEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Data/TimelineEvent.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Themes/Constants.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Themes/Constants.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Themes/Generic.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Themes/NavigationButtons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Themes/NavigationButtons.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Themes/ToolboxButton.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Themes/ToolboxButton.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Tools/InertialScroll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Tools/InertialScroll.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Tools/TooltipServiceEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Tools/TooltipServiceEx.cs -------------------------------------------------------------------------------- /TrakHound-UI/Controls/Timeline/Tools/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Controls/Timeline/Tools/Utilities.cs -------------------------------------------------------------------------------- /TrakHound-UI/Converters/UppercaseFirst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Converters/UppercaseFirst.cs -------------------------------------------------------------------------------- /TrakHound-UI/Extensions/ControlFocus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Extensions/ControlFocus.cs -------------------------------------------------------------------------------- /TrakHound-UI/Extensions/VisualTree_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Extensions/VisualTree_Functions.cs -------------------------------------------------------------------------------- /TrakHound-UI/Fonts/DS-DIGI.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Fonts/DS-DIGI.TTF -------------------------------------------------------------------------------- /TrakHound-UI/Fonts/DS-DIGIB.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Fonts/DS-DIGIB.TTF -------------------------------------------------------------------------------- /TrakHound-UI/Fonts/DS-DIGII.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Fonts/DS-DIGII.TTF -------------------------------------------------------------------------------- /TrakHound-UI/Fonts/DS-DIGIT.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Fonts/DS-DIGIT.TTF -------------------------------------------------------------------------------- /TrakHound-UI/Functions/Brushes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Functions/Brushes.cs -------------------------------------------------------------------------------- /TrakHound-UI/Functions/Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Functions/Colors.cs -------------------------------------------------------------------------------- /TrakHound-UI/Functions/Images.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Functions/Images.cs -------------------------------------------------------------------------------- /TrakHound-UI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TrakHound-UI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TrakHound-UI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Properties/Resources.resx -------------------------------------------------------------------------------- /TrakHound-UI/Resources/Camera_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Resources/Camera_01.png -------------------------------------------------------------------------------- /TrakHound-UI/Resources/Carrot_Arrow_Down_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Resources/Carrot_Arrow_Down_02.png -------------------------------------------------------------------------------- /TrakHound-UI/Resources/Carrot_Arrow_Up_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Resources/Carrot_Arrow_Up_02.png -------------------------------------------------------------------------------- /TrakHound-UI/Resources/Collapse_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Resources/Collapse_01.png -------------------------------------------------------------------------------- /TrakHound-UI/Resources/Expand_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Resources/Expand_01.png -------------------------------------------------------------------------------- /TrakHound-UI/Resources/Help_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Resources/Help_01.png -------------------------------------------------------------------------------- /TrakHound-UI/Resources/TrakHound_Logo_10_90px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Resources/TrakHound_Logo_10_90px.png -------------------------------------------------------------------------------- /TrakHound-UI/Resources/TrakHound_Logo_Initials_10_30px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Resources/TrakHound_Logo_Initials_10_30px.png -------------------------------------------------------------------------------- /TrakHound-UI/Resources/X_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Resources/X_01.png -------------------------------------------------------------------------------- /TrakHound-UI/Styles/Alert.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/Alert.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/Borders.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/Borders.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/Buttons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/Buttons.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/Buttons_Old.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/Buttons_Old.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/CheckBoxes.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/CheckBoxes.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/Colors.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/Colors.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/ComboBox1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/ComboBox1.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/ComboBox2.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/ComboBox2.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/ComboBox3.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/ComboBox3.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/DataGrid.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/DataGrid.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/RadioButtons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/RadioButtons.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/ScrollBars.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/ScrollBars.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/Status.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/Status.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/Text.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/Text.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/Theme_Dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/Theme_Dark.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/Theme_Light.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/Theme_Light.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/ToggleButtons.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/ToggleButtons.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/TrakHound.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/TrakHound.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Styles/Windows.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Styles/Windows.xaml -------------------------------------------------------------------------------- /TrakHound-UI/ThemeSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/ThemeSelector.cs -------------------------------------------------------------------------------- /TrakHound-UI/TrakHound-UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/TrakHound-UI.csproj -------------------------------------------------------------------------------- /TrakHound-UI/Windows/BugReportSent.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Windows/BugReportSent.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Windows/BugReportSent.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Windows/BugReportSent.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/Windows/MessageBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Windows/MessageBox.xaml -------------------------------------------------------------------------------- /TrakHound-UI/Windows/MessageBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/Windows/MessageBox.xaml.cs -------------------------------------------------------------------------------- /TrakHound-UI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound-UI/app.config -------------------------------------------------------------------------------- /TrakHound.NET/API/ApiConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/ApiConfiguration.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/ApiError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/ApiError.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Bugs/BugInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Bugs/BugInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Bugs/BugType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Bugs/BugType.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Bugs/Send.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Bugs/Send.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/ConfigurationServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/ConfigurationServer.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Data/AgentInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Data/AgentInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Data/ControllerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Data/ControllerInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Data/CycleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Data/CycleInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Data/DescriptionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Data/DescriptionInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Data/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Data/DeviceInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Data/Get.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Data/Get.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Data/HourInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Data/HourInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Data/OeeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Data/OeeInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Data/OverrideInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Data/OverrideInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Data/StatusInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Data/StatusInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Data/TimersInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Data/TimersInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Data/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Data/Update.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Devices/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Devices/Check.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Devices/CheckInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Devices/CheckInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Devices/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Devices/DeviceInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Devices/Get.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Devices/Get.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Devices/List.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Devices/List.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Devices/Remove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Devices/Remove.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Devices/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Devices/Update.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Files/Download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Files/Download.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Files/Upload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Files/Upload.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Messages/Get.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Messages/Get.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Messages/MessageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Messages/MessageInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Messages/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Messages/MessageType.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Messages/Remove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Messages/Remove.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Messages/Send.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Messages/Send.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Messages/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Messages/Update.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Users/CreateUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Users/CreateUserInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Users/EditUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Users/EditUserInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Users/ServerCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Users/ServerCredentials.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Users/UserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Users/UserConfiguration.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/Users/UserManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/Users/UserManagement.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/v2/Images/DeviceImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/v2/Images/DeviceImage.cs -------------------------------------------------------------------------------- /TrakHound.NET/API/v2/Images/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/API/v2/Images/Image.cs -------------------------------------------------------------------------------- /TrakHound.NET/ApplicationNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/ApplicationNames.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/AutoGenerate/Agent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/AutoGenerate/Agent.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/AutoGenerate/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/AutoGenerate/Configuration.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/AutoGenerate/Cycles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/AutoGenerate/Cycles.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/AutoGenerate/Description.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/AutoGenerate/Description.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/AutoGenerate/GeneratedEvents/CycleExecution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/AutoGenerate/GeneratedEvents/CycleExecution.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/AutoGenerate/GeneratedEvents/DeviceStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/AutoGenerate/GeneratedEvents/DeviceStatus.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/AutoGenerate/GeneratedEvents/PartsCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/AutoGenerate/GeneratedEvents/PartsCount.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/AutoGenerate/GeneratedEvents/ProductionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/AutoGenerate/GeneratedEvents/ProductionStatus.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/AutoGenerate/Manufacturers/Okuma.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/AutoGenerate/Manufacturers/Okuma.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/AutoGenerate/Oee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/AutoGenerate/Oee.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/AutoGenerate/Overrides.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/AutoGenerate/Overrides.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/AutoGenerate/Parts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/AutoGenerate/Parts.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/AutoGenerate/SnapshotData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/AutoGenerate/SnapshotData.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/DeviceConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/DeviceConfiguration.cs -------------------------------------------------------------------------------- /TrakHound.NET/Configurations/DeviceDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Configurations/DeviceDescription.cs -------------------------------------------------------------------------------- /TrakHound.NET/EventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/EventData.cs -------------------------------------------------------------------------------- /TrakHound.NET/FileLocations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/FileLocations.cs -------------------------------------------------------------------------------- /TrakHound.NET/GitHub/Authentication/Authentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/GitHub/Authentication/Authentication.cs -------------------------------------------------------------------------------- /TrakHound.NET/GitHub/Authentication/Tokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/GitHub/Authentication/Tokens.cs -------------------------------------------------------------------------------- /TrakHound.NET/GitHub/Issues/Issues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/GitHub/Issues/Issues.cs -------------------------------------------------------------------------------- /TrakHound.NET/IPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/IPage.cs -------------------------------------------------------------------------------- /TrakHound.NET/Logging/CompilerServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Logging/CompilerServices.cs -------------------------------------------------------------------------------- /TrakHound.NET/Logging/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Logging/Line.cs -------------------------------------------------------------------------------- /TrakHound.NET/Logging/LogLineType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Logging/LogLineType.cs -------------------------------------------------------------------------------- /TrakHound.NET/Logging/LogReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Logging/LogReader.cs -------------------------------------------------------------------------------- /TrakHound.NET/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Logging/Logger.cs -------------------------------------------------------------------------------- /TrakHound.NET/Logging/LoggerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Logging/LoggerConfiguration.cs -------------------------------------------------------------------------------- /TrakHound.NET/Logging/Queue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Logging/Queue.cs -------------------------------------------------------------------------------- /TrakHound.NET/Oee/Oee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Oee/Oee.cs -------------------------------------------------------------------------------- /TrakHound.NET/Plugins/Client/ClientPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Plugins/Client/ClientPlugin.cs -------------------------------------------------------------------------------- /TrakHound.NET/Plugins/Client/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Plugins/Client/Configuration.cs -------------------------------------------------------------------------------- /TrakHound.NET/Plugins/Client/IClientPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Plugins/Client/IClientPlugin.cs -------------------------------------------------------------------------------- /TrakHound.NET/Plugins/Reader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Plugins/Reader.cs -------------------------------------------------------------------------------- /TrakHound.NET/Plugins/Server/ConifgurationInfoPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Plugins/Server/ConifgurationInfoPlugin.cs -------------------------------------------------------------------------------- /TrakHound.NET/Plugins/Server/ConifgurationPagePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Plugins/Server/ConifgurationPagePlugin.cs -------------------------------------------------------------------------------- /TrakHound.NET/Plugins/Server/IConfigurationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Plugins/Server/IConfigurationInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/Plugins/Server/IConfigurationPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Plugins/Server/IConfigurationPage.cs -------------------------------------------------------------------------------- /TrakHound.NET/Plugins/Server/IServerPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Plugins/Server/IServerPlugin.cs -------------------------------------------------------------------------------- /TrakHound.NET/Plugins/Server/ServerPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Plugins/Server/ServerPlugin.cs -------------------------------------------------------------------------------- /TrakHound.NET/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TrakHound.NET/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Properties/Settings.settings -------------------------------------------------------------------------------- /TrakHound.NET/Servers/DataProcessing/DeviceServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Servers/DataProcessing/DeviceServer.cs -------------------------------------------------------------------------------- /TrakHound.NET/Servers/DataProcessing/Devices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Servers/DataProcessing/Devices.cs -------------------------------------------------------------------------------- /TrakHound.NET/Servers/DataProcessing/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Servers/DataProcessing/Login.cs -------------------------------------------------------------------------------- /TrakHound.NET/Servers/DataProcessing/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Servers/DataProcessing/Server.cs -------------------------------------------------------------------------------- /TrakHound.NET/Servers/DataStorage/Backup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Servers/DataStorage/Backup.cs -------------------------------------------------------------------------------- /TrakHound.NET/Servers/DataStorage/LocalServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Servers/DataStorage/LocalServer.cs -------------------------------------------------------------------------------- /TrakHound.NET/Shifts/ShiftId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Shifts/ShiftId.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tables/Names.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tables/Names.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tables/Variables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tables/Variables.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/DataTable_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/DataTable_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/DateTime_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/DateTime_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/FileSystem_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/FileSystem_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/Image_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/Image_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/IpNetwork/BigIntegerExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/IpNetwork/BigIntegerExt.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/IpNetwork/IPAddressCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/IpNetwork/IPAddressCollection.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/IpNetwork/IPNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/IpNetwork/IPNetwork.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/IpNetwork/IPNetworkCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/IpNetwork/IPNetworkCollection.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/List_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/List_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/Math_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/Math_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/Network_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/Network_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/Object_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/Object_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/Registry_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/Registry_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/Service_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/Service_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/String_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/String_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/TimeSpan_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/TimeSpan_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/WCF_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/WCF_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/Web/Download.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/Web/Download.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/Web/HTTP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/Web/HTTP.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/Web/JSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/Web/JSON.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/Web/ProxySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/Web/ProxySettings.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/XML/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/XML/Attributes.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/XML/Documents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/XML/Documents.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/XML/Files.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/XML/Files.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/XML/InnerText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/XML/InnerText.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/XML/Nodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/XML/Nodes.cs -------------------------------------------------------------------------------- /TrakHound.NET/Tools/XML_Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Tools/XML_Functions.cs -------------------------------------------------------------------------------- /TrakHound.NET/TrakHound.NET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/TrakHound.NET.csproj -------------------------------------------------------------------------------- /TrakHound.NET/Updates/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Updates/AppInfo.cs -------------------------------------------------------------------------------- /TrakHound.NET/Updates/UpdateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/Updates/UpdateConfiguration.cs -------------------------------------------------------------------------------- /TrakHound.NET/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/app.config -------------------------------------------------------------------------------- /TrakHound.NET/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/TrakHound.NET/packages.config -------------------------------------------------------------------------------- /Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/Version.cs -------------------------------------------------------------------------------- /github-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/github-header.jpg -------------------------------------------------------------------------------- /images/autodetect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/images/autodetect.png -------------------------------------------------------------------------------- /images/controllerstatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/images/controllerstatus.png -------------------------------------------------------------------------------- /images/details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/images/details.png -------------------------------------------------------------------------------- /images/devicemanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/images/devicemanager.png -------------------------------------------------------------------------------- /images/editdescription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/images/editdescription.png -------------------------------------------------------------------------------- /images/footprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/images/footprint.png -------------------------------------------------------------------------------- /images/github-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/images/github-header.jpg -------------------------------------------------------------------------------- /images/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/images/grid.png -------------------------------------------------------------------------------- /images/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/images/overview.png -------------------------------------------------------------------------------- /images/productionstatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/images/productionstatus.png -------------------------------------------------------------------------------- /images/statustimes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/images/statustimes.png -------------------------------------------------------------------------------- /images/timers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/images/timers.png -------------------------------------------------------------------------------- /lib/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/lib/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /lib/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/lib/RestSharp.dll -------------------------------------------------------------------------------- /lib/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/lib/System.Data.SQLite.dll -------------------------------------------------------------------------------- /lib/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrakHound/TrakHound-Community/HEAD/lib/System.Net.Http.dll --------------------------------------------------------------------------------