Skip to content

Commit

Permalink
Update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Sep 26, 2023
1 parent 2561895 commit 05c2d6b
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 72 deletions.
6 changes: 3 additions & 3 deletions core/Cores.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="H.NotifyIcon.WinUI" Version="2.0.77" />
<PackageReference Include="H.NotifyIcon.WinUI" Version="2.0.115" />
<PackageReference Include="LibreHardwareMonitorLib" Version="0.9.2" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.3.230724000" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.4.230913002" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.756" />
<PackageReference Include="WindowsDisplayAPI" Version="1.3.0.13" />
<PackageReference Include="WinUIEx" Version="2.1.0" />
<PackageReference Include="WinUIEx" Version="2.2.0" />
<Manifest Include="$(ApplicationManifest)" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion core/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public void SendAPI() {

App.GlobalHardwareInfo.API.System.OS.WebView = webView.CoreWebView2.Environment.BrowserVersionString;
App.GlobalHardwareInfo.API.System.OS.App = $"{appVersion.Major}.{appVersion.Minor}.{appVersion.Build}";
App.GlobalHardwareInfo.API.System.OS.Runtime = "1.3.230724000";
App.GlobalHardwareInfo.API.System.OS.Runtime = "1.4.230913002";

var message = new Message() {
Name = "api",
Expand Down
112 changes: 56 additions & 56 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
"devDependencies": {
"@baileyherbert/tinro": "^1.0.0",
"@crownframework/svelte-error-boundary": "^1.0.3",
"@sveltejs/vite-plugin-svelte": "^2.4.5",
"@tailwindcss/forms": "^0.5.5",
"autoprefixer": "^10.4.15",
"postcss": "^8.4.28",
"@sveltejs/vite-plugin-svelte": "^2.4.6",
"@tailwindcss/forms": "^0.5.6",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.30",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"svelte": "^3.59.1",
"svelte-check": "^3.5.0",
"svelte-check": "^3.5.2",
"svelte-preprocess": "^5.0.4",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
Expand Down
11 changes: 4 additions & 7 deletions prettier.config.cjs
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
module.exports = {
trailingComma: "es5",
trailingComma: "all",
tabWidth: 4,
printWidth: 1000,
printWidth: 150,
useTabs: true,
singleQuote: false,
semi: false,
svelteSortOrder: "options-markup-scripts-styles",
"plugins": [
"prettier-plugin-svelte",
"prettier-plugin-tailwindcss"
],
"pluginSearchDirs": false
plugins: ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
pluginSearchDirs: false,
}

0 comments on commit 05c2d6b

Please sign in to comment.