├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── enhancement.yml │ └── translation_issue.yml └── dependabot.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ConvertHistory ├── App.xaml ├── App.xaml.cs ├── AppInfo.cs ├── AssemblyInfo.cs ├── ConvertHistory.csproj ├── ConvertHistory.sln ├── GlobalUsings.cs ├── History.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── NLHelpers.cs ├── SettingsManager.cs ├── TV.ico └── UserSettings.cs ├── Images ├── TimVer_8_Dark.png ├── TimVer_8_Light.png ├── TimVer_8_settings.png ├── TimVer_9_D.png ├── TimVer_9_H.png ├── TimVer_9_V.png └── TimVer_9_W.png ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── TimVer.sln ├── TimVer ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Configuration │ ├── ConfigHelpers.cs │ ├── ConfigManager.cs │ ├── SettingChange.cs │ ├── TempSettings.cs │ └── UserSettings.cs ├── Constants │ └── AppConstString.cs ├── Converters │ ├── BoolToStringConverter.cs │ ├── BoolToVisibilityInverter.cs │ ├── BooleanInverter.cs │ ├── EnumBindingSourceExtension.cs │ ├── EnumDescriptionTypeConverter.cs │ ├── LocalizedDescriptionAttribute.cs │ ├── SelectedItemConverter.cs │ ├── SpacingConverter.cs │ └── TodayConverter.cs ├── Dialogs │ ├── MDCustMsgBox.xaml │ ├── MDCustMsgBox.xaml.cs │ └── SnackbarMsg.cs ├── GlobalUsings.cs ├── Helpers │ ├── AppInfo.cs │ ├── BiosHelpers.cs │ ├── ClipboardHelper.cs │ ├── CommandLineHelpers.cs │ ├── ComputerSystemHelpers.cs │ ├── DiskDriveHelpers.cs │ ├── EnumHelpers.cs │ ├── EnvironmentHelpers.cs │ ├── GitHubHelpers.cs │ ├── HistoryHelpers.cs │ ├── LocalizationHelpers.cs │ ├── MainWindowHelpers.cs │ ├── MemoryHelpers.cs │ ├── NLogHelpers.cs │ ├── OperatingSystemHelpers.cs │ ├── ProcessorHelpers.cs │ ├── RegistryHelpers.cs │ ├── ResourceHelpers.cs │ ├── SystemMetricsHelper.cs │ ├── TextFileViewer.cs │ ├── UefiHelpers.cs │ ├── VideoHelpers.cs │ └── WindowsInfoHelpers.cs ├── Images │ ├── InvertedTV.png │ ├── TV.ico │ └── TV.png ├── Inno_Setup │ ├── TimVerEx.iss │ └── TimVerLocalization.iss ├── LICENSE.txt ├── Languages │ ├── Strings.en-GB.xaml │ ├── Strings.en-US.xaml │ ├── Strings.es-ES.xaml │ ├── Strings.fr-FR.xaml │ ├── Strings.it-IT.xaml │ ├── Strings.ko-KR.xaml │ ├── Strings.nl-NL.xaml │ └── Strings.sk-SK.xaml ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models │ ├── ComputerInfo.cs │ ├── Enums.cs │ ├── EnvVariable.cs │ ├── History.cs │ ├── LogicalDrives.cs │ ├── NavigationItem.cs │ ├── PhysicalDrives.cs │ ├── UILanguage.cs │ └── WindowsInfo.cs ├── PowerShell │ └── GenBuildInfo.ps1 ├── Properties │ └── launchSettings.json ├── Readme.txt ├── Strings.test.xaml ├── Styles │ ├── ButtonStyles.xaml │ ├── DataGridStyles.xaml │ ├── NavigationStyles.xaml │ ├── ScrollBarStyle.xaml │ ├── SnackbarStyle.xaml │ └── TabItemStyles.xaml ├── TimVer.csproj ├── ViewModels │ ├── AboutViewModel.cs │ ├── ComputerInfoViewModel.cs │ ├── DriveInfoViewModel.cs │ ├── EnvVarViewModel.cs │ ├── HistoryViewModel.cs │ ├── NavigationViewModel.cs │ ├── SettingsViewModel.cs │ ├── VideoViewModel.cs │ └── WindowsInfoViewModel.cs └── Views │ ├── AboutPage.xaml │ ├── AboutPage.xaml.cs │ ├── ComputerInfoPage.xaml │ ├── ComputerInfoPage.xaml.cs │ ├── DrivesPage.xaml │ ├── DrivesPage.xaml.cs │ ├── EnvVarPage.xaml │ ├── EnvVarPage.xaml.cs │ ├── HistoryPage.xaml │ ├── HistoryPage.xaml.cs │ ├── SettingsPage.xaml │ ├── SettingsPage.xaml.cs │ ├── VideoPage.xaml │ ├── VideoPage.xaml.cs │ ├── WindowsInfoPage.xaml │ └── WindowsInfoPage.xaml.cs ├── global.json └── version.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/.github/ISSUE_TEMPLATE/enhancement.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/translation_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/.github/ISSUE_TEMPLATE/translation_issue.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ConvertHistory/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/App.xaml -------------------------------------------------------------------------------- /ConvertHistory/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/App.xaml.cs -------------------------------------------------------------------------------- /ConvertHistory/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/AppInfo.cs -------------------------------------------------------------------------------- /ConvertHistory/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/AssemblyInfo.cs -------------------------------------------------------------------------------- /ConvertHistory/ConvertHistory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/ConvertHistory.csproj -------------------------------------------------------------------------------- /ConvertHistory/ConvertHistory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/ConvertHistory.sln -------------------------------------------------------------------------------- /ConvertHistory/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/GlobalUsings.cs -------------------------------------------------------------------------------- /ConvertHistory/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/History.cs -------------------------------------------------------------------------------- /ConvertHistory/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/MainWindow.xaml -------------------------------------------------------------------------------- /ConvertHistory/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/MainWindow.xaml.cs -------------------------------------------------------------------------------- /ConvertHistory/NLHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/NLHelpers.cs -------------------------------------------------------------------------------- /ConvertHistory/SettingsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/SettingsManager.cs -------------------------------------------------------------------------------- /ConvertHistory/TV.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/TV.ico -------------------------------------------------------------------------------- /ConvertHistory/UserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/ConvertHistory/UserSettings.cs -------------------------------------------------------------------------------- /Images/TimVer_8_Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/Images/TimVer_8_Dark.png -------------------------------------------------------------------------------- /Images/TimVer_8_Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/Images/TimVer_8_Light.png -------------------------------------------------------------------------------- /Images/TimVer_8_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/Images/TimVer_8_settings.png -------------------------------------------------------------------------------- /Images/TimVer_9_D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/Images/TimVer_9_D.png -------------------------------------------------------------------------------- /Images/TimVer_9_H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/Images/TimVer_9_H.png -------------------------------------------------------------------------------- /Images/TimVer_9_V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/Images/TimVer_9_V.png -------------------------------------------------------------------------------- /Images/TimVer_9_W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/Images/TimVer_9_W.png -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/SECURITY.md -------------------------------------------------------------------------------- /TimVer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer.sln -------------------------------------------------------------------------------- /TimVer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/App.xaml -------------------------------------------------------------------------------- /TimVer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/App.xaml.cs -------------------------------------------------------------------------------- /TimVer/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/AssemblyInfo.cs -------------------------------------------------------------------------------- /TimVer/Configuration/ConfigHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Configuration/ConfigHelpers.cs -------------------------------------------------------------------------------- /TimVer/Configuration/ConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Configuration/ConfigManager.cs -------------------------------------------------------------------------------- /TimVer/Configuration/SettingChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Configuration/SettingChange.cs -------------------------------------------------------------------------------- /TimVer/Configuration/TempSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Configuration/TempSettings.cs -------------------------------------------------------------------------------- /TimVer/Configuration/UserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Configuration/UserSettings.cs -------------------------------------------------------------------------------- /TimVer/Constants/AppConstString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Constants/AppConstString.cs -------------------------------------------------------------------------------- /TimVer/Converters/BoolToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Converters/BoolToStringConverter.cs -------------------------------------------------------------------------------- /TimVer/Converters/BoolToVisibilityInverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Converters/BoolToVisibilityInverter.cs -------------------------------------------------------------------------------- /TimVer/Converters/BooleanInverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Converters/BooleanInverter.cs -------------------------------------------------------------------------------- /TimVer/Converters/EnumBindingSourceExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Converters/EnumBindingSourceExtension.cs -------------------------------------------------------------------------------- /TimVer/Converters/EnumDescriptionTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Converters/EnumDescriptionTypeConverter.cs -------------------------------------------------------------------------------- /TimVer/Converters/LocalizedDescriptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Converters/LocalizedDescriptionAttribute.cs -------------------------------------------------------------------------------- /TimVer/Converters/SelectedItemConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Converters/SelectedItemConverter.cs -------------------------------------------------------------------------------- /TimVer/Converters/SpacingConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Converters/SpacingConverter.cs -------------------------------------------------------------------------------- /TimVer/Converters/TodayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Converters/TodayConverter.cs -------------------------------------------------------------------------------- /TimVer/Dialogs/MDCustMsgBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Dialogs/MDCustMsgBox.xaml -------------------------------------------------------------------------------- /TimVer/Dialogs/MDCustMsgBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Dialogs/MDCustMsgBox.xaml.cs -------------------------------------------------------------------------------- /TimVer/Dialogs/SnackbarMsg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Dialogs/SnackbarMsg.cs -------------------------------------------------------------------------------- /TimVer/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/GlobalUsings.cs -------------------------------------------------------------------------------- /TimVer/Helpers/AppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/AppInfo.cs -------------------------------------------------------------------------------- /TimVer/Helpers/BiosHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/BiosHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/ClipboardHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/ClipboardHelper.cs -------------------------------------------------------------------------------- /TimVer/Helpers/CommandLineHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/CommandLineHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/ComputerSystemHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/ComputerSystemHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/DiskDriveHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/DiskDriveHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/EnumHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/EnumHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/EnvironmentHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/EnvironmentHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/GitHubHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/GitHubHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/HistoryHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/HistoryHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/LocalizationHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/LocalizationHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/MainWindowHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/MainWindowHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/MemoryHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/MemoryHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/NLogHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/NLogHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/OperatingSystemHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/OperatingSystemHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/ProcessorHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/ProcessorHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/RegistryHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/RegistryHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/ResourceHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/ResourceHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/SystemMetricsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/SystemMetricsHelper.cs -------------------------------------------------------------------------------- /TimVer/Helpers/TextFileViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/TextFileViewer.cs -------------------------------------------------------------------------------- /TimVer/Helpers/UefiHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/UefiHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/VideoHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/VideoHelpers.cs -------------------------------------------------------------------------------- /TimVer/Helpers/WindowsInfoHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Helpers/WindowsInfoHelpers.cs -------------------------------------------------------------------------------- /TimVer/Images/InvertedTV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Images/InvertedTV.png -------------------------------------------------------------------------------- /TimVer/Images/TV.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Images/TV.ico -------------------------------------------------------------------------------- /TimVer/Images/TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Images/TV.png -------------------------------------------------------------------------------- /TimVer/Inno_Setup/TimVerEx.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Inno_Setup/TimVerEx.iss -------------------------------------------------------------------------------- /TimVer/Inno_Setup/TimVerLocalization.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Inno_Setup/TimVerLocalization.iss -------------------------------------------------------------------------------- /TimVer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/LICENSE.txt -------------------------------------------------------------------------------- /TimVer/Languages/Strings.en-GB.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Languages/Strings.en-GB.xaml -------------------------------------------------------------------------------- /TimVer/Languages/Strings.en-US.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Languages/Strings.en-US.xaml -------------------------------------------------------------------------------- /TimVer/Languages/Strings.es-ES.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Languages/Strings.es-ES.xaml -------------------------------------------------------------------------------- /TimVer/Languages/Strings.fr-FR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Languages/Strings.fr-FR.xaml -------------------------------------------------------------------------------- /TimVer/Languages/Strings.it-IT.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Languages/Strings.it-IT.xaml -------------------------------------------------------------------------------- /TimVer/Languages/Strings.ko-KR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Languages/Strings.ko-KR.xaml -------------------------------------------------------------------------------- /TimVer/Languages/Strings.nl-NL.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Languages/Strings.nl-NL.xaml -------------------------------------------------------------------------------- /TimVer/Languages/Strings.sk-SK.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Languages/Strings.sk-SK.xaml -------------------------------------------------------------------------------- /TimVer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/MainWindow.xaml -------------------------------------------------------------------------------- /TimVer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /TimVer/Models/ComputerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Models/ComputerInfo.cs -------------------------------------------------------------------------------- /TimVer/Models/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Models/Enums.cs -------------------------------------------------------------------------------- /TimVer/Models/EnvVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Models/EnvVariable.cs -------------------------------------------------------------------------------- /TimVer/Models/History.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Models/History.cs -------------------------------------------------------------------------------- /TimVer/Models/LogicalDrives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Models/LogicalDrives.cs -------------------------------------------------------------------------------- /TimVer/Models/NavigationItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Models/NavigationItem.cs -------------------------------------------------------------------------------- /TimVer/Models/PhysicalDrives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Models/PhysicalDrives.cs -------------------------------------------------------------------------------- /TimVer/Models/UILanguage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Models/UILanguage.cs -------------------------------------------------------------------------------- /TimVer/Models/WindowsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Models/WindowsInfo.cs -------------------------------------------------------------------------------- /TimVer/PowerShell/GenBuildInfo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/PowerShell/GenBuildInfo.ps1 -------------------------------------------------------------------------------- /TimVer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Properties/launchSettings.json -------------------------------------------------------------------------------- /TimVer/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Readme.txt -------------------------------------------------------------------------------- /TimVer/Strings.test.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Strings.test.xaml -------------------------------------------------------------------------------- /TimVer/Styles/ButtonStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Styles/ButtonStyles.xaml -------------------------------------------------------------------------------- /TimVer/Styles/DataGridStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Styles/DataGridStyles.xaml -------------------------------------------------------------------------------- /TimVer/Styles/NavigationStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Styles/NavigationStyles.xaml -------------------------------------------------------------------------------- /TimVer/Styles/ScrollBarStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Styles/ScrollBarStyle.xaml -------------------------------------------------------------------------------- /TimVer/Styles/SnackbarStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Styles/SnackbarStyle.xaml -------------------------------------------------------------------------------- /TimVer/Styles/TabItemStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Styles/TabItemStyles.xaml -------------------------------------------------------------------------------- /TimVer/TimVer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/TimVer.csproj -------------------------------------------------------------------------------- /TimVer/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /TimVer/ViewModels/ComputerInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/ViewModels/ComputerInfoViewModel.cs -------------------------------------------------------------------------------- /TimVer/ViewModels/DriveInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/ViewModels/DriveInfoViewModel.cs -------------------------------------------------------------------------------- /TimVer/ViewModels/EnvVarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/ViewModels/EnvVarViewModel.cs -------------------------------------------------------------------------------- /TimVer/ViewModels/HistoryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/ViewModels/HistoryViewModel.cs -------------------------------------------------------------------------------- /TimVer/ViewModels/NavigationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/ViewModels/NavigationViewModel.cs -------------------------------------------------------------------------------- /TimVer/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /TimVer/ViewModels/VideoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/ViewModels/VideoViewModel.cs -------------------------------------------------------------------------------- /TimVer/ViewModels/WindowsInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/ViewModels/WindowsInfoViewModel.cs -------------------------------------------------------------------------------- /TimVer/Views/AboutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/AboutPage.xaml -------------------------------------------------------------------------------- /TimVer/Views/AboutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/AboutPage.xaml.cs -------------------------------------------------------------------------------- /TimVer/Views/ComputerInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/ComputerInfoPage.xaml -------------------------------------------------------------------------------- /TimVer/Views/ComputerInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/ComputerInfoPage.xaml.cs -------------------------------------------------------------------------------- /TimVer/Views/DrivesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/DrivesPage.xaml -------------------------------------------------------------------------------- /TimVer/Views/DrivesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/DrivesPage.xaml.cs -------------------------------------------------------------------------------- /TimVer/Views/EnvVarPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/EnvVarPage.xaml -------------------------------------------------------------------------------- /TimVer/Views/EnvVarPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/EnvVarPage.xaml.cs -------------------------------------------------------------------------------- /TimVer/Views/HistoryPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/HistoryPage.xaml -------------------------------------------------------------------------------- /TimVer/Views/HistoryPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/HistoryPage.xaml.cs -------------------------------------------------------------------------------- /TimVer/Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /TimVer/Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /TimVer/Views/VideoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/VideoPage.xaml -------------------------------------------------------------------------------- /TimVer/Views/VideoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/VideoPage.xaml.cs -------------------------------------------------------------------------------- /TimVer/Views/WindowsInfoPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/WindowsInfoPage.xaml -------------------------------------------------------------------------------- /TimVer/Views/WindowsInfoPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/TimVer/Views/WindowsInfoPage.xaml.cs -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/global.json -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timthreetwelve/TimVer/HEAD/version.json --------------------------------------------------------------------------------