diff --git a/.github/workflows/scriptAnalyzer.yaml b/.github/workflows/scriptAnalyzer.yaml index e0578c2c19dfb..12635bbee84c0 100644 --- a/.github/workflows/scriptAnalyzer.yaml +++ b/.github/workflows/scriptAnalyzer.yaml @@ -6,9 +6,11 @@ on: - master paths: - "**/*.ps1" + - "**/*.psm1" push: paths: - "**/*.ps1" + - "**/*.psm1" permissions: contents: read # Needed to check out the code @@ -26,7 +28,8 @@ jobs: - name: Run PSScriptAnalyzer run: | # Run PSScriptAnalyzer on all PowerShell scripts - $results = Get-ChildItem -Recurse -Filter *.ps1 | Invoke-ScriptAnalyzer + $results = @(Get-ChildItem -Recurse -Filter *.ps1 | Invoke-ScriptAnalyzer) + $results += @(Get-ChildItem -Recurse -Filter *.psm1 | Invoke-ScriptAnalyzer) if ($results) { Write-Output $results | Format-List -GroupBy ScriptName } diff --git a/Tools/Build-MinWinVHD.ps1 b/Tools/Build-MinWinVHD.ps1 new file mode 100644 index 0000000000000..e753655e2dce2 --- /dev/null +++ b/Tools/Build-MinWinVHD.ps1 @@ -0,0 +1,193 @@ +# ================================ +# Minimal Windows 11 VHDX Builder +# ================================ +# Run as Administrator + +#Requires -Version 5.1 +#Requires -RunAsAdministrator +[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingWriteHost', '', Justification = 'This script is not intended to have any outputs piped')] + +param +( + [Parameter( + Mandatory = $true, + HelpMessage = 'Drive letter where Windows 11 ISO is mounted (e.g., D:)' + )] [string] $IsoDrive = 'D:', + [Parameter( + Mandatory = $true, + HelpMessage = 'Index of the Windows 11 edition to install from the image (use /Get-ImageInfo to check)' + )] [ValidateRange(1, 10)] [int] $ImageIndex = 1, + [Parameter( + Mandatory = $true, + HelpMessage = 'Path to create the VHDX file (e.g., C:\MinWin11.vhdx)' + )] [string] $VhdPath = 'C:\MinWin11.vhdx', + [Parameter( + Mandatory = $false, + HelpMessage = 'Size of the VHDX in GB' + )] [ValidateRange(20, [int]::MaxValue)] [int] $VhdSizeGB = 25, + [Parameter( + Mandatory = $false, + HelpMessage = 'Name of the Hyper-V VM to create (optional)' + )] [string] $VmName = 'MinWin11' +) + +Write-Host '=== Step 0: Prepare paths and image info ===' -ForegroundColor Cyan + +# Determine install.wim or install.esd path +$InstallWim = Join-Path $IsoDrive 'sources\install.wim' +if (-not (Test-Path $InstallWim)) { + $InstallWim = Join-Path $IsoDrive 'sources\install.esd' +} + +# Verify image file exists +if (-not (Test-Path $InstallWim)) { + throw "Cannot find install.wim or install.esd on $IsoDrive. Mount a Windows 11 ISO and update `\$IsoDrive`." +} + +Write-Host "Using image file: $InstallWim" -ForegroundColor Yellow + +Write-Host '=== Step 1: Create and initialize VHDX ===' -ForegroundColor Cyan + +# Create VHDX +New-VHD -Path $VhdPath -SizeBytes ("${VhdSizeGB}GB") -Dynamic | Out-Null + +# Mount and initialize +$disk = Mount-VHD -Path $VhdPath -Passthru +Initialize-Disk -Number $disk.Number -PartitionStyle GPT | Out-Null + +# Create EFI + OS partitions +$efiPartition = New-Partition -DiskNumber $disk.Number -Size 100MB -GptType '{C12A7328-F81F-11D2-BA4B-00A0C93EC93B}' -AssignDriveLetter +$osPartition = New-Partition -DiskNumber $disk.Number -UseMaximumSize -AssignDriveLetter + +# Format partitions +Format-Volume -Partition $efiPartition -FileSystem FAT32 -NewFileSystemLabel 'System' -Confirm:$false | Out-Null +Format-Volume -Partition $osPartition -FileSystem NTFS -NewFileSystemLabel 'Windows' -Confirm:$false | Out-Null + +$EfiDrive = ($efiPartition | Get-Volume).DriveLetter + ':' +$OsDrive = ($osPartition | Get-Volume).DriveLetter + ':' + +Write-Host "EFI drive: $EfiDrive OS drive: $OsDrive" -ForegroundColor Yellow + + +Write-Host '=== Step 2: Apply Windows image to OS partition ===' -ForegroundColor Cyan + +# If using ESD, DISM can still apply directly +dism /Apply-Image /ImageFile:$InstallWim /Index:$ImageIndex /ApplyDir:$OsDrive | Out-Null + + +Write-Host '=== Step 3: Basic boot configuration ===' -ForegroundColor Cyan + +# Create boot files on EFI partition +bcdboot "$OsDrive\Windows" /s $EfiDrive /f UEFI | Out-Null + + +Write-Host '=== Step 4: Mount offline image for servicing ===' -ForegroundColor Cyan + +# Mount the OS volume as an offline image for DISM servicing +$MountDir = 'D:\Mount_MinWin11' +if (-not (Test-Path $MountDir)) { + New-Item -ItemType Directory -Path $MountDir | Out-Null +} + +# Use DISM to mount the offline image +dism /Mount-Image /ImageFile:$InstallWim /Index:$ImageIndex /MountDir:$MountDir /ReadOnly | Out-Null + +# NOTE: +# We will service the *applied* OS at $OsDrive, not the ISO image. +# For feature removal, we target the offline OS with /Image:$OsDrive not /Image:$MountDir. + +Write-Host '=== Step 5: Remove optional features (offline) ===' -ForegroundColor Cyan + +# You can see available features with: +# dism /Image:$OsDrive /Get-Features + +# Aggressive feature removal list (adjust to taste) +$featuresToDisable = @( + 'FaxServicesClientPackage', + 'Printing-Foundation-Features', + 'Printing-PrintToPDFServices-Features', + 'Printing-XPSServices-Features', + 'MSRDC-Infrastructure', + 'Microsoft-Windows-Subsystem-Linux', + 'MediaPlayback' , + 'WindowsMediaPlayer', + 'WorkFolders-Client', + 'SMB1Protocol', + 'WCF-Services45', + 'WCF-TCP-PortSharing45', + 'IIS-WebServerRole', + 'IIS-WebServer', + 'IIS-DefaultDocument', + 'IIS-DirectoryBrowsing', + 'IIS-HttpErrors', + 'IIS-StaticContent', + 'IIS-HttpRedirect', + 'IIS-ApplicationDevelopment', + 'IIS-ISAPIExtensions', + 'IIS-ISAPIFilter', + # "IIS-NetFxExtensibility45", + 'IIS-ASPNET45', + 'IIS-HealthAndDiagnostics', + 'IIS-HttpLogging', + 'IIS-LoggingLibraries', + 'IIS-RequestMonitor', + 'IIS-HttpTracing', + 'IIS-Security', + 'IIS-RequestFiltering', + 'IIS-IPSecurity', + 'IIS-Performance', + 'IIS-HttpCompressionStatic', + 'IIS-WebServerManagementTools', + 'IIS-IIS6ManagementCompatibility', + 'IIS-Metabase', + 'IIS-HostableWebCore' +) + +foreach ($feature in $featuresToDisable) { + Write-Host "Disabling feature: $feature" -ForegroundColor DarkYellow + dism /Image:$OsDrive /Disable-Feature /FeatureName:$feature /Remove | Out-Null +} + +Write-Host '=== Step 6: Remove provisioned apps (offline) ===' -ForegroundColor Cyan + +# Remove all provisioned appx packages except Store and framework (adjust as needed) +$ProvisionedApps = dism /Image:$OsDrive /Get-ProvisionedAppxPackages | Select-String 'PackageName' +foreach ($line in $ProvisionedApps) { + $pkg = $line.ToString().Split(':')[1].Trim() + if ($pkg -notlike '*Store*' -and $pkg -notlike '*NET*' -and $pkg -notlike '*AppInstaller*') { + Write-Host "Removing provisioned app: $pkg" -ForegroundColor DarkYellow + dism /Image:$OsDrive /Remove-ProvisionedAppxPackage /PackageName:$pkg | Out-Null + } +} + +Write-Host '=== Step 7: WinSxS cleanup and image optimization ===' -ForegroundColor Cyan + +# Component store cleanup to reduce size +dism /Image:$OsDrive /Cleanup-Image /StartComponentCleanup /ResetBase | Out-Null + +Write-Host '=== Step 8: Unmount temporary mount and clean up ===' -ForegroundColor Cyan + +# Unmount DISM image +dism /Unmount-Image /MountDir:$MountDir /Discard | Out-Null +# Remove mount directory +Remove-Item $MountDir -Recurse -Force | Out-Null + +# Dismount VHD (you can leave it mounted if you want to inspect it) +Dismount-VHD -Path $VhdPath + +Write-Host '=== Step 9: (Optional) Create a Hyper-V VM using this VHDX ===' -ForegroundColor Cyan + +# Create a Hyper-V VM if Hyper-V module is available +if (Get-Command New-VM -ErrorAction SilentlyContinue) { + if (-not (Get-VM -Name $VmName -ErrorAction SilentlyContinue)) { + New-VM -Name $VmName -MemoryStartupBytes 2GB -Generation 2 -VHDPath $VhdPath | Out-Null + Set-VMFirmware -VMName $VmName -FirstBootDevice (Get-VMFirmware -VMName $VmName).BootOrder[0] + Write-Host "Created Hyper-V VM '$VmName' using $VhdPath" -ForegroundColor Green + } else { + Write-Host "Hyper-V VM '$VmName' already exists. Attach $VhdPath manually if needed." -ForegroundColor Yellow + } +} else { + Write-Host "Hyper-V module not available. Create a VM manually and attach $VhdPath." -ForegroundColor Yellow +} + +Write-Host "=== DONE. Minimal Windows 11 VHDX created at $VhdPath ===" -ForegroundColor Green diff --git a/doc/tools/Build-MinWinVHD.md b/doc/tools/Build-MinWinVHD.md new file mode 100644 index 0000000000000..d31f193a39861 --- /dev/null +++ b/doc/tools/Build-MinWinVHD.md @@ -0,0 +1,96 @@ +# Using Build-MinWin11.ps1 + +The [Build-MinWinVHD.ps1](Tools/Build-MinWinVHD.ps1) script creates a new `V`irtual `H`ard `D`isk (VHD) using a mounted Windows ISO for use with a virtual machine. This image will have as few dependencies and apps enabled as possible, to provide the best approximation of the images uses by the validation pipelines. Although this is not the same image, it should be close enough to use for testing manifests for those who are unable to use Windows Sandbox and [SandboxTest.ps1](doc/tools/SandboxTest.ps1). + +## Summary + +This script creates a dynamically sized VHDX, initializes GPT partitions (EFI + OS), applies a Windows image from a mounted ISO, configures basic UEFI boot, services the offline image (removes features / provisioned apps), and optionally creates a Hyper-V VM using the VHDX. + +## Prerequisites + +- **Run as Administrator:** The script must be executed from an elevated PowerShell session. +- **PowerShell version:** Requires PowerShell 5.1 or newer due to use of built-in cmdlets and DISM commands. +- **Windows ISO downloaded and mounted:** Mount the Windows 11 ISO (right-click -> Mount, or use `Mount-DiskImage`) and note the assigned drive letter (e.g., `D:`). ISO images can be downloaded from the official Microsoft page: https://www.microsoft.com/software-download/windows11 +- **DISM and bcdboot:** The script uses the built-in `dism` and `bcdboot` utilities. Ensure these commands are present on your path. +- **Hyper-V (optional):** If the Hyper-V module is available and you want a VM created automatically, ensure Hyper-V is enabled and that you can manually create a new VM. + +> [!IMPORTANT] +> The script includes an "aggressive" list of features and provisioned app removals. Review the script before running if you need specific Windows features or provisioned packages preserved. + +## Parameters + +| Argument | Description | Required | Default | +|------------------------------|-----------------------------------------------------------------------------|:--------:|:-------:| +| **-IsoDrive** | Drive letter where the Windows ISO is mounted (string). Example: D:. | true | — | +| **-ImageIndex** | Index of the Windows image within `install.wim` or `install.esd` (int). Use DISM to list available indexes (for example `dism /Get-WimInfo /WimFile:D:\sources\install.wim`). | true | — | +| **-VhdPath** | Full path to create the VHDX file (string). Example: `C:\MinWin11.vhdx`. | true | — | +| **-VhdSizeGB** | Size of the VHDX in GB (int). | false | 25 | +| **-VmName** | Name of the Hyper-V VM to create (string). | false | MinWin11 | + +## How to determine image index + +Use DISM to list images in the WIM/ESD on the mounted ISO. Replace `D:` with your ISO drive letter: + +```powershell +# For WIM +dism /Get-WimInfo /WimFile:D:\sources\install.wim + +# For ESD (DISM supports reading ESD similarly) +dism /Get-ImageInfo /ImageFile:D:\sources\install.esd +``` + +Look for the `Index :` value you want to apply (for example, 1 for the first edition). + +## Basic usage examples + +Open an elevated PowerShell prompt and run (example values shown): + +```powershell +# From the Tools folder +cd \Tools + +# Basic: create a 25GB dynamic VHDX from the image at D:, using index 1 +.\Build-MinWin11.ps1 -IsoDrive D: -ImageIndex 1 -VhdPath C:\MinWin11.vhdx + +# With custom size and VM name +.\Build-MinWin11.ps1 -IsoDrive D: -ImageIndex 2 -VhdPath C:\MinWin11.vhdx -VhdSizeGB 40 -VmName "MyMinWin11" +``` + +## What the script does (high level) + +- Locates `install.wim` or `install.esd` on the mounted ISO at `\sources`. +- Creates a dynamic VHDX at the path provided (`-VhdPath`) and mounts it. +- Initializes the disk as GPT and creates a 100MB EFI partition and the remaining OS partition. +- Formats the partitions (EFI = FAT32, OS = NTFS). +- Applies the Windows image to the OS partition using `dism /Apply-Image`. +- Creates UEFI boot files with `bcdboot`. +- Mounts an offline copy of the image for servicing and removes a predefined list of optional features and provisioned appx packages (see script for the removal list). +- Runs component-store cleanup (`/StartComponentCleanup /ResetBase`) to reduce size. +- Dismounts VHD and optionally creates a Hyper-V VM named `-VmName` if the Hyper-V cmdlets are present. + +## Output + +- A VHDX file at the path specified by `-VhdPath` (e.g., `C:\MinWin11.vhdx`). +- If Hyper-V is available and `-VmName` does not exist, a new Gen 2 VM is created and attached to the VHDX. + +## Warnings & tips + +- The script will throw an error if it cannot locate `install.wim` or `install.esd` in the ISO `sources` folder. +- Review and edit the features/provisioned-app removal lists in the script before running in production environments — the defaults are aggressive and intended for minimal builds. +- If you prefer to inspect the VHD before dismounting, modify the script or run the VHD mounting steps manually. +- Ensure sufficient free space on the volume where `-VhdPath` is located. + +## Troubleshooting + +- If the ISO is not mounted as a drive letter, use `Mount-DiskImage -ImagePath "C:\path\to\Win11.iso"` and then run `Get-Volume` or check Explorer to find the assigned drive letter. +- If `dism /Apply-Image` fails, verify the `-ImageIndex` value, and confirm whether the image file is `install.wim` or `install.esd`. +- If Hyper-V VM creation fails, verify the `Hyper-V` Windows feature is enabled and that you are running elevated PowerShell. + +## Using with other VM Providers + +- The produced VHDX (`C:\MinWin11.vhdx`) can be used with other hypervisors, but many providers require a different disk format; convert the VHDX to the format your provider expects before attaching. +- QEMU/KVM: convert to `qcow2` with `qemu-img convert -O qcow2`. +- VMware: convert to `vmdk` with `qemu-img convert -O vmdk` (or use VMware tools if available). +- VirtualBox: use `VBoxManage clonemedium disk --format VDI` or convert with `qemu-img` to `vdi`/`vmdk` as needed. +- Before converting, ensure the VHDX is dismounted and not in use. After conversion, attach the converted disk to a VM configured for UEFI/GPT (Gen2/EFI) and the appropriate disk controller. +- Expect to install or enable guest additions/tools for the target hypervisor and verify drivers (network, storage) inside the guest; hardware differences may require small post-boot fixes. diff --git a/manifests/c/CPUID/HWMonitor/1.61/CPUID.HWMonitor.installer.yaml b/manifests/c/CPUID/HWMonitor/1.61/CPUID.HWMonitor.installer.yaml new file mode 100644 index 0000000000000..cccf479b4f365 --- /dev/null +++ b/manifests/c/CPUID/HWMonitor/1.61/CPUID.HWMonitor.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CPUID.HWMonitor +PackageVersion: "1.61" +InstallerLocale: en-US +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: CPUID HWMonitor_is1 +ReleaseDate: 2025-12-26 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\CPUID\HWMonitor' +Installers: +- Architecture: x86 + InstallerUrl: https://download.cpuid.com/hwmonitor/hwmonitor_1.61.exe + InstallerSha256: 604E2F00D7571FAB62ACFE0E71E9E3D09F49D812CFB5C34B542A652F6D0C086D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CPUID/HWMonitor/1.61/CPUID.HWMonitor.locale.en-US.yaml b/manifests/c/CPUID/HWMonitor/1.61/CPUID.HWMonitor.locale.en-US.yaml new file mode 100644 index 0000000000000..9838ff547c68c --- /dev/null +++ b/manifests/c/CPUID/HWMonitor/1.61/CPUID.HWMonitor.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CPUID.HWMonitor +PackageVersion: "1.61" +PackageLocale: en-US +Publisher: CPUID, Inc. +PublisherUrl: https://www.cpuid.com/ +PublisherSupportUrl: https://www.cpuid.com/contact.html +PrivacyUrl: https://www.cpuid.com/privacy-policy.html +Author: CPUID, Inc. +PackageName: CPUID HWMonitor +PackageUrl: https://www.cpuid.com/softwares/hwmonitor.html +License: Freeware +LicenseUrl: https://www.cpuid.com/softwares/hwmonitor-pro/eula.html +Copyright: Copyright © CPUID - 2025 +CopyrightUrl: https://www.cpuid.com/softwares/hwmonitor-pro/eula.html +ShortDescription: Voltages, temperatures and fans speed monitoring +Description: |- + HWMonitor for Windows® x86/x64 is a hardware monitoring program that reads PC systems main health sensors : voltages, temperatures, powers, currents, fans speed, utilizations, clock speeds ... + + The program handles : + - CPU and GPU-level hardware monitoring + - LPCIO chips with monitoring features (ITE® IT87 series, Winbond® and Nuvoton® ICs) + - memory modules with thermal sensors + - SSD / hard disks via S.M.A.R.T. + - batteries + - and more ... +Moniker: hwmonitor +Tags: +- cpu +- fan-speed +- gpu +- hard-drive +- hardware +- hardware-monitoring +- monitor +- sensor +- temerature-monitoring +- temps +- thermal +- utility +ReleaseNotes: |- + - AMD Ryzen 7 9850X3D (Granite Ridge). + - AMD Ryzen 5 7500X3D (Raphael). + - Preliminary support of AMD Medusa Point. + - Intel Core Ultra 9 290K Plus, Ultra 7 270K Plus and Ultra 5 250K Plus (Arrow Lake Refresh). +ReleaseNotesUrl: https://www.cpuid.com/softwares/hwmonitor.html#version-history +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CPUID/HWMonitor/1.61/CPUID.HWMonitor.locale.zh-CN.yaml b/manifests/c/CPUID/HWMonitor/1.61/CPUID.HWMonitor.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a8808d82d44be --- /dev/null +++ b/manifests/c/CPUID/HWMonitor/1.61/CPUID.HWMonitor.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CPUID.HWMonitor +PackageVersion: "1.61" +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 电压、温度和风扇速度监控 +Description: |- + HWMonitor for Windows® x86/x64 是一款硬件监控程序,可读取电脑系统的主要健康传感器:电压、温度、功率、电流、风扇速度、利用率、时钟速度... + + 程序可处理: + - CPU 和 GPU 级硬件监控 + - 具有监控功能的 LPCIO 芯片(ITE® IT87 系列、Winbond® 和 Nuvoton® IC) + - 带有热传感器的内存模块 + - 通过 S.M.A.R.T. 监控的固态硬盘/硬盘 + - 电池 + - 以及更多... +Tags: +- cpu +- gpu +- 传感器 +- 工具 +- 温度 +- 温度监控 +- 热传感器 +- 监控 +- 硬件 +- 硬件监控 +- 硬盘 +- 风扇速度 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CPUID/HWMonitor/1.61/CPUID.HWMonitor.yaml b/manifests/c/CPUID/HWMonitor/1.61/CPUID.HWMonitor.yaml new file mode 100644 index 0000000000000..0ff005016a38b --- /dev/null +++ b/manifests/c/CPUID/HWMonitor/1.61/CPUID.HWMonitor.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: CPUID.HWMonitor +PackageVersion: "1.61" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/e/electerm/electerm/2.3.166/electerm.electerm.installer.yaml b/manifests/e/electerm/electerm/2.3.166/electerm.electerm.installer.yaml new file mode 100644 index 0000000000000..2b514f712e391 --- /dev/null +++ b/manifests/e/electerm/electerm/2.3.166/electerm.electerm.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: electerm.electerm +PackageVersion: 2.3.166 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd +ReleaseDate: 2025-12-27 +AppsAndFeaturesEntries: +- DisplayName: electerm 2.3.166 + ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/electerm/electerm/releases/download/v2.3.166/electerm-2.3.166-win-x64-installer.exe + InstallerSha256: D988C5884707FD01A344D967E5B49DE17CFDE6D698128BEC0C53DF227F0E4554 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/electerm/electerm/releases/download/v2.3.166/electerm-2.3.166-win-x64-installer.exe + InstallerSha256: D988C5884707FD01A344D967E5B49DE17CFDE6D698128BEC0C53DF227F0E4554 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/e/electerm/electerm/2.3.166/electerm.electerm.locale.en-US.yaml b/manifests/e/electerm/electerm/2.3.166/electerm.electerm.locale.en-US.yaml new file mode 100644 index 0000000000000..9f1dac44f8a05 --- /dev/null +++ b/manifests/e/electerm/electerm/2.3.166/electerm.electerm.locale.en-US.yaml @@ -0,0 +1,64 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: electerm.electerm +PackageVersion: 2.3.166 +PackageLocale: en-US +Publisher: ZHAO Xudong +PublisherUrl: https://github.com/electerm/electerm +PublisherSupportUrl: https://github.com/electerm/electerm/issues +PrivacyUrl: https://github.com/electerm/electerm/wiki/privacy-notice +Author: ZHAO Xudong +PackageName: electerm +PackageUrl: https://github.com/electerm/electerm +License: MIT +LicenseUrl: https://github.com/electerm/electerm/blob/HEAD/LICENSE +Copyright: Copyright (c) 2017~tomorrow electerm, ZHAO Xudong +CopyrightUrl: https://raw.githubusercontent.com/electerm/electerm/master/LICENSE +ShortDescription: Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/antd/subx and other libs +Description: Terminal/ssh/sftp client(linux, mac, win) based on electron/ssh2/node-pty/xterm/antd/subx and other libs +Moniker: electerm +Tags: +- cli +- cmd +- command-line +- command-prompt +- console +- developer-tools +- file-manager +- powershell +- ps +- sftp +- shell +- ssh +- terminal +- utilities +- wsl +ReleaseNotes: |- + New features/UI/Updates + - Support workspace: save/load specific layout and sessions (#4140) + - Improve terminal data flow in alternate screen mode (like vim, less, or TUI apps like Claude Code) + - Use custom modal to improve performance + - Improve widget UI + - UI: Better OS info display + Bug fixes + - #4143 Fix ftp multi file transfer break session issue + - Fix can not transfer empty file issue + - Fix a UI glitch for shortcut select + - #4136 Fix http proxy auth support + 新功能/界面/更新 + - 支持工作区:保存/加载特定布局和会话 (#4140) + - 改善交替屏幕模式下的终端数据流(如 vim、less 或 TUI 应用如 Claude Code) + - 使用自定义模态框以提升性能 + - 改善小部件界面 + - UI:更好的操作系统信息显示 + Bug 修复 + - #4143 修复 ftp 多文件传输中断会话问题 + - 修复无法传输空文件的问题 + - 修复快捷选择的用户界面小故障 + - #4136 修复 http 代理认证支持 + Download下载: https://electerm.html5beta.com + Video guide使用视频: https://electerm.html5beta.com/videos +ReleaseNotesUrl: https://github.com/electerm/electerm/releases/tag/v2.3.166 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/e/electerm/electerm/2.3.166/electerm.electerm.yaml b/manifests/e/electerm/electerm/2.3.166/electerm.electerm.yaml new file mode 100644 index 0000000000000..3cf31408c15b1 --- /dev/null +++ b/manifests/e/electerm/electerm/2.3.166/electerm.electerm.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: electerm.electerm +PackageVersion: 2.3.166 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.30.01/GAM-Team.gam.installer.yaml b/manifests/g/GAM-Team/gam/7.30.01/GAM-Team.gam.installer.yaml new file mode 100644 index 0000000000000..07c31749cf4dc --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.30.01/GAM-Team.gam.installer.yaml @@ -0,0 +1,30 @@ +# Created with WinGet Updater using komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: GAM-Team.gam +PackageVersion: 7.30.01 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ReleaseDate: 2025-12-18 +InstallationMetadata: + DefaultInstallLocation: ./GAM7 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.30.01/gam-7.30.01-windows-x86_64.msi + InstallerSha256: BCEA6E75F5C9D8A537B3DD2CB7D4643FB1EDAE8FF239AF6FE7C16326C9E914C9 + ProductCode: '{4C30951C-A31E-45D2-AC2A-3D5367A238DF}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{4C30951C-A31E-45D2-AC2A-3D5367A238DF}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +- Architecture: arm64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.30.01/gam-7.30.01-windows-arm64.msi + InstallerSha256: 93E5FD95A6B1A1D31D5E16B0DE5FE078A4146398CD3A2D89B9A09B707D938681 + ProductCode: '{1EA0FF25-0D12-4AF6-AF8E-75D0390ADD7C}' + AppsAndFeaturesEntries: + - DisplayName: GAM7 + ProductCode: '{1EA0FF25-0D12-4AF6-AF8E-75D0390ADD7C}' + UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.30.01/GAM-Team.gam.locale.en-US.yaml b/manifests/g/GAM-Team/gam/7.30.01/GAM-Team.gam.locale.en-US.yaml new file mode 100644 index 0000000000000..4bbe1824d700f --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.30.01/GAM-Team.gam.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with WinGet Updater using komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GAM-Team.gam +PackageVersion: 7.30.01 +PackageLocale: en-US +Publisher: GAM Team - google-apps-manager@googlegroups.com +PublisherUrl: https://github.com/GAM-team +PublisherSupportUrl: https://github.com/GAM-team/GAM/issues +PackageName: gam +PackageUrl: https://github.com/GAM-team/GAM +License: Apache-2.0 +LicenseUrl: https://github.com/GAM-team/GAM/blob/HEAD/LICENSE +ShortDescription: command line management for Google Workspace +Tags: +- gam +- google +- google-admin-sdk +- google-api +- google-apps +- google-calendar +- google-cloud +- google-drive +- google-workspace +- gsuite +- oauth2 +- oauth2-client +- python +ReleaseNotes: |- + - 7.30.01 + Fixed bug introduced in 7.30.00 that caused errors when reading CSV files. + Added the following options to gam create focustime|outofoffice: + ((date yyyy-mm-dd)| + (range yyyy-mm-dd yyyy-mm-dd)| + (daily yyyy-mm-dd N)| + (weekly yyyy-mm-dd N)) + Added the following options to gam create focustime|outofoffice|workinglocation: + noreminders|(reminder email|popup )+ + - See Update History +ReleaseNotesUrl: https://github.com/GAM-team/GAM/releases/tag/v7.30.01 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/GAM-team/GAM/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GAM-Team/gam/7.30.01/GAM-Team.gam.yaml b/manifests/g/GAM-Team/gam/7.30.01/GAM-Team.gam.yaml new file mode 100644 index 0000000000000..a434aa7fe370f --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.30.01/GAM-Team.gam.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: GAM-Team.gam +PackageVersion: 7.30.01 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/ImputNet/Helium/0.7.7.1/ImputNet.Helium.installer.yaml b/manifests/i/ImputNet/Helium/0.7.7.1/ImputNet.Helium.installer.yaml index 41b33c8248bb1..418515ff3c0f3 100644 --- a/manifests/i/ImputNet/Helium/0.7.7.1/ImputNet.Helium.installer.yaml +++ b/manifests/i/ImputNet/Helium/0.7.7.1/ImputNet.Helium.installer.yaml @@ -1,17 +1,12 @@ -# Created using wingetcreate 1.10.3.0 +# Created with komac v2.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: ImputNet.Helium PackageVersion: 0.7.7.1 InstallerType: exe -Scope: machine InstallModes: -- interactive - silent -- silentWithProgress InstallerSwitches: - Silent: /silent - SilentWithProgress: /silent Log: --verbose-logging --log-file="" ExpectedReturnCodes: - InstallerReturnCode: 3 @@ -37,7 +32,8 @@ FileExtensions: - webp - xht - xhtml -ProductCode: Imput Helium +ProductCode: imput Helium +ReleaseDate: 2025-12-22 AppsAndFeaturesEntries: - DisplayVersion: 143.0.7499.169 Installers: @@ -67,4 +63,3 @@ Installers: Custom: --do-not-launch-chrome --system-level ManifestType: installer ManifestVersion: 1.10.0 -ReleaseDate: 2025-12-22 diff --git a/manifests/i/ImputNet/Helium/0.7.7.1/ImputNet.Helium.locale.en-US.yaml b/manifests/i/ImputNet/Helium/0.7.7.1/ImputNet.Helium.locale.en-US.yaml index ddd04a0531522..f6036bb2ffb00 100644 --- a/manifests/i/ImputNet/Helium/0.7.7.1/ImputNet.Helium.locale.en-US.yaml +++ b/manifests/i/ImputNet/Helium/0.7.7.1/ImputNet.Helium.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.10.3.0 +# Created with komac v2.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: ImputNet.Helium @@ -11,14 +11,10 @@ PrivacyUrl: https://helium.computer/privacy PackageName: Helium PackageUrl: https://helium.computer/ License: GPL-3.0 -LicenseUrl: https://github.com/imputnet/helium-windows/blob/HEAD/LICENSE +LicenseUrl: https://github.com/imputnet/helium/blob/HEAD/LICENSE Copyright: Copyright 2025 The Helium Authors. All rights reserved. ShortDescription: Private, fast, and honest web browser. Description: The Chromium-based web browser made for people, with love. Best privacy by default, unbiased ad-blocking, no bloat and no noise. Moniker: helium -ReleaseNotesUrl: https://github.com/imputnet/helium-windows/releases/tag/0.7.7.1 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/imputnet/helium-windows/wiki ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/i/ImputNet/Helium/0.7.7.1/ImputNet.Helium.yaml b/manifests/i/ImputNet/Helium/0.7.7.1/ImputNet.Helium.yaml index 22887c3424295..462f87a6106d7 100644 --- a/manifests/i/ImputNet/Helium/0.7.7.1/ImputNet.Helium.yaml +++ b/manifests/i/ImputNet/Helium/0.7.7.1/ImputNet.Helium.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.10.3.0 +# Created with komac v2.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: ImputNet.Helium diff --git a/manifests/i/IntegrIT/Hackolade/8.8.2/IntegrIT.Hackolade.installer.yaml b/manifests/i/IntegrIT/Hackolade/8.8.2/IntegrIT.Hackolade.installer.yaml new file mode 100644 index 0000000000000..1d61f5a0e16fc --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.8.2/IntegrIT.Hackolade.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: IntegrIT.Hackolade +PackageVersion: 8.8.2 +InstallerType: inno +Scope: machine +Protocols: +- hcks +ProductCode: '{6BD03139-BBF4-44E0-ABA3-6D0461958CEC}_is1' +ReleaseDate: 2025-12-26 +Installers: +- Architecture: x64 + InstallerUrl: https://s3-eu-west-1.amazonaws.com/hackolade/previous/v8.8.2/Hackolade-win64-setup-signed.exe + InstallerSha256: FF27C2FE910BC1911EE6255FDB5B306ECAE9DDCFEFFF6344A22BD0479A8CA32A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.8.2/IntegrIT.Hackolade.locale.en-US.yaml b/manifests/i/IntegrIT/Hackolade/8.8.2/IntegrIT.Hackolade.locale.en-US.yaml new file mode 100644 index 0000000000000..fef7b35634fba --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.8.2/IntegrIT.Hackolade.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: IntegrIT.Hackolade +PackageVersion: 8.8.2 +PackageLocale: en-US +Publisher: Hackolade +PublisherUrl: https://hackolade.com/ +PublisherSupportUrl: https://hackolade.com/help/index.html +PrivacyUrl: https://hackolade.com/privacy.html +Author: IntegrIT SA/NV +PackageName: Hackolade +PackageUrl: https://hackolade.com/download.html +License: Proprietary +LicenseUrl: https://hackolade.com/eulas.html +Copyright: Copyright © 2016-2025 Hackolade. All rights reserved. +CopyrightUrl: https://hackolade.com/eulas.html +ShortDescription: Polyglot Data Modeling for SQL and NoSQL databases, APIs, and storage formats +Description: |- + Hackolade Studio is an intuitive yet powerful application to perform the visually data modeling and schema design of many SQL and NoSQL databases, APIS, and storage formats. + Hackolade Studio combines the graphical representation of collections in an Entity Relationship Diagram, with the graphical representation of the JSON Schema definition of each collection in a hierarchical schema view. Together, these graphical representations provide the schema model for data-at-rest and data-in-motion, plus the documentation of that model. The application is specifically designed around the powerful nature of JSON nested sub-objects and denormalization. + The software facilitates the work of, and the dialog between analysts, architects, designers, developers, testers, DBAs, and operators of systems that are based on such technologies. It also can generate schema scripts and documentation in a variety of machine-readable formats (DDLs, JSON Schema, Avro, Parquet, Protobuf, ...) as well as database instances, or human-readable formats such as HTML, Markdown, and PDF reports. + Instead of having to find data structures tacitly described in the application code, the creation of a database model helps to evaluate design options beforehand, think through the implications of different alternatives, and recognize potential hurdles before committing sizable amounts of development effort. A database model helps plan ahead, in order to minimize later rework. In the end, the modeling process accelerates development, increases quality of the application, and reduces execution risks. +Tags: +- database +- db +- modeling +ReleaseNotes: |- + - General: improve handling default path location of file picker to select a data model + - Object Browser: ensured that relationships name color matches those in ERD and Graph Diagram + - ERD: added name of oneOf choices in entity boxes and object browser + - ERDVs: ensured that relationships line style from ERD is preserved when creating new ERDV + - Persistence: added adapter to remove extraneous empty arrays of complex props + - Avro: added support for unions with named types, with unique names for records, enums, and fixed types to better comply with Avro specs during forward-engineering + - Avro: improved derivation of Polyglot supertype-subtype into oneOf in Avro, using inheritance names as oneOf choice names + - Cassandra: added adjustment for handling partitioning keys + - Delta Lake/Databricks: added adjustment for handling clustering keys + - ScyllaDB: added adjustment for handling partitioning and clustering partition keys +ReleaseNotesUrl: https://hackolade.com/versionInfo/ReadMe.txt +PurchaseUrl: https://hackolade.com/pricing.html +Documentations: +- DocumentLabel: Videos + DocumentUrl: https://hackolade.com/videos.html +- DocumentLabel: FAQ + DocumentUrl: https://hackolade.com/help/FAQandtroubleshooting.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.8.2/IntegrIT.Hackolade.locale.zh-CN.yaml b/manifests/i/IntegrIT/Hackolade/8.8.2/IntegrIT.Hackolade.locale.zh-CN.yaml new file mode 100644 index 0000000000000..42dd4eabaae77 --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.8.2/IntegrIT.Hackolade.locale.zh-CN.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: IntegrIT.Hackolade +PackageVersion: 8.8.2 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 涵盖 SQL 与 NoSQL 数据库、API 及存储格式的多语言数据建模 +Description: |- + Hackolade Studio 是一款直观而强大的应用程序,用于对多种 SQL 和 NoSQL 数据库、API 及存储格式进行可视化数据建模与模式设计。 + Hackolade Studio 将实体关系图中集合的图形化表示,与层次化模式视图中每个集合的 JSON Schema 定义图形化表示相结合。这些图形化表示共同构成了静态数据和动态数据的模式模型,并附带该模型的文档说明。该应用专门围绕 JSON 嵌套子对象和非规范化的强大特性进行设计。 + 该软件促进了基于此类技术的系统分析师、架构师、设计师、开发人员、测试人员、数据库管理员和运维人员之间的工作协作与对话。它还能生成多种机器可读格式(DDL、JSON Schema、Avro、Parquet、Protobuf 等)的模式脚本和文档,以及数据库实例;同时支持 HTML、Markdown 和 PDF 报告等人可读格式的输出。 + 通过创建数据库模型,用户无需从应用程序代码中隐式推导数据结构,即可预先评估设计方案、深入思考不同替代方案的影响,并在投入大量开发工作前识别潜在障碍。数据库模型有助于提前规划,从而最大限度减少后期返工。最终,建模过程能加速开发进度、提升应用质量并降低实施风险。 +Tags: +- 建模 +- 数据库 +Documentations: +- DocumentLabel: 视频 + DocumentUrl: https://hackolade.com/videos.html +- DocumentLabel: 常见问题 + DocumentUrl: https://hackolade.com/help/FAQandtroubleshooting.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.8.2/IntegrIT.Hackolade.yaml b/manifests/i/IntegrIT/Hackolade/8.8.2/IntegrIT.Hackolade.yaml new file mode 100644 index 0000000000000..6f9c4b9312e52 --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.8.2/IntegrIT.Hackolade.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: IntegrIT.Hackolade +PackageVersion: 8.8.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JamesTsang/Nettune/0.2.5/JamesTsang.Nettune.installer.yaml b/manifests/j/JamesTsang/Nettune/0.2.5/JamesTsang.Nettune.installer.yaml new file mode 100644 index 0000000000000..e4e9dc95e1275 --- /dev/null +++ b/manifests/j/JamesTsang/Nettune/0.2.5/JamesTsang.Nettune.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JamesTsang.Nettune +PackageVersion: 0.2.5 +InstallerType: portable +Commands: +- nettune +ReleaseDate: 2025-12-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/jtsang4/nettune/releases/download/v0.2.5/nettune-windows-amd64.exe + InstallerSha256: 5B6FDAEB5D42ABA3CF865FAB08819EF8DD5DB5136049BB9CFE5C1CC488924307 +- Architecture: arm64 + InstallerUrl: https://github.com/jtsang4/nettune/releases/download/v0.2.5/nettune-windows-arm64.exe + InstallerSha256: 429050CA1912C4FA71AE9D78FC9981AF9930A61F1887FBE3284929BD44222CA0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JamesTsang/Nettune/0.2.5/JamesTsang.Nettune.locale.en-US.yaml b/manifests/j/JamesTsang/Nettune/0.2.5/JamesTsang.Nettune.locale.en-US.yaml new file mode 100644 index 0000000000000..54a4c38de2199 --- /dev/null +++ b/manifests/j/JamesTsang/Nettune/0.2.5/JamesTsang.Nettune.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JamesTsang.Nettune +PackageVersion: 0.2.5 +PackageLocale: en-US +Publisher: James Tsang +PublisherUrl: https://jtsang.me/ +PublisherSupportUrl: https://github.com/jtsang4/nettune/issues +Author: James Tsang +PackageName: Nettune +PackageUrl: https://github.com/jtsang4/nettune +License: Freeware +ShortDescription: A network diagnostics and TCP optimization tool with MCP (Model Context Protocol) integration for AI-assisted configuration. +Description: |- + A network diagnostics and TCP optimization tool with MCP (Model Context Protocol) integration for AI-assisted configuration. + Features + - End-to-end Network Testing: RTT measurement, throughput testing, latency under load detection + - Configuration Profiles: Pre-built profiles for BBR, FQ, buffer tuning + - Safe Apply/Rollback: Automatic snapshots before configuration changes with rollback capability + - MCP Integration: Works with Claude and other LLM chat interfaces via MCP stdio protocol +Tags: +- ai +- large-language-model +- llm +- mcp +- network +ReleaseNotes: 'Full Changelog: https://github.com/jtsang4/nettune/compare/v0.2.4...v0.2.5' +ReleaseNotesUrl: https://github.com/jtsang4/nettune/releases/tag/v0.2.5 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JamesTsang/Nettune/0.2.5/JamesTsang.Nettune.locale.zh-CN.yaml b/manifests/j/JamesTsang/Nettune/0.2.5/JamesTsang.Nettune.locale.zh-CN.yaml new file mode 100644 index 0000000000000..69830456cf53c --- /dev/null +++ b/manifests/j/JamesTsang/Nettune/0.2.5/JamesTsang.Nettune.locale.zh-CN.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: JamesTsang.Nettune +PackageVersion: 0.2.5 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 一款集成了 MCP(模型上下文协议)的网络诊断与 TCP 优化工具,支持 AI 辅助配置。 +Description: |- + 一款集成了 MCP(模型上下文协议)的网络诊断与 TCP 优化工具,支持 AI 辅助配置。 + 功能 + - 端到端网络测试:RTT 测量、吞吐量测试、负载下延迟检测 + - 配置配置文件:预设 BBR、FQ、缓冲区调优等配置文件 + - 安全应用/回滚:配置更改前自动创建快照,支持回滚 + - MCP 集成:通过 MCP stdio 协议与 Claude 及其他大语言模型聊天界面协同工作 +Tags: +- mcp +- 人工智能 +- 大语言模型 +- 网络 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JamesTsang/Nettune/0.2.5/JamesTsang.Nettune.yaml b/manifests/j/JamesTsang/Nettune/0.2.5/JamesTsang.Nettune.yaml new file mode 100644 index 0000000000000..d1081d0b651b9 --- /dev/null +++ b/manifests/j/JamesTsang/Nettune/0.2.5/JamesTsang.Nettune.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: JamesTsang.Nettune +PackageVersion: 0.2.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/28.6.0/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/28.6.0/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 0000000000000..dbbf9acb175d2 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/28.6.0/JanDeDobbeleer.OhMyPosh.installer.yaml @@ -0,0 +1,38 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 28.6.0 +InstallerLocale: en-US +Installers: +- Platform: + - Windows.Desktop + MinimumOSVersion: 10.0.17134.0 + Architecture: x64 + InstallerType: msix + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v28.6.0/install-x64.msix + InstallerSha256: EB96B39A027157B66D32BE80656EDEBE554E916264519F5DB9DF33BA829BF4EB + SignatureSha256: 4CB59A2C2AD52010A32D54AB6D2A5B1DFE7F336D92141D927D8880F1A12D431A + PackageFamilyName: ohmyposh.cli_96v55e8n804z4 +- Platform: + - Windows.Desktop + MinimumOSVersion: 10.0.17134.0 + Architecture: arm64 + InstallerType: msix + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v28.6.0/install-arm64.msix + InstallerSha256: 8FF0E97008530380EDAC6B2CD296CCA39497937E6A130634B0BA2BC61A5EF1C9 + SignatureSha256: 721265B481803CE119B9C26F218CD9A6F64A510F9E52089F9566315294FFA863 + PackageFamilyName: ohmyposh.cli_96v55e8n804z4 +- Architecture: x64 + InstallerType: msi + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v28.6.0/install-x64.msi + InstallerSha256: 980E9B82935AE4C6A4E688D84462DA0D1603CBD1A2593FC02D78593560816F0E + ProductCode: '{5092BACC-08CB-430D-A6C9-E090285E21B0}' +- Architecture: arm64 + InstallerType: msi + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v28.6.0/install-arm64.msi + InstallerSha256: 21FFF15DC7AE627F1B7E888E7AC07A189F69DBC115ED406092176791C99AAFEF + ProductCode: '{BC0DC01E-0CCD-4189-B175-D626FC0871E7}' +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-12-27 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/28.6.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/28.6.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 0000000000000..8d502a4c76ea2 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/28.6.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 28.6.0 +PackageLocale: en-US +Publisher: Jan De Dobbeleer +PublisherUrl: https://github.com/JanDeDobbeleer +PublisherSupportUrl: https://github.com/JanDeDobbeleer/oh-my-posh/issues +Author: Jan De Dobbeleer +PackageName: Oh My Posh +PackageUrl: https://ohmyposh.dev/ +License: MIT +LicenseUrl: https://github.com/JanDeDobbeleer/oh-my-posh/raw/main/COPYING +ShortDescription: Prompt theme engine for any shell +Tags: +- bash +- cmd +- git +- nerd-fonts +- nushell +- powershell +- starship +- tooltips +- console +- command-line +- shell +- wsl +- developer-tools +- utilities +- cli +- terminal +ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v28.6.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/28.6.0/JanDeDobbeleer.OhMyPosh.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/28.6.0/JanDeDobbeleer.OhMyPosh.yaml new file mode 100644 index 0000000000000..22c93c450bf6c --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/28.6.0/JanDeDobbeleer.OhMyPosh.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 28.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.installer.yaml new file mode 100644 index 0000000000000..1040ab699ca53 --- /dev/null +++ b/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: NicolasBonamy.Witsy +PackageVersion: 3.3.1 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +ProductCode: witsy +ReleaseDate: 2025-12-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.3.1/Witsy-3.3.1-win32-x64.Setup.exe + InstallerSha256: 31A1DAA4F39A20AA504A8B1E998142B584657294183C813F37D64221800DFB05 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.en-US.yaml new file mode 100644 index 0000000000000..9785469ca277e --- /dev/null +++ b/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.en-US.yaml @@ -0,0 +1,79 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: NicolasBonamy.Witsy +PackageVersion: 3.3.1 +PackageLocale: en-US +Publisher: Nicolas Bonamy +PublisherUrl: https://www.bonamy.fr/ +PublisherSupportUrl: https://github.com/nbonamy/witsy/issues +Author: Nicolas Bonamy +PackageName: Witsy +PackageUrl: https://github.com/nbonamy/witsy +License: Apache-2.0 +LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE +Copyright: Copyright 2025, Nicolas Bonamy +ShortDescription: Desktop AI Assistant / Universal MCP Client +Description: |- + Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. + It is the first of very few (only?) universal MCP clients: + Witsy allows you to run MCP servers with virtually any LLM! + Non-exhaustive feature list: + - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported + - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer + - Chat completion with vision models support (describe an image) + - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace + - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai + - LLM plugins to augment LLM: execute python code, search the Internet... + - Anthropic MCP server support + - Scratchpad to interactively create the best content with any model! + - Prompt anywhere allows to generate content directly in any application + - AI commands runnable on highlighted text in almost any application + - Experts prompts to specialize your bot on a specific topic + - Long-term memory plugin to increase relevance of LLM answers + - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) + - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) + - Chat with your local files and documents (RAG) + - Transcription/Dictation (Speech-to-Text) + - Realtime Chat aka Voice Mode + - Anthropic Computer Use support + - Local history of conversations (with automatic titles) + - Formatting and copy to clipboard of generated code + - Conversation PDF export + - Image copy and download +Tags: +- ai +- chatbot +- chatgpt +- claude +- deepseek +- gemini +- large-language-model +- llama +- llm +- mcp +- mistral +- ollama +- qwen +ReleaseNotes: |- + Added + - Add priority selection option for OpenAI (https://github.com/nbonamy/witsy/issues/508) + - Multi-line input support - allow typing Enter when writing a prompt (https://github.com/nbonamy/witsy/issues/510) + - Cloudflare AI Gateway observability (https://github.com/nbonamy/witsy/issues/511) + - Status of Knowledge Base Updates (https://github.com/nbonamy/witsy/issues/512) + Changed + - Ability to Submit Large Files Manually (https://github.com/nbonamy/witsy/issues/497) + Fixed + - Gemini Models don't receive any images (https://github.com/nbonamy/witsy/issues/503) + - Automator.pasteText restores clipboard before paste completes (https://github.com/nbonamy/witsy/issues/505) + - Path traversal in filesystem plugin bypasses allowedPaths(https://github.com/nbonamy/witsy/issues/506) + - Fix Soniox streaming buffer (https://github.com/nbonamy/witsy/pull/507) + - Search text highlighting adds equal signs to text formatted as code (https://github.com/nbonamy/witsy/issues/509) + Removed + - N/A +ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#331---2025-12-27 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/nbonamy/witsy/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.zh-CN.yaml new file mode 100644 index 0000000000000..762230875805f --- /dev/null +++ b/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.zh-CN.yaml @@ -0,0 +1,51 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: NicolasBonamy.Witsy +PackageVersion: 3.3.1 +PackageLocale: zh-CN +ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 +Description: |- + Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 + 作为极少数(唯一?)的通用 MCP 客户端: + Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! + 非完整功能清单: + - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 + - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) + - 支持视觉模型的聊天补全(图像描述) + - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) + - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) + - LLM 增强插件:执行 Python 代码、联网搜索... + - 支持 Anthropic MCP 服务器 + - 交互式创作草稿板,适配所有模型! + - “随处提示”功能可在任意应用中直接生成内容 + - 在几乎所有应用中通过高亮文本执行 AI 命令 + - 专家级提示词让机器人专注特定领域 + - 长期记忆插件提升 LLM 回答相关性 + - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) + - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) + - 与本地文件/文档对话(RAG) + - 语音转录/听写(语音转文字) + - 实时聊天(语音模式) + - 支持 Anthropic Computer Use + - 带自动标题的本地对话历史 + - 生成代码的格式化与剪贴板复制 + - 对话记录 PDF 导出 + - 图像复制与下载 +Tags: +- chatgpt +- claude +- gemini +- llama +- llm +- mcp +- mistral +- ollama +- 人工智能 +- 大语言模型 +- 深度求索 +- 聊天机器人 +- 通义千问 +ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.yaml new file mode 100644 index 0000000000000..4486896b8d27b --- /dev/null +++ b/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: NicolasBonamy.Witsy +PackageVersion: 3.3.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/PixPin/PixPin/Beta/2.3.7.0/PixPin.PixPin.Beta.installer.yaml b/manifests/p/PixPin/PixPin/Beta/2.3.7.0/PixPin.PixPin.Beta.installer.yaml new file mode 100644 index 0000000000000..1e2d495eebda4 --- /dev/null +++ b/manifests/p/PixPin/PixPin/Beta/2.3.7.0/PixPin.PixPin.Beta.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: PixPin.PixPin.Beta +PackageVersion: 2.3.7.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{506270E7-E3B5-4157-B53A-3BFFE8E418DB}_is1' +ReleaseDate: 2025-12-27 +AppsAndFeaturesEntries: +- Publisher: Shenzhen Shendu Tujing Technology Co., Ltd. + ProductCode: '{506270E7-E3B5-4157-B53A-3BFFE8E418DB}_is1' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\PixPin' +Installers: +- Architecture: x64 + InstallerUrl: https://download.pixpinapp.com/PixPin_cn_zh-cn_2.3.7.0.exe + InstallerSha256: 68344C28AEF13FA9BC24101AF5D51026CF5FFC347D4D136C750BA5E9EC3C2E73 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/PixPin/PixPin/Beta/2.3.7.0/PixPin.PixPin.Beta.locale.zh-CN.yaml b/manifests/p/PixPin/PixPin/Beta/2.3.7.0/PixPin.PixPin.Beta.locale.zh-CN.yaml new file mode 100644 index 0000000000000..017cdd785060a --- /dev/null +++ b/manifests/p/PixPin/PixPin/Beta/2.3.7.0/PixPin.PixPin.Beta.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: PixPin.PixPin.Beta +PackageVersion: 2.3.7.0 +PackageLocale: zh-CN +Publisher: 深圳市深度图景科技有限公司 +PublisherUrl: https://viewdepth.cn/#/ +PrivacyUrl: https://pixpin.cn/docs/policy/privacy_zh_CN +PackageName: PixPin (Beta) +PackageUrl: https://pixpin.cn/ +License: 专有软件 +Copyright: © 2025 深圳市深度图景科技有限公司 +ShortDescription: 功能强大使用简单的截图/贴图工具,帮助你提高效率。 +Description: 随心截图, 随意贴图 - 屏幕截图,录制屏幕,长截图,文字识别,贴图,以及更多功能。 +Agreements: +- AgreementLabel: PixPin 服务协议 + AgreementUrl: https://pixpin.cn/docs/policy/tos_zh_CN.html +ReleaseNotesUrl: https://pixpin.cn/docs/change-log/2.3.7.0 +PurchaseUrl: https://pixpin.cn/docs/policy/member_policy_zh_CN.html +Documentations: +- DocumentLabel: 使用文档 + DocumentUrl: https://pixpin.cn/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/PixPin/PixPin/Beta/2.3.7.0/PixPin.PixPin.Beta.yaml b/manifests/p/PixPin/PixPin/Beta/2.3.7.0/PixPin.PixPin.Beta.yaml new file mode 100644 index 0000000000000..8ee1728508b7e --- /dev/null +++ b/manifests/p/PixPin/PixPin/Beta/2.3.7.0/PixPin.PixPin.Beta.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: PixPin.PixPin.Beta +PackageVersion: 2.3.7.0 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/pbek/QOwnNotes/25.12.7/pbek.QOwnNotes.installer.yaml b/manifests/p/pbek/QOwnNotes/25.12.7/pbek.QOwnNotes.installer.yaml new file mode 100644 index 0000000000000..59b56dbbdaab1 --- /dev/null +++ b/manifests/p/pbek/QOwnNotes/25.12.7/pbek.QOwnNotes.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Updater using komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: pbek.QOwnNotes +PackageVersion: 25.12.7 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: QOwnNotes.exe + PortableCommandAlias: qownnotes.exe +ReleaseDate: 2025-12-22 +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/pbek/QOwnNotes/releases/download/v25.12.7/QOwnNotes.zip + InstallerSha256: 87C0AF7098FDE25429089F7E6D1DA4419D541152B28EFDA31BB8339064D88FE4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/pbek/QOwnNotes/25.12.7/pbek.QOwnNotes.locale.en-US.yaml b/manifests/p/pbek/QOwnNotes/25.12.7/pbek.QOwnNotes.locale.en-US.yaml new file mode 100644 index 0000000000000..060ce1ed67b89 --- /dev/null +++ b/manifests/p/pbek/QOwnNotes/25.12.7/pbek.QOwnNotes.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with WinGet Updater using komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: pbek.QOwnNotes +PackageVersion: 25.12.7 +PackageLocale: en-US +Publisher: pbek +PublisherUrl: https://github.com/pbek/QOwnNotes +PublisherSupportUrl: https://github.com/pbek/QOwnNotes/issues +Author: https://github.com/pbek +PackageName: QOwnNotes +PackageUrl: https://github.com/pbek/QOwnNotes +License: GPL-2.0 +LicenseUrl: https://github.com/pbek/QOwnNotes/blob/HEAD/LICENSE +ShortDescription: QOwnNotes is the open source notepad with markdown support and todo list manager +Tags: +- markdown +- notes +- notetaking +- qownnotes +- todo +ReleaseNotes: |- + 25.12.7 + - Added Reload and Jump to note buttons to the Note Dialog of the + Open note in different window context menu (for #3413) + - The Reload button refreshes the note from the database to show any external changes + - The Jump to note button navigates to the note in the main window without closing the dialog + - Now a status message will be shown if a note cannot be written to disk + (for #3412) +ReleaseNotesUrl: https://github.com/pbek/QOwnNotes/releases/tag/v25.12.7 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/pbek/QOwnNotes/25.12.7/pbek.QOwnNotes.yaml b/manifests/p/pbek/QOwnNotes/25.12.7/pbek.QOwnNotes.yaml new file mode 100644 index 0000000000000..336e18a206e0e --- /dev/null +++ b/manifests/p/pbek/QOwnNotes/25.12.7/pbek.QOwnNotes.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: pbek.QOwnNotes +PackageVersion: 25.12.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/Sidero/omnictl/1.4.4/Sidero.omnictl.installer.yaml b/manifests/s/Sidero/omnictl/1.4.4/Sidero.omnictl.installer.yaml new file mode 100644 index 0000000000000..f90f75bff2da6 --- /dev/null +++ b/manifests/s/Sidero/omnictl/1.4.4/Sidero.omnictl.installer.yaml @@ -0,0 +1,15 @@ +# Created with WinGet Updater using komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Sidero.omnictl +PackageVersion: 1.4.4 +InstallerType: portable +Commands: +- omnictl +ReleaseDate: 2025-12-23 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/siderolabs/omni/releases/download/v1.4.4/omnictl-windows-amd64.exe + InstallerSha256: 17FD3133A881FA22CFEFC7C1AD13D0C02C0464DF88DD18F6F81E46F758DD42FF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/Sidero/omnictl/1.4.4/Sidero.omnictl.locale.en-US.yaml b/manifests/s/Sidero/omnictl/1.4.4/Sidero.omnictl.locale.en-US.yaml new file mode 100644 index 0000000000000..87db30b86bf6b --- /dev/null +++ b/manifests/s/Sidero/omnictl/1.4.4/Sidero.omnictl.locale.en-US.yaml @@ -0,0 +1,66 @@ +# Created with WinGet Updater using komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Sidero.omnictl +PackageVersion: 1.4.4 +PackageLocale: en-US +Publisher: Sidero Labs +PublisherUrl: https://github.com/siderolabs/omni +PublisherSupportUrl: https://github.com/siderolabs/omni/issues +PrivacyUrl: https://www.siderolabs.com/privacy-policy/ +Author: Sidero Labs +PackageName: omnictl +PackageUrl: https://github.com/siderolabs/omni +License: Mozilla Public License Version 2.0 +LicenseUrl: https://github.com/siderolabs/omni/blob/HEAD/LICENSE +ShortDescription: A command line tool for communicating with Omni +Moniker: omnictl +Tags: +- k8s +- kubernetes +- omni +- talos +ReleaseNotes: |- + Omni 1.4.4 (2025-12-23) + Welcome to the v1.4.4 release of Omni! + Please try out the release binaries and report any issues at + https://github.com/siderolabs/omni/issues. + Urgent Upgrade Notes (No, really, you MUST read this before you upgrade) + This release consolidates Discovery service state, Audit logs, Machine logs, and Secondary resources into a single SQLite storage backend. + 1. New Required Flag + You must set the new --sqlite-storage-path (or .storage.sqlite.path) flag. There is no default value, and Omni will not start without it. + It must be a path to the SQLite file (will be created by Omni), not a directory, e.g., --sqlite-storage-path=/path/to/omni-sqlite.db. + 2. Audit Logging Changes + A new flag --audit-log-enabled (or .logs.audit.enabled) has been introduced to explicitly enable or disable audit logging. + - Default: true. + - Change: Previously, audit logging was implicitly enabled only when the path was set. Now, it is enabled by default. + 3. Automatic Migration + Omni will automatically migrate your existing data (BoltDB, file-based logs) to the new SQLite database on the first startup. To ensure this happens correctly, simply add the new SQLite flag and leave your existing storage flags in place for the first run. + Once the migration is complete, you are free to remove the deprecated flags listed below. If they remain, they will be ignored and eventually dropped in future versions. + 4. Deprecated Flags (Kept for Migration) + The following flags (and config keys) are deprecated and kept solely to facilitate the automatic migration: + - --audit-log-dir (.logs.audit.path) + - --secondary-storage-path (.storage.secondary.path) + - --machine-log-storage-path (.logs.machine.storage.path) + - --machine-log-storage-enabled (.logs.machine.storage.enabled) + - --embedded-discovery-service-snapshot-path (.services.embeddedDiscoveryService.snapshotsPath) + - --machine-log-buffer-capacity (.logs.machine.bufferInitialCapacity) + - --machine-log-buffer-max-capacity (.logs.machine.bufferMaxCapacity) + - --machine-log-buffer-safe-gap (.logs.machine.bufferSafetyGap) + - --machine-log-num-compressed-chunks (.logs.machine.storage.numCompressedChunks) + 5. Removed Flags + The following flags have been removed and are no longer supported: + - --machine-log-storage-flush-period (.logs.machine.storage.flushPeriod) + - --machine-log-storage-flush-jitter (.logs.machine.storage.flushJitter) + Contributors + - Andrey Smirnov + Changes + 2 commits + - bfb124a9 release(v1.4.4): prepare release + - 2bbd9d79 fix: run more aggressive compaction for sqlite/metrics + Dependency Changes + This release has no dependency changes + Previous release can be found at v1.4.3 +ReleaseNotesUrl: https://github.com/siderolabs/omni/releases/tag/v1.4.4 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Sidero/omnictl/1.4.4/Sidero.omnictl.yaml b/manifests/s/Sidero/omnictl/1.4.4/Sidero.omnictl.yaml new file mode 100644 index 0000000000000..55166e880141c --- /dev/null +++ b/manifests/s/Sidero/omnictl/1.4.4/Sidero.omnictl.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Sidero.omnictl +PackageVersion: 1.4.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.installer.yaml b/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.installer.yaml new file mode 100644 index 0000000000000..d08e75731fad2 --- /dev/null +++ b/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.installer.yaml @@ -0,0 +1,38 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: WHTA.Tamara +PackageVersion: 2025.4.1.6 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: -mode silent -agreeToLicense yes + SilentWithProgress: -mode silent -agreeToLicense yes +UpgradeBehavior: install +FileExtensions: +- mat +- tam +- unv +- uff +- hdf +- pti +- wav +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +RequireExplicitUpgrade: true +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://download.tamara.app/2025.4.1.6/installer.exe + InstallerSha256: 83241CEFC98CDDEF6DD7B956C469199CB85A72AB0CEE94C6586AB3CBB397D107 + AppsAndFeaturesEntries: + - DisplayName: Tamara + Publisher: NVH Group AB + ProductCode: Tamara +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2025-12-26 diff --git a/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.locale.en-US.yaml b/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.locale.en-US.yaml new file mode 100644 index 0000000000000..55cdf0613136c --- /dev/null +++ b/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: WHTA.Tamara +PackageVersion: 2025.4.1.6 +PackageLocale: en-US +Publisher: NVH Group AB +PublisherUrl: https://www.nvh.group +Author: NVH Group AB +PackageName: Tamara +PackageUrl: https://tamara.app +License: Proprietary +Copyright: (C) NVH Group AB +ShortDescription: Tamara Acoustic Real-time Assessment +Agreements: +- AgreementLabel: EULA + AgreementUrl: https://tamara.app/eula_v1.0.txt +ReleaseNotesUrl: https://download.tamara.app/2025.4.1.6/releasenotes.pdf +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.yaml b/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.yaml new file mode 100644 index 0000000000000..ceeedfa07dfe3 --- /dev/null +++ b/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: WHTA.Tamara +PackageVersion: 2025.4.1.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0