├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── ChiaPlotStatus.csproj ├── ChiaPlotStatus.sln ├── ChiaPlotStatusCli ├── CLI │ ├── CLI.cs │ └── CliOptions.cs ├── ChiaPlotStatusCli.csproj └── Icon - Color changed.ico ├── ChiaPlotStatusGUI ├── ChiaPlotStatusGUI.csproj ├── ChiaPlotStatusGUI.csproj.user ├── Directory.Build.props ├── GUI │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ │ ├── Logo.jpg │ │ ├── Logo.png │ │ ├── avalonia-logo.ico │ │ └── en.yaml │ ├── Models │ │ ├── HighlightedText.cs │ │ ├── PlotCounts.cs │ │ └── Translation.cs │ ├── Program.cs │ ├── Utils │ │ └── Utils.cs │ ├── ViewLocator.cs │ ├── ViewModels │ │ ├── MainWindowViewModel.cs │ │ └── ViewModelBase.cs │ ├── Views │ │ ├── ChiaPlotterDialog.axaml │ │ ├── ChiaPlotterDialog.axaml.cs │ │ ├── DonationDialog.axaml │ │ ├── DonationDialog.axaml.cs │ │ ├── HarvestDialog.axaml │ │ ├── HarvestDialog.axaml.cs │ │ ├── MainWindow.axaml │ │ ├── MainWindow.axaml.cs │ │ ├── MarkOfDeathDialog.axaml │ │ ├── MarkOfDeathDialog.axaml.cs │ │ ├── NoteDialog.axaml │ │ ├── NoteDialog.axaml.cs │ │ ├── StatisticsDialog.axaml │ │ ├── StatisticsDialog.axaml.cs │ │ ├── UpdateDialog.axaml │ │ └── UpdateDialog.axaml.cs │ └── nuget.config ├── Icon - Color changed.ico ├── chia-plot-status.desktop └── chia-plot-status.png ├── ChiaPlotStatusLib ├── ChiaPlotStatusLib.csproj └── Logic │ ├── ChiaPlotStatus.cs │ ├── Models │ ├── CPPlotLog.cs │ ├── CPPlotLogReadable.cs │ ├── Columns.cs │ ├── Filter.cs │ ├── Health.cs │ ├── MarkOfDeath.cs │ ├── Note.cs │ ├── PlotLog.cs │ ├── PlotLogReadable.cs │ └── Settings.cs │ ├── Parser │ ├── CPPlotLogFileParser.cs │ ├── PlotLogFileParser.cs │ ├── PlotParserCache.cs │ └── TailLineEmitter.cs │ ├── Statistics │ ├── CPPlottingStatistics.cs │ ├── Harvest │ │ ├── Harvest.cs │ │ ├── HarvestParser.cs │ │ ├── HarvestSummary.cs │ │ └── HarvestSummeryReadable.cs │ ├── PlottingStatistics.cs │ ├── PlottingStatisticsDay.cs │ ├── PlottingStatisticsDayReadable.cs │ ├── PlottingStatisticsFull.cs │ ├── PlottingStatisticsFullReadable.cs │ ├── PlottingStatisticsHolder.cs │ ├── PlottingStatisticsID.cs │ └── PlottingStatisticsIdRelevanceWeights.cs │ └── Utils │ ├── Exporter.cs │ ├── Formatter.cs │ ├── SearchFilter.cs │ └── Sorter.cs ├── Directory.Build.props ├── Icon - Color changed.ico ├── InstallerConfig.ifp ├── LICENSE ├── Logo ├── Icon - Color changed.ico ├── Icon - Color changed.jpg ├── Icon - Color changed.png ├── Icon - Color changed.svg ├── Icon - Original.svg └── Icon - Readme.txt ├── NuGet.Config ├── Properties ├── PublishProfiles │ ├── FolderProfile.pubxml │ └── FolderProfile.pubxml.user ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── Screenshots ├── Screenshot-Dark.jpg └── Screenshot.jpg ├── grayfallstown.pfx ├── next-minor.ps1 ├── next-patch.ps1 └── release.ps1 /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/.gitignore -------------------------------------------------------------------------------- /ChiaPlotStatus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatus.csproj -------------------------------------------------------------------------------- /ChiaPlotStatus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatus.sln -------------------------------------------------------------------------------- /ChiaPlotStatusCli/CLI/CLI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusCli/CLI/CLI.cs -------------------------------------------------------------------------------- /ChiaPlotStatusCli/CLI/CliOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusCli/CLI/CliOptions.cs -------------------------------------------------------------------------------- /ChiaPlotStatusCli/ChiaPlotStatusCli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusCli/ChiaPlotStatusCli.csproj -------------------------------------------------------------------------------- /ChiaPlotStatusCli/Icon - Color changed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusCli/Icon - Color changed.ico -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/ChiaPlotStatusGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/ChiaPlotStatusGUI.csproj -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/ChiaPlotStatusGUI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/ChiaPlotStatusGUI.csproj.user -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/Directory.Build.props -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/App.axaml -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/App.axaml.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Assets/Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Assets/Logo.jpg -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Assets/Logo.png -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Assets/avalonia-logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Assets/avalonia-logo.ico -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Assets/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Assets/en.yaml -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Models/HighlightedText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Models/HighlightedText.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Models/PlotCounts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Models/PlotCounts.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Models/Translation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Models/Translation.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Program.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Utils/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Utils/Utils.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/ViewLocator.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/ChiaPlotterDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/ChiaPlotterDialog.axaml -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/ChiaPlotterDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/ChiaPlotterDialog.axaml.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/DonationDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/DonationDialog.axaml -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/DonationDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/DonationDialog.axaml.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/HarvestDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/HarvestDialog.axaml -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/HarvestDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/HarvestDialog.axaml.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/MainWindow.axaml -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/MarkOfDeathDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/MarkOfDeathDialog.axaml -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/MarkOfDeathDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/MarkOfDeathDialog.axaml.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/NoteDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/NoteDialog.axaml -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/NoteDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/NoteDialog.axaml.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/StatisticsDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/StatisticsDialog.axaml -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/StatisticsDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/StatisticsDialog.axaml.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/UpdateDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/UpdateDialog.axaml -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/Views/UpdateDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/Views/UpdateDialog.axaml.cs -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/GUI/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/GUI/nuget.config -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/Icon - Color changed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/Icon - Color changed.ico -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/chia-plot-status.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/chia-plot-status.desktop -------------------------------------------------------------------------------- /ChiaPlotStatusGUI/chia-plot-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusGUI/chia-plot-status.png -------------------------------------------------------------------------------- /ChiaPlotStatusLib/ChiaPlotStatusLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/ChiaPlotStatusLib.csproj -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/ChiaPlotStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/ChiaPlotStatus.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Models/CPPlotLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Models/CPPlotLog.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Models/CPPlotLogReadable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Models/CPPlotLogReadable.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Models/Columns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Models/Columns.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Models/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Models/Filter.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Models/Health.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Models/Health.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Models/MarkOfDeath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Models/MarkOfDeath.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Models/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Models/Note.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Models/PlotLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Models/PlotLog.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Models/PlotLogReadable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Models/PlotLogReadable.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Models/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Models/Settings.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Parser/CPPlotLogFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Parser/CPPlotLogFileParser.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Parser/PlotLogFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Parser/PlotLogFileParser.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Parser/PlotParserCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Parser/PlotParserCache.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Parser/TailLineEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Parser/TailLineEmitter.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Statistics/CPPlottingStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Statistics/CPPlottingStatistics.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Statistics/Harvest/Harvest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Statistics/Harvest/Harvest.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Statistics/Harvest/HarvestParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Statistics/Harvest/HarvestParser.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Statistics/Harvest/HarvestSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Statistics/Harvest/HarvestSummary.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Statistics/Harvest/HarvestSummeryReadable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Statistics/Harvest/HarvestSummeryReadable.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Statistics/PlottingStatistics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Statistics/PlottingStatistics.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsDay.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsDayReadable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsDayReadable.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsFull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsFull.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsFullReadable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsFullReadable.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsHolder.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsID.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsIdRelevanceWeights.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Statistics/PlottingStatisticsIdRelevanceWeights.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Utils/Exporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Utils/Exporter.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Utils/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Utils/Formatter.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Utils/SearchFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Utils/SearchFilter.cs -------------------------------------------------------------------------------- /ChiaPlotStatusLib/Logic/Utils/Sorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/ChiaPlotStatusLib/Logic/Utils/Sorter.cs -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Icon - Color changed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Icon - Color changed.ico -------------------------------------------------------------------------------- /InstallerConfig.ifp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/InstallerConfig.ifp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/LICENSE -------------------------------------------------------------------------------- /Logo/Icon - Color changed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Logo/Icon - Color changed.ico -------------------------------------------------------------------------------- /Logo/Icon - Color changed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Logo/Icon - Color changed.jpg -------------------------------------------------------------------------------- /Logo/Icon - Color changed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Logo/Icon - Color changed.png -------------------------------------------------------------------------------- /Logo/Icon - Color changed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Logo/Icon - Color changed.svg -------------------------------------------------------------------------------- /Logo/Icon - Original.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Logo/Icon - Original.svg -------------------------------------------------------------------------------- /Logo/Icon - Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Logo/Icon - Readme.txt -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/NuGet.Config -------------------------------------------------------------------------------- /Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /Properties/PublishProfiles/FolderProfile.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Properties/PublishProfiles/FolderProfile.pubxml.user -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/Screenshot-Dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Screenshots/Screenshot-Dark.jpg -------------------------------------------------------------------------------- /Screenshots/Screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/Screenshots/Screenshot.jpg -------------------------------------------------------------------------------- /grayfallstown.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/grayfallstown.pfx -------------------------------------------------------------------------------- /next-minor.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/next-minor.ps1 -------------------------------------------------------------------------------- /next-patch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/next-patch.ps1 -------------------------------------------------------------------------------- /release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grayfallstown/Chia-Plot-Status/HEAD/release.ps1 --------------------------------------------------------------------------------