From 64ee40afb06e1e46d1a95c2bee0604cc6667f52a Mon Sep 17 00:00:00 2001 From: crschnick Date: Sat, 9 Mar 2024 03:56:54 +0000 Subject: [PATCH] Improve winget support --- README.md | 4 +++- dist/build.gradle | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e61db2b3d..44b2586d3 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,9 @@ If you don't like installers, you can also use a portable version that is packag - [Windows .zip Portable (x86-64)](https://github.com/xpipe-io/xpipe/releases/latest/download/xpipe-portable-windows-x86_64.zip) -Alternatively, you can also use [choco](https://community.chocolatey.org/packages/xpipe) to install it with `choco install xpipe`. +Alternatively, you can also use the following package managers: +- [choco](https://community.chocolatey.org/packages/xpipe) to install it with `choco install xpipe`. +- [winget](https://github.com/microsoft/winget-cli) to install it with `winget install xpipe-io.xpipe --source winget`. ## Linux diff --git a/dist/build.gradle b/dist/build.gradle index 615ef7585..f87dfe699 100644 --- a/dist/build.gradle +++ b/dist/build.gradle @@ -88,5 +88,6 @@ if (rootProject.fullVersion) { apply from: 'aur.gradle' apply from: 'nix.gradle' apply from: 'choco.gradle' + apply from: 'winget.gradle' apply from: 'install.gradle' }