Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ArcadeRenegade/SidebarDiagnostics
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.4.3
Choose a base ref
...
head repository: ArcadeRenegade/SidebarDiagnostics
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 21,714 additions and 2,828 deletions.
  1. +3 −0 .gitmodules
  2. +11 −0 ISSUE_TEMPLATE.md
  3. +674 −0 LICENSE.md
  4. +1 −0 LibreHardwareMonitor
  5. +26 −10 README.md
  6. +11 −2 SidebarDiagnostics.sln
  7. +22 −66 SidebarDiagnostics/App.config
  8. BIN SidebarDiagnostics/App.ico
  9. +217 −82 SidebarDiagnostics/App.xaml
  10. +186 −49 SidebarDiagnostics/App.xaml.cs
  11. +0 −292 SidebarDiagnostics/AppBar.xaml
  12. +0 −243 SidebarDiagnostics/AppBar.xaml.cs
  13. +322 −0 SidebarDiagnostics/ChangeLog.json
  14. +43 −0 SidebarDiagnostics/ChangeLog.xaml
  15. +28 −0 SidebarDiagnostics/ChangeLog.xaml.cs
  16. +100 −0 SidebarDiagnostics/ChangeLogModel.cs
  17. +8 −12 SidebarDiagnostics/Commands.cs
  18. +4 −13 SidebarDiagnostics/Constants.cs
  19. +59 −0 SidebarDiagnostics/Converters.cs
  20. +3 −14 SidebarDiagnostics/Dummy.xaml
  21. +25 −12 SidebarDiagnostics/Dummy.xaml.cs
  22. +55 −28 SidebarDiagnostics/FlatStyle.xaml
  23. +45 −3 SidebarDiagnostics/FlatStyle.xaml.cs
  24. +61 −0 SidebarDiagnostics/Graph.xaml
  25. +45 −0 SidebarDiagnostics/Graph.xaml.cs
  26. +424 −0 SidebarDiagnostics/GraphModel.cs
  27. BIN SidebarDiagnostics/Icon.ico
  28. +1,993 −756 SidebarDiagnostics/Monitoring.cs
  29. +4 −4 SidebarDiagnostics/Properties/AssemblyInfo.cs
  30. +2,084 −5 SidebarDiagnostics/Properties/Resources.Designer.cs
  31. 0 SidebarDiagnostics/Properties/Resources.ar.Designer.cs
  32. +1,044 −0 SidebarDiagnostics/Properties/Resources.ar.resx
  33. 0 SidebarDiagnostics/Properties/Resources.da.Designer.cs
  34. +408 −0 SidebarDiagnostics/Properties/Resources.da.resx
  35. 0 SidebarDiagnostics/Properties/Resources.de-CH.Designer.cs
  36. +992 −0 SidebarDiagnostics/Properties/Resources.de-CH.resx
  37. 0 SidebarDiagnostics/Properties/Resources.de.Designer.cs
  38. +408 −0 SidebarDiagnostics/Properties/Resources.de.resx
  39. 0 SidebarDiagnostics/Properties/Resources.es.Designer.cs
  40. +1,044 −0 SidebarDiagnostics/Properties/Resources.es.resx
  41. 0 SidebarDiagnostics/Properties/Resources.fi.Designer.cs
  42. +1,044 −0 SidebarDiagnostics/Properties/Resources.fi.resx
  43. 0 SidebarDiagnostics/Properties/Resources.fr.Designer.cs
  44. +1,040 −0 SidebarDiagnostics/Properties/Resources.fr.resx
  45. 0 SidebarDiagnostics/Properties/Resources.it.Designer.cs
  46. +1,044 −0 SidebarDiagnostics/Properties/Resources.it.resx
  47. 0 SidebarDiagnostics/Properties/Resources.ja.Designer.cs
  48. +408 −0 SidebarDiagnostics/Properties/Resources.ja.resx
  49. 0 SidebarDiagnostics/Properties/Resources.nl.Designer.cs
  50. +408 −0 SidebarDiagnostics/Properties/Resources.nl.resx
  51. +925 −2 SidebarDiagnostics/Properties/Resources.resx
  52. 0 SidebarDiagnostics/Properties/Resources.ru.Designer.cs
  53. +1,044 −0 SidebarDiagnostics/Properties/Resources.ru.resx
  54. +1,044 −0 SidebarDiagnostics/Properties/Resources.tr.resx
  55. 0 SidebarDiagnostics/Properties/Resources.zh.Designer.cs
  56. +1,043 −0 SidebarDiagnostics/Properties/Resources.zh.resx
  57. +0 −324 SidebarDiagnostics/Properties/Settings.Designer.cs
  58. +0 −81 SidebarDiagnostics/Properties/Settings.settings
  59. +3 −38 SidebarDiagnostics/Properties/app.manifest
  60. +679 −16 SidebarDiagnostics/Settings.cs
  61. +144 −102 SidebarDiagnostics/Settings.xaml
  62. +90 −55 SidebarDiagnostics/Settings.xaml.cs
  63. +406 −106 SidebarDiagnostics/SettingsModel.cs
  64. +27 −62 SidebarDiagnostics/Setup.xaml
  65. +15 −32 SidebarDiagnostics/Setup.xaml.cs
  66. BIN SidebarDiagnostics/Sidebar.ico
  67. +248 −0 SidebarDiagnostics/Sidebar.xaml
  68. +314 −0 SidebarDiagnostics/Sidebar.xaml.cs
  69. +254 −47 SidebarDiagnostics/SidebarDiagnostics.csproj
  70. +115 −14 SidebarDiagnostics/{AppBarModel.cs → SidebarModel.cs}
  71. +32 −0 SidebarDiagnostics/Update.xaml
  72. +61 −0 SidebarDiagnostics/Update.xaml.cs
  73. +42 −0 SidebarDiagnostics/UpdateModel.cs
  74. +0 −118 SidebarDiagnostics/Updates.cs
  75. +203 −11 SidebarDiagnostics/Utilities.cs
  76. +667 −224 SidebarDiagnostics/Windows.cs
  77. +14 −5 SidebarDiagnostics/packages.config
  78. +50 −0 resharper.svg
  79. BIN sidebar.ico
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "LibreHardwareMonitor"]
path = LibreHardwareMonitor
url = https://github.com/LibreHardwareMonitor/LibreHardwareMonitor.git
11 changes: 11 additions & 0 deletions ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
**1. Is this a feature request?**

*If yes then sorry but this project is not taking feature requests at this time.*

**2. Your Operating System**

**3. App Version**

**4. Any Relevant Settings**

**5. Steps to Reproduce**
Loading