diff --git a/.github/workflows/scriptAnalyzer.yaml b/.github/workflows/scriptAnalyzer.yaml index e0578c2c19df..12635bbee84c 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 000000000000..e753655e2dce --- /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 000000000000..d31f193a3986 --- /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/a/ActiveDirectoryPro/ADProToolkit/2.4.5/ActiveDirectoryPro.ADProToolkit.installer.yaml b/manifests/a/ActiveDirectoryPro/ADProToolkit/2.4.5/ActiveDirectoryPro.ADProToolkit.installer.yaml index d12858fa345c..1b82f89de080 100644 --- a/manifests/a/ActiveDirectoryPro/ADProToolkit/2.4.5/ActiveDirectoryPro.ADProToolkit.installer.yaml +++ b/manifests/a/ActiveDirectoryPro/ADProToolkit/2.4.5/ActiveDirectoryPro.ADProToolkit.installer.yaml @@ -63,6 +63,6 @@ AppsAndFeaturesEntries: Installers: - Architecture: x64 InstallerUrl: https://activedirectorypro.com/downloads/ADProToolkit.exe - InstallerSha256: 1A0E872DF835E419DAB111D01D531BF9257ED7222B25217BE3EB6126037FFDED + InstallerSha256: C272FEECA9B17DF75C22EACF2D7CFA6EAB70DE210F423AF146CF3C1298E88A67 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/a/alexpasmantier/television/0.14.2/alexpasmantier.television.installer.yaml b/manifests/a/alexpasmantier/television/0.14.2/alexpasmantier.television.installer.yaml new file mode 100644 index 000000000000..fb24e48db487 --- /dev/null +++ b/manifests/a/alexpasmantier/television/0.14.2/alexpasmantier.television.installer.yaml @@ -0,0 +1,20 @@ +# 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: alexpasmantier.television +PackageVersion: 0.14.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: tv.exe +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2025-12-25 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/alexpasmantier/television/releases/download/0.14.2/tv-0.14.2-x86_64-pc-windows-msvc.zip + InstallerSha256: 7F14516889D43A8D1975AC69CEE5E2110B214DC68BF5A136B89C364158E39CD8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/alexpasmantier/television/0.14.2/alexpasmantier.television.locale.en-US.yaml b/manifests/a/alexpasmantier/television/0.14.2/alexpasmantier.television.locale.en-US.yaml new file mode 100644 index 000000000000..dbf9c89eeb86 --- /dev/null +++ b/manifests/a/alexpasmantier/television/0.14.2/alexpasmantier.television.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: alexpasmantier.television +PackageVersion: 0.14.2 +PackageLocale: en-US +Publisher: alexpasmantier +PublisherUrl: https://github.com/alexpasmantier +PublisherSupportUrl: https://github.com/alexpasmantier/television/issues +PackageName: Television +PackageUrl: https://github.com/alexpasmantier/television +License: MIT +LicenseUrl: https://github.com/alexpasmantier/television/blob/HEAD/LICENSE +Copyright: Copyright (c) Alexandre Pasmantier +CopyrightUrl: https://github.com/alexpasmantier/television/blob/main/LICENSE +ShortDescription: A cross-platform, fast and extensible general purpose fuzzy finder TUI. +Tags: +- cli +- command-line-tool +- fuzzy +- fuzzy-matching +- fuzzy-search +- rust +- terminal +- tui +ReleaseNotes: |- + 0.14.2 - 2025-12-25 + ⛰️ Features + - 103704e (uncategorized) Windows builtin channels by @alexpasmantier + - fb41de7 (uncategorized) Tv's binary now comes bundled with a set of default channels by @alexpasmantier in #821 + 🐛 Bug Fixes + - 874400d (shell) Honor $SHELL previews for nushell by @alexpasmantier in #818 + - 9628b53 (windows) Improve shell discovery heuristics on windows by @alexpasmantier in #819 + 📚 Documentation + - 117d35d (cli) Some improvements to readability by @alexpasmantier + - 9d45e57 (uncategorized) Add quickstart section to README by @alexpasmantier + - dfdce6b (uncategorized) Cli docs rework + some automation with tv --help by @alexpasmantier + - 53e41bd (uncategorized) Improve quickstart section with more examples by @alexpasmantier + - 7ae0413 (uncategorized) Fixing typos and out of date information by @alexpasmantier + - 85fd34a (uncategorized) Update readme title by @alexpasmantier + - a52c33a (uncategorized) Update demo image with latest version by @alexpasmantier + ⚙️ Miscellaneous Tasks + - bc678e0 (changelog) Update changelog (auto) by @github-actions[bot] in #822 + - 32ce5f3 (changelog) Update changelog (auto) by @github-actions[bot] in #815 + - 67211d3 (uncategorized) Release version 0.14.2 by @alexpasmantier + Full Changelog: 0.14.1...0.14.2 +ReleaseNotesUrl: https://github.com/alexpasmantier/television/releases/tag/0.14.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/alexpasmantier/television/0.14.2/alexpasmantier.television.yaml b/manifests/a/alexpasmantier/television/0.14.2/alexpasmantier.television.yaml new file mode 100644 index 000000000000..a3e512245141 --- /dev/null +++ b/manifests/a/alexpasmantier/television/0.14.2/alexpasmantier.television.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: alexpasmantier.television +PackageVersion: 0.14.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/Baidu/BaiduNetdisk/8.1.5/Baidu.BaiduNetdisk.installer.yaml b/manifests/b/Baidu/BaiduNetdisk/8.1.5/Baidu.BaiduNetdisk.installer.yaml index 780588b35f82..f5b6aad645c4 100644 --- a/manifests/b/Baidu/BaiduNetdisk/8.1.5/Baidu.BaiduNetdisk.installer.yaml +++ b/manifests/b/Baidu/BaiduNetdisk/8.1.5/Baidu.BaiduNetdisk.installer.yaml @@ -14,7 +14,7 @@ ProductCode: 百度云管家 ReleaseDate: 2025-12-27 Installers: - Architecture: x86 - InstallerUrl: https://issuepcdn.baidupcs.com/issue/netdisk/yunguanjia/BaiduNetdisk_8.1.5.101.exe - InstallerSha256: 9EF9A47D7F0EA9FFC2D3B2985BD8AACDE9C58D01D0DB59E37FD5D307262BAE3B + InstallerUrl: https://issuepcdn.baidupcs.com/issue/netdisk/yunguanjia/BaiduNetdisk_8.1.5.102.exe + InstallerSha256: B0CDE0B8B45663845BC880212C1C2F778A8A0D967D64D92A75039F6BD6A08084 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/c/CeVIO/CeVIOAI/9.1.1/CeVIO.CeVIOAI.installer.yaml b/manifests/c/CeVIO/CeVIOAI/9.1.1/CeVIO.CeVIOAI.installer.yaml new file mode 100644 index 000000000000..e57a91928bd3 --- /dev/null +++ b/manifests/c/CeVIO/CeVIOAI/9.1.1/CeVIO.CeVIOAI.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CeVIO.CeVIOAI +PackageVersion: 9.1.1 +InstallerLocale: en-US +InstallerType: msi +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{DBC4049F-A76F-4A7E-A516-B2946205424A}' +ReleaseDate: 2024-02-12 +AppsAndFeaturesEntries: +- ProductCode: '{DBC4049F-A76F-4A7E-A516-B2946205424A}' + UpgradeCode: '{04F14AA0-162A-42B6-B603-B070BB03BF6C}' +Installers: +- Architecture: x64 + InstallerUrl: http://storage.cevio.jp/product/CeVIO_AI_Setup_x64_(9.1.1.0).msi + InstallerSha256: 8D91E0E209549B9A44C1E557848DAE9EFC2D6A3EC015A59D49ECE8F57C51824A +ManifestType: installer +ManifestVersion: 1.10.0 + + diff --git a/manifests/c/CeVIO/CeVIOAI/9.1.1/CeVIO.CeVIOAI.locale.en-US.yaml b/manifests/c/CeVIO/CeVIOAI/9.1.1/CeVIO.CeVIOAI.locale.en-US.yaml new file mode 100644 index 000000000000..c986c799552f --- /dev/null +++ b/manifests/c/CeVIO/CeVIOAI/9.1.1/CeVIO.CeVIOAI.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CeVIO.CeVIOAI +PackageVersion: 9.1.1 +PackageLocale: en-US +Publisher: CeVIO +PackageName: CeVIO AI +License: CeVIO AI +ShortDescription: Next-generation voice creation software that uses AI technology to reproduce human voice characteristics, mannerisms, singing styles, and speaking patterns with high precision. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CeVIO/CeVIOAI/9.1.1/CeVIO.CeVIOAI.yaml b/manifests/c/CeVIO/CeVIOAI/9.1.1/CeVIO.CeVIOAI.yaml new file mode 100644 index 000000000000..d54c99fdfcc8 --- /dev/null +++ b/manifests/c/CeVIO/CeVIOAI/9.1.1/CeVIO.CeVIOAI.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: CeVIO.CeVIOAI +PackageVersion: 9.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CeVIO/CeVIOAI/9.1.2/CeVIO.CeVIOAI.installer.yaml b/manifests/c/CeVIO/CeVIOAI/9.1.2/CeVIO.CeVIOAI.installer.yaml new file mode 100644 index 000000000000..ccde87a6b6c1 --- /dev/null +++ b/manifests/c/CeVIO/CeVIOAI/9.1.2/CeVIO.CeVIOAI.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CeVIO.CeVIOAI +PackageVersion: 9.1.2 +InstallerLocale: en-US +InstallerType: msi +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{D87CB7C2-4BF3-405A-8016-3A83287C03DB}' +ReleaseDate: 2024-02-21 +AppsAndFeaturesEntries: +- ProductCode: '{D87CB7C2-4BF3-405A-8016-3A83287C03DB}' + UpgradeCode: '{04F14AA0-162A-42B6-B603-B070BB03BF6C}' +Installers: +- Architecture: x64 + InstallerUrl: http://storage.cevio.jp/product/CeVIO_AI_Setup_x64_(9.1.2.0).msi + InstallerSha256: A58775909CC6429AC0BCB8EF59E260C8EECC2C48C0366AD8E918B330FB36BBA6 +ManifestType: installer +ManifestVersion: 1.10.0 + + diff --git a/manifests/c/CeVIO/CeVIOAI/9.1.2/CeVIO.CeVIOAI.locale.en-US.yaml b/manifests/c/CeVIO/CeVIOAI/9.1.2/CeVIO.CeVIOAI.locale.en-US.yaml new file mode 100644 index 000000000000..24d73918f093 --- /dev/null +++ b/manifests/c/CeVIO/CeVIOAI/9.1.2/CeVIO.CeVIOAI.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CeVIO.CeVIOAI +PackageVersion: 9.1.2 +PackageLocale: en-US +Publisher: CeVIO +PackageName: CeVIO AI +License: CeVIO AI +ShortDescription: Next-generation voice creation software that uses AI technology to reproduce human voice characteristics, mannerisms, singing styles, and speaking patterns with high precision. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CeVIO/CeVIOAI/9.1.2/CeVIO.CeVIOAI.yaml b/manifests/c/CeVIO/CeVIOAI/9.1.2/CeVIO.CeVIOAI.yaml new file mode 100644 index 000000000000..24cb8fd94e56 --- /dev/null +++ b/manifests/c/CeVIO/CeVIOAI/9.1.2/CeVIO.CeVIOAI.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: CeVIO.CeVIOAI +PackageVersion: 9.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CeVIO/CeVIOAI/9.1.5/CeVIO.CeVIOAI.installer.yaml b/manifests/c/CeVIO/CeVIOAI/9.1.5/CeVIO.CeVIOAI.installer.yaml new file mode 100644 index 000000000000..ca980b360470 --- /dev/null +++ b/manifests/c/CeVIO/CeVIOAI/9.1.5/CeVIO.CeVIOAI.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CeVIO.CeVIOAI +PackageVersion: 9.1.5 +InstallerLocale: en-US +InstallerType: msi +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{C3DFC364-BFF5-41A9-A88D-22C70446769D}' +ReleaseDate: 2024-03-06 +AppsAndFeaturesEntries: +- ProductCode: '{C3DFC364-BFF5-41A9-A88D-22C70446769D}' + UpgradeCode: '{04F14AA0-162A-42B6-B603-B070BB03BF6C}' +Installers: +- Architecture: x64 + InstallerUrl: http://storage.cevio.jp/product/CeVIO_AI_Setup_x64_(9.1.5.0).msi + InstallerSha256: 41A44CFBD250C9E2E538EA2D21B79DA86A2E327A732C00831616122CDC7DBC65 +ManifestType: installer +ManifestVersion: 1.10.0 + + diff --git a/manifests/c/CeVIO/CeVIOAI/9.1.5/CeVIO.CeVIOAI.locale.en-US.yaml b/manifests/c/CeVIO/CeVIOAI/9.1.5/CeVIO.CeVIOAI.locale.en-US.yaml new file mode 100644 index 000000000000..843d4c3f04e2 --- /dev/null +++ b/manifests/c/CeVIO/CeVIOAI/9.1.5/CeVIO.CeVIOAI.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CeVIO.CeVIOAI +PackageVersion: 9.1.5 +PackageLocale: en-US +Publisher: CeVIO +PackageName: CeVIO AI +License: CeVIO AI +ShortDescription: Next-generation voice creation software that uses AI technology to reproduce human voice characteristics, mannerisms, singing styles, and speaking patterns with high precision. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CeVIO/CeVIOAI/9.1.5/CeVIO.CeVIOAI.yaml b/manifests/c/CeVIO/CeVIOAI/9.1.5/CeVIO.CeVIOAI.yaml new file mode 100644 index 000000000000..e3c68c2df0a7 --- /dev/null +++ b/manifests/c/CeVIO/CeVIOAI/9.1.5/CeVIO.CeVIOAI.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: CeVIO.CeVIOAI +PackageVersion: 9.1.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 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 000000000000..1d61f5a0e16f --- /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 000000000000..fef7b35634fb --- /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 000000000000..42dd4eabaae7 --- /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 000000000000..6f9c4b9312e5 --- /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/JordanCoin/codemap/3.1.4/JordanCoin.codemap.installer.yaml b/manifests/j/JordanCoin/codemap/3.1.4/JordanCoin.codemap.installer.yaml new file mode 100644 index 000000000000..8629834d4854 --- /dev/null +++ b/manifests/j/JordanCoin/codemap/3.1.4/JordanCoin.codemap.installer.yaml @@ -0,0 +1,18 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: JordanCoin.codemap +PackageVersion: 3.1.4 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-12-10" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: codemap.exe + PortableCommandAlias: codemap + InstallerUrl: https://github.com/JordanCoin/codemap/releases/download/v3.1.4/codemap_3.1.4_windows_amd64.zip + InstallerSha256: e3998f0476fed30a44f21ef0092228524e10a917699d2a831c67a2ac60c9eb02 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JordanCoin/codemap/3.1.4/JordanCoin.codemap.locale.en-US.yaml b/manifests/j/JordanCoin/codemap/3.1.4/JordanCoin.codemap.locale.en-US.yaml new file mode 100644 index 000000000000..8e827f37afa1 --- /dev/null +++ b/manifests/j/JordanCoin/codemap/3.1.4/JordanCoin.codemap.locale.en-US.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: JordanCoin.codemap +PackageVersion: 3.1.4 +PackageLocale: en-US +Publisher: JordanCoin +PublisherUrl: https://github.com/JordanCoin +PublisherSupportUrl: https://github.com/JordanCoin/codemap/issues +PackageName: codemap +PackageUrl: https://github.com/JordanCoin/codemap +License: MIT +LicenseUrl: https://github.com/JordanCoin/codemap/blob/main/LICENSE +ShortDescription: Generate a brain map of your codebase for LLM context +Description: | + codemap generates a compact, structured "brain map" of your codebase + that LLMs can instantly understand. One command gives instant + architectural context without burning tokens. +Moniker: codemap +Tags: + - cli + - developer-tools + - ai + - llm + - code-analysis +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JordanCoin/codemap/3.1.4/JordanCoin.codemap.yaml b/manifests/j/JordanCoin/codemap/3.1.4/JordanCoin.codemap.yaml new file mode 100644 index 000000000000..a305b8c1659f --- /dev/null +++ b/manifests/j/JordanCoin/codemap/3.1.4/JordanCoin.codemap.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: JordanCoin.codemap +PackageVersion: 3.1.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/l/LLVM/clangd/21.1.8/LLVM.clangd.installer.yaml b/manifests/l/LLVM/clangd/21.1.8/LLVM.clangd.installer.yaml new file mode 100644 index 000000000000..63f757c009da --- /dev/null +++ b/manifests/l/LLVM/clangd/21.1.8/LLVM.clangd.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: LLVM.clangd +PackageVersion: 21.1.8 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: clangd_21.1.8/bin/clangd.exe +InstallModes: +- silentWithProgress +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-12-21 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/clangd/clangd/releases/download/21.1.8/clangd-windows-21.1.8.zip + InstallerSha256: AEB5A68414C4D10B0867A479C9F21593043CC6D122E39DE61B3801C89EBD57FC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LLVM/clangd/21.1.8/LLVM.clangd.locale.en-US.yaml b/manifests/l/LLVM/clangd/21.1.8/LLVM.clangd.locale.en-US.yaml new file mode 100644 index 000000000000..985d5f648a9b --- /dev/null +++ b/manifests/l/LLVM/clangd/21.1.8/LLVM.clangd.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LLVM.clangd +PackageVersion: 21.1.8 +PackageLocale: en-US +Publisher: LLVM +PublisherUrl: https://github.com/clangd +PublisherSupportUrl: https://github.com/clangd/clangd/issues +PackageName: clangd +PackageUrl: https://github.com/clangd/clangd +License: Apache-2.0 +LicenseUrl: https://github.com/clangd/clangd/blob/HEAD/LICENSE +ShortDescription: Language server for C/C++, by the LLVM project +Tags: +- clang +- cplusplus +- ide +- language-server +ReleaseNotes: |- + Stable clangd 21.1.8 release + Built from llvm/llvm-project@2078da4. +ReleaseNotesUrl: https://github.com/clangd/clangd/releases/tag/21.1.8 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/clangd/clangd/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LLVM/clangd/21.1.8/LLVM.clangd.yaml b/manifests/l/LLVM/clangd/21.1.8/LLVM.clangd.yaml new file mode 100644 index 000000000000..55827b50ba52 --- /dev/null +++ b/manifests/l/LLVM/clangd/21.1.8/LLVM.clangd.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: LLVM.clangd +PackageVersion: 21.1.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.6.59/LuisPater.CLIProxyAPI.installer.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.6.59/LuisPater.CLIProxyAPI.installer.yaml new file mode 100644 index 000000000000..a522ffa6be7a --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/6.6.59/LuisPater.CLIProxyAPI.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: LuisPater.CLIProxyAPI +PackageVersion: 6.6.59 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cli-proxy-api.exe +Commands: +- cli-proxy-api +ReleaseDate: 2025-12-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/router-for-me/CLIProxyAPI/releases/download/v6.6.59/CLIProxyAPI_6.6.59_windows_amd64.zip + InstallerSha256: 2C5CE5DC7155A15D298F5FE2CA3B1EA72EEF8F35AA507F08DF210EBBBFA0B86F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.6.59/LuisPater.CLIProxyAPI.locale.en-US.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.6.59/LuisPater.CLIProxyAPI.locale.en-US.yaml new file mode 100644 index 000000000000..03c43746f170 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/6.6.59/LuisPater.CLIProxyAPI.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 6.6.59 +PackageLocale: en-US +Publisher: Luis Pater +PublisherUrl: https://github.com/router-for-me +PublisherSupportUrl: https://github.com/router-for-me/CLIProxyAPI/issues +Author: Luis Pater +PackageName: CLI Proxy API +PackageUrl: https://github.com/router-for-me/CLIProxyAPI +License: MIT +LicenseUrl: https://github.com/router-for-me/CLIProxyAPI/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Luis Pater +ShortDescription: Wrap Gemini CLI, ChatGPT Codex as an OpenAI/Gemini/Claude compatible API service, allowing you to enjoy the free Gemini 2.5 Pro, GPT 5 model through API +Description: |- + A proxy server that provides OpenAI/Gemini/Claude compatible API interfaces for CLI. + It now also supports OpenAI Codex (GPT models) and Claude Code via OAuth. + so you can use local or multi‑account CLI access with OpenAI‑compatible clients and SDKs. + Now, We added the first Chinese provider: Qwen Code. +Tags: +- ai +- chatbot +- chatgpt +- claude +- claude-code +- codex +- gemini +- large-language-model +- llm +- openai +ReleaseNotes: |- + Changelog + - c281f4cbafd67eeac64203e7ecc7579282b7640e Fixed: #747 + - 3f50da85c1772fada12e5f407002ce0e9d128f1b Merge pull request #745 from router-for-me/auth + - 8be06255f754edfbb7a7bddea1b74472069995a3 fix(auth): make provider rotation atomic +ReleaseNotesUrl: https://github.com/router-for-me/CLIProxyAPI/releases/tag/v6.6.59 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.6.59/LuisPater.CLIProxyAPI.locale.zh-CN.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.6.59/LuisPater.CLIProxyAPI.locale.zh-CN.yaml new file mode 100644 index 000000000000..fcd73a6a5739 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/6.6.59/LuisPater.CLIProxyAPI.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 6.6.59 +PackageLocale: zh-CN +ShortDescription: 封装 Gemini CLI 和 ChatGPT Codex 为兼容 OpenAI/Gemini/Claude 的 API 服务,让您通过 API 畅享免费的 Gemini 2.5 Pro 和 GPT 5 模型 +Description: |- + 一个为 CLI 提供 OpenAI/Gemini/Claude 兼容 API 接口的代理服务器。 + 现已支持通过 OAuth 登录接入 OpenAI Codex(GPT 系列)和 Claude Code。 + 可与本地或多账户方式配合,使用任何 OpenAI 兼容的客户端与 SDK。 + 现在,我们添加了第一个中国提供商:Qwen Code。 +Tags: +- chatgpt +- claude +- claude-code +- codex +- gemini +- openai +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.6.59/LuisPater.CLIProxyAPI.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.6.59/LuisPater.CLIProxyAPI.yaml new file mode 100644 index 000000000000..d6932a7e46ea --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/6.6.59/LuisPater.CLIProxyAPI.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: LuisPater.CLIProxyAPI +PackageVersion: 6.6.59 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.6.60/LuisPater.CLIProxyAPI.installer.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.6.60/LuisPater.CLIProxyAPI.installer.yaml new file mode 100644 index 000000000000..cae969a86d54 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/6.6.60/LuisPater.CLIProxyAPI.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: LuisPater.CLIProxyAPI +PackageVersion: 6.6.60 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cli-proxy-api.exe +Commands: +- cli-proxy-api +ReleaseDate: 2025-12-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/router-for-me/CLIProxyAPI/releases/download/v6.6.60/CLIProxyAPI_6.6.60_windows_amd64.zip + InstallerSha256: D732FCA7D8700379328D49F95D9B6F3D134DC300738370670C41CA68178D0E2E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.6.60/LuisPater.CLIProxyAPI.locale.en-US.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.6.60/LuisPater.CLIProxyAPI.locale.en-US.yaml new file mode 100644 index 000000000000..7f24ed8c6d73 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/6.6.60/LuisPater.CLIProxyAPI.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 6.6.60 +PackageLocale: en-US +Publisher: Luis Pater +PublisherUrl: https://github.com/router-for-me +PublisherSupportUrl: https://github.com/router-for-me/CLIProxyAPI/issues +Author: Luis Pater +PackageName: CLI Proxy API +PackageUrl: https://github.com/router-for-me/CLIProxyAPI +License: MIT +LicenseUrl: https://github.com/router-for-me/CLIProxyAPI/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Luis Pater +ShortDescription: Wrap Gemini CLI, ChatGPT Codex as an OpenAI/Gemini/Claude compatible API service, allowing you to enjoy the free Gemini 2.5 Pro, GPT 5 model through API +Description: |- + A proxy server that provides OpenAI/Gemini/Claude compatible API interfaces for CLI. + It now also supports OpenAI Codex (GPT models) and Claude Code via OAuth. + so you can use local or multi‑account CLI access with OpenAI‑compatible clients and SDKs. + Now, We added the first Chinese provider: Qwen Code. +Tags: +- ai +- chatbot +- chatgpt +- claude +- claude-code +- codex +- gemini +- large-language-model +- llm +- openai +ReleaseNotes: |- + Changelog + - 7646a2b877bfa0762a790e798ad219f719279110 Fixed: #749 + - 62090f256836ad7c2c58885519475f81107b65ef Merge pull request #750 from router-for-me/config + - ee552f87208d54c795f5a5a7efac54db6531cbb5 chore(config): update ignore patterns + - 375ef252abad0ba56ddb2d350b02ab85d0590622 docs(config): clarify merge mapping behavior + - 2e88c4858ea14f882fc673fc167653b5aa9dc103 fix(config): avoid adding new keys when merging + - 09455f9e85b22cdadd8f71c36aebbd807fc3ed63 fix(config): make streaming keepalive and retries ints + - c8e72ba0dc1cc0b1625721821725748bc5ffb1c1 fix(config): smart merge writes non-default new keys only +ReleaseNotesUrl: https://github.com/router-for-me/CLIProxyAPI/releases/tag/v6.6.60 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.6.60/LuisPater.CLIProxyAPI.locale.zh-CN.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.6.60/LuisPater.CLIProxyAPI.locale.zh-CN.yaml new file mode 100644 index 000000000000..7eab5d1b8b42 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/6.6.60/LuisPater.CLIProxyAPI.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 6.6.60 +PackageLocale: zh-CN +ShortDescription: 封装 Gemini CLI 和 ChatGPT Codex 为兼容 OpenAI/Gemini/Claude 的 API 服务,让您通过 API 畅享免费的 Gemini 2.5 Pro 和 GPT 5 模型 +Description: |- + 一个为 CLI 提供 OpenAI/Gemini/Claude 兼容 API 接口的代理服务器。 + 现已支持通过 OAuth 登录接入 OpenAI Codex(GPT 系列)和 Claude Code。 + 可与本地或多账户方式配合,使用任何 OpenAI 兼容的客户端与 SDK。 + 现在,我们添加了第一个中国提供商:Qwen Code。 +Tags: +- chatgpt +- claude +- claude-code +- codex +- gemini +- openai +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.6.60/LuisPater.CLIProxyAPI.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.6.60/LuisPater.CLIProxyAPI.yaml new file mode 100644 index 000000000000..0c53250a099d --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/6.6.60/LuisPater.CLIProxyAPI.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: LuisPater.CLIProxyAPI +PackageVersion: 6.6.60 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/Teams/25332.1210.4188.1171/Microsoft.Teams.installer.yaml b/manifests/m/Microsoft/Teams/25332.1210.4188.1171/Microsoft.Teams.installer.yaml new file mode 100644 index 000000000000..ad56d84208af --- /dev/null +++ b/manifests/m/Microsoft/Teams/25332.1210.4188.1171/Microsoft.Teams.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Microsoft.Teams +PackageVersion: 25332.1210.4188.1171 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +Scope: user +UpgradeBehavior: install +PackageFamilyName: MSTeams_8wekyb3d8bbwe +Installers: +- Architecture: x86 + InstallerUrl: https://installer.teams.static.microsoft/production-windows-x86/25332.1210.4188.1171/MSTeams-x86.msix + InstallerSha256: 026D74AAB05F000C3119F38569473B79DF3C21327E148A4C0E03D421A2F53298 + SignatureSha256: B3700C7709EB85AB82BADD71ABFE1592BCBE27DB8223B4C754B6322A9750002E +- Architecture: x64 + InstallerUrl: https://installer.teams.static.microsoft/production-windows-x64/25332.1210.4188.1171/MSTeams-x64.msix + InstallerSha256: 95D508CC89FD1CD43163C1789B26E8F770C30F4BE077E817226D77720606BA08 + SignatureSha256: A0FA15E173C5E258C0E0825CD4945952FCF38CE1AF59B0D20F8E0AEFAD032F4D +- Architecture: arm64 + InstallerUrl: https://installer.teams.static.microsoft/production-windows-arm64/25332.1210.4188.1171/MSTeams-arm64.msix + InstallerSha256: 69C87098FD8E15FD683D2056EA996746C41A614CD1E8EA84F4DA2DD9145FCC47 + SignatureSha256: 935F595AC575BC60B31C7932E38803E8CA1F74E850B5DFC10ACE2E36039049B5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/Teams/25332.1210.4188.1171/Microsoft.Teams.locale.en-US.yaml b/manifests/m/Microsoft/Teams/25332.1210.4188.1171/Microsoft.Teams.locale.en-US.yaml new file mode 100644 index 000000000000..249937dc96e2 --- /dev/null +++ b/manifests/m/Microsoft/Teams/25332.1210.4188.1171/Microsoft.Teams.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Microsoft.Teams +PackageVersion: 25332.1210.4188.1171 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://support.microsoft.com/teams +PrivacyUrl: https://privacy.microsoft.com/privacystatement +Author: Microsoft Corporation +PackageName: Microsoft Teams +PackageUrl: https://www.microsoft.com/microsoft-teams/group-chat-software +License: Proprietary +LicenseUrl: https://www.microsoft.com/legal/terms-of-use +Copyright: (c) Microsoft Corporation. All rights reserved. +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: Collaborate more effectively with a faster, simpler, smarter, and more flexible Teams. +Description: Working together is easier with Microsoft Teams. Tools and files are always available in one place that's designed to help you connect naturally, stay organized and bring ideas to life. +Moniker: teams +Tags: +- call +- calling +- chat +- collaborate +- collaboration +- conferencing +- meet +- meeting +- msteams +- team +- teams +- video +- video-conferencing +- voice +- voip +- webinar +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/Teams/25332.1210.4188.1171/Microsoft.Teams.locale.zh-CN.yaml b/manifests/m/Microsoft/Teams/25332.1210.4188.1171/Microsoft.Teams.locale.zh-CN.yaml new file mode 100644 index 000000000000..6ae790ad9cea --- /dev/null +++ b/manifests/m/Microsoft/Teams/25332.1210.4188.1171/Microsoft.Teams.locale.zh-CN.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Microsoft.Teams +PackageVersion: 25332.1210.4188.1171 +PackageLocale: zh-CN +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://support.microsoft.com/zh-cn/teams +PrivacyUrl: https://privacy.microsoft.com/zh-cn/privacystatement +Author: Microsoft Corporation +PackageName: Microsoft Teams +PackageUrl: https://www.microsoft.com/zh-cn/microsoft-teams/group-chat-software +License: 专有软件 +LicenseUrl: https://www.microsoft.com/legal/terms-of-use +Copyright: (c) Microsoft Corporation. All rights reserved. +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: 使用更快、更简单、更智能和更灵活的 Teams,更有效地进行协作。 +Description: Microsoft Teams 让协作更轻松。所有工具和文件都整合在一个位置,旨在帮助你轻松自如地建立联系、保持有序并将想法付诸于实践。 +Tags: +- msteams +- teams +- voip +- 会议 +- 协作 +- 协同 +- 团队 +- 开会 +- 电话 +- 研讨会 +- 视频 +- 视频会议 +- 聊天 +- 语音 +- 通话 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/Teams/25332.1210.4188.1171/Microsoft.Teams.yaml b/manifests/m/Microsoft/Teams/25332.1210.4188.1171/Microsoft.Teams.yaml new file mode 100644 index 000000000000..3e6f46fc1236 --- /dev/null +++ b/manifests/m/Microsoft/Teams/25332.1210.4188.1171/Microsoft.Teams.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: Microsoft.Teams +PackageVersion: 25332.1210.4188.1171 +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 000000000000..1040ab699ca5 --- /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 000000000000..9785469ca277 --- /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 000000000000..762230875805 --- /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 000000000000..4486896b8d27 --- /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/o/OliverBetz/ExifTool/13.45/OliverBetz.ExifTool.installer.yaml b/manifests/o/OliverBetz/ExifTool/13.45/OliverBetz.ExifTool.installer.yaml new file mode 100644 index 000000000000..aef0beaac0eb --- /dev/null +++ b/manifests/o/OliverBetz/ExifTool/13.45/OliverBetz.ExifTool.installer.yaml @@ -0,0 +1,58 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OliverBetz.ExifTool +PackageVersion: '13.45' +InstallerLocale: en-US +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: ExifTool_is1 +ReleaseDate: 2025-12-27 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://oliverbetz.de/cms/files/Artikel/ExifTool-for-Windows/ExifTool_install_13.45_32.exe + InstallerSha256: 78A37896E7629A0A1228A85735858020218C264D1C7628D98A0D139AE1597063 + InstallerSwitches: + Custom: /CURRENTUSER + AppsAndFeaturesEntries: + - DisplayVersion: 13.45_32 + ProductCode: ExifTool_is1 +- Architecture: x86 + Scope: machine + InstallerUrl: https://oliverbetz.de/cms/files/Artikel/ExifTool-for-Windows/ExifTool_install_13.45_32.exe + InstallerSha256: 78A37896E7629A0A1228A85735858020218C264D1C7628D98A0D139AE1597063 + InstallerSwitches: + Custom: /ALLUSERS + AppsAndFeaturesEntries: + - DisplayVersion: 13.45_32 + ProductCode: ExifTool_is1 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\ExifTool' +- Architecture: x64 + Scope: user + InstallerUrl: https://oliverbetz.de/cms/files/Artikel/ExifTool-for-Windows/ExifTool_install_13.45_64.exe + InstallerSha256: 56E30674EA32ECB65C722194ADD16AD0A585FDC013E3542E518405AE45D9B09F + InstallerSwitches: + Custom: /CURRENTUSER + AppsAndFeaturesEntries: + - DisplayVersion: 13.45_64 + ProductCode: ExifTool_is1 +- Architecture: x64 + Scope: machine + InstallerUrl: https://oliverbetz.de/cms/files/Artikel/ExifTool-for-Windows/ExifTool_install_13.45_64.exe + InstallerSha256: 56E30674EA32ECB65C722194ADD16AD0A585FDC013E3542E518405AE45D9B09F + InstallerSwitches: + Custom: /ALLUSERS + AppsAndFeaturesEntries: + - DisplayVersion: 13.45_64 + ProductCode: ExifTool_is1 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\ExifTool' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/OliverBetz/ExifTool/13.45/OliverBetz.ExifTool.locale.en-US.yaml b/manifests/o/OliverBetz/ExifTool/13.45/OliverBetz.ExifTool.locale.en-US.yaml new file mode 100644 index 000000000000..f5740d1285d2 --- /dev/null +++ b/manifests/o/OliverBetz/ExifTool/13.45/OliverBetz.ExifTool.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OliverBetz.ExifTool +PackageVersion: '13.45' +PackageLocale: en-US +Publisher: Oliver Betz +PublisherUrl: https://oliverbetz.de/ +Author: Oliver Betz +PackageName: ExifTool +PackageUrl: https://oliverbetz.de/pages/Artikel/ExifTool-for-Windows +License: CC0-1.0 +LicenseUrl: https://oliverbetz.de/pages/Artikel/ExifTool-for-Windows#toc-7 +ShortDescription: A convenient installer and a robust portable package of Phil Harvey's ExifTool for Windows +Moniker: exif +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OliverBetz/ExifTool/13.45/OliverBetz.ExifTool.yaml b/manifests/o/OliverBetz/ExifTool/13.45/OliverBetz.ExifTool.yaml new file mode 100644 index 000000000000..211ded19b051 --- /dev/null +++ b/manifests/o/OliverBetz/ExifTool/13.45/OliverBetz.ExifTool.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: OliverBetz.ExifTool +PackageVersion: '13.45' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/Plex/Plex/1.112.0.359/Plex.Plex.installer.yaml b/manifests/p/Plex/Plex/1.112.0.359/Plex.Plex.installer.yaml new file mode 100644 index 000000000000..6cd74f509c1d --- /dev/null +++ b/manifests/p/Plex/Plex/1.112.0.359/Plex.Plex.installer.yaml @@ -0,0 +1,32 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Plex.Plex +PackageVersion: 1.112.0.359 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSuccessCodes: +- 1223 +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: Plex +ReleaseDate: 2025-12-01 +AppsAndFeaturesEntries: +- DisplayVersion: 1.112.0 + ProductCode: Plex +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Plex\Plex' +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.plex.tv/plex-desktop/1.112.0.359-0d79a49f/windows/Plex-1.112.0.359-0d79a49f-x86_64.exe + InstallerSha256: 7060C7A03F0A7E08CDA5E492C9140869F50575E739F17E38666CA0A7EF597D8E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Plex/Plex/1.112.0.359/Plex.Plex.locale.en-US.yaml b/manifests/p/Plex/Plex/1.112.0.359/Plex.Plex.locale.en-US.yaml new file mode 100644 index 000000000000..af4df9a24aec --- /dev/null +++ b/manifests/p/Plex/Plex/1.112.0.359/Plex.Plex.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Plex.Plex +PackageVersion: 1.112.0.359 +PackageLocale: en-US +Publisher: Plex, Inc. +PublisherUrl: https://www.plex.tv/ +PublisherSupportUrl: https://support.plex.tv/ +PrivacyUrl: https://www.plex.tv/about/privacy-legal +Author: Plex, Inc. +PackageName: Plex +PackageUrl: https://www.plex.tv/ +License: Freemium, GPL-2.0 +LicenseUrl: https://www.plex.tv/about/privacy-legal/plex-terms-of-service +Copyright: Copyright © 2023 Plex +CopyrightUrl: https://www.plex.tv/about/privacy-legal/plex-copyright-policy +ShortDescription: Plex is a global streaming media service and a client–server media player platform, made by Plex, Inc. +Moniker: plex +Tags: +- audio +- cross-platform +- media +- media-streamer +- music-streamer +- streaming +- video +- video-streamer +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Plex/Plex/1.112.0.359/Plex.Plex.yaml b/manifests/p/Plex/Plex/1.112.0.359/Plex.Plex.yaml new file mode 100644 index 000000000000..f7236ce1203d --- /dev/null +++ b/manifests/p/Plex/Plex/1.112.0.359/Plex.Plex.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: Plex.Plex +PackageVersion: 1.112.0.359 +DefaultLocale: en-US +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 000000000000..59b56dbbdaab --- /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 000000000000..060ce1ed67b8 --- /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 000000000000..336e18a206e0 --- /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/r/Recol/DLSSUpdater/3.0.1/Recol.DLSSUpdater.installer.yaml b/manifests/r/Recol/DLSSUpdater/3.0.1/Recol.DLSSUpdater.installer.yaml new file mode 100644 index 000000000000..d12d1246d5df --- /dev/null +++ b/manifests/r/Recol/DLSSUpdater/3.0.1/Recol.DLSSUpdater.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Recol.DLSSUpdater +PackageVersion: 3.0.1 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallModes: +- interactive +- silent +Installers: +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: DLSS_Updater.exe + PortableCommandAlias: dlss-updater + InstallerUrl: https://github.com/Recol/DLSS-Updater/releases/download/V3.0.1/DLSS.Updater.3.0.1.zip + InstallerSha256: 1DFBDA17C2513F1CC614CAEC300AAEDADC5981764029C09516AF875F1B334C78 + UpgradeBehavior: install +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/r/Recol/DLSSUpdater/3.0.1/Recol.DLSSUpdater.locale.en-US.yaml b/manifests/r/Recol/DLSSUpdater/3.0.1/Recol.DLSSUpdater.locale.en-US.yaml new file mode 100644 index 000000000000..657d6524b3d8 --- /dev/null +++ b/manifests/r/Recol/DLSSUpdater/3.0.1/Recol.DLSSUpdater.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Recol.DLSSUpdater +PackageVersion: 3.0.1 +PackageLocale: en-US +Publisher: Recol +PublisherUrl: https://github.com/Recol +PublisherSupportUrl: https://github.com/Recol/DLSS-Updater/issues +Author: Deco +PackageName: DLSS Updater +PackageUrl: https://github.com/Recol/DLSS-Updater +License: AGPL-3.0 +LicenseUrl: https://github.com/Recol/DLSS-Updater/blob/main/LICENSE +ShortDescription: A tool to update DLSS, XeSS, and DirectStorage DLLs for various games +Description: | + DLSS Updater is a utility that automatically updates DLSS (Deep Learning Super Sampling), XeSS (Intel Xe Super Sampling), and DirectStorage DLLs for games across multiple platforms. + + Note: This application requires administrative privileges to modify game files. +Tags: +- dlss +- nvidia +- gaming +- xess +- directstorage +ReleaseNotes: https://github.com/Recol/DLSS-Updater/releases/tag/V3.0.1 +ReleaseNotesUrl: https://github.com/Recol/DLSS-Updater/releases/tag/V3.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/r/Recol/DLSSUpdater/3.0.1/Recol.DLSSUpdater.yaml b/manifests/r/Recol/DLSSUpdater/3.0.1/Recol.DLSSUpdater.yaml new file mode 100644 index 000000000000..ac81b1e8c590 --- /dev/null +++ b/manifests/r/Recol/DLSSUpdater/3.0.1/Recol.DLSSUpdater.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Recol.DLSSUpdater +PackageVersion: 3.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/s/Sidero/omnictl/1.4.1/Sidero.omnictl.installer.yaml b/manifests/s/Sidero/omnictl/1.4.1/Sidero.omnictl.installer.yaml new file mode 100644 index 000000000000..383a19831665 --- /dev/null +++ b/manifests/s/Sidero/omnictl/1.4.1/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.1 +InstallerType: portable +Commands: +- omnictl +ReleaseDate: 2025-12-19 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/siderolabs/omni/releases/download/v1.4.1/omnictl-windows-amd64.exe + InstallerSha256: C072C2CB5A31CB7B2C453DA57DCB5C919284FC90EF36A16558839EC616A8CE60 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/Sidero/omnictl/1.4.1/Sidero.omnictl.locale.en-US.yaml b/manifests/s/Sidero/omnictl/1.4.1/Sidero.omnictl.locale.en-US.yaml new file mode 100644 index 000000000000..45eb8c9671c8 --- /dev/null +++ b/manifests/s/Sidero/omnictl/1.4.1/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.1 +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.1 (2025-12-19) + Welcome to the v1.4.1 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 + - Utku Ozdemir + Changes + 2 commits + - 0786003e release(v1.4.1): prepare release + - 14d0e6c1 fix: prevent audit logs migration from getting stuck + Dependency Changes + This release has no dependency changes + Previous release can be found at v1.4.0 +ReleaseNotesUrl: https://github.com/siderolabs/omni/releases/tag/v1.4.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Sidero/omnictl/1.4.1/Sidero.omnictl.yaml b/manifests/s/Sidero/omnictl/1.4.1/Sidero.omnictl.yaml new file mode 100644 index 000000000000..d05cea1159cf --- /dev/null +++ b/manifests/s/Sidero/omnictl/1.4.1/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.1 +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 000000000000..f90f75bff2da --- /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 000000000000..87db30b86bf6 --- /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 000000000000..55166e880141 --- /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/s/Sidero/omnictl/1.4.5/Sidero.omnictl.installer.yaml b/manifests/s/Sidero/omnictl/1.4.5/Sidero.omnictl.installer.yaml new file mode 100644 index 000000000000..ecf0a4ac0e37 --- /dev/null +++ b/manifests/s/Sidero/omnictl/1.4.5/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.5 +InstallerType: portable +Commands: +- omnictl +ReleaseDate: 2025-12-23 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/siderolabs/omni/releases/download/v1.4.5/omnictl-windows-amd64.exe + InstallerSha256: 9EFA085BAB0AC7086FD112B92E4A6E60C346238E8D31726837CA2CB0C3973D55 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/Sidero/omnictl/1.4.5/Sidero.omnictl.locale.en-US.yaml b/manifests/s/Sidero/omnictl/1.4.5/Sidero.omnictl.locale.en-US.yaml new file mode 100644 index 000000000000..ecb0b7a0179d --- /dev/null +++ b/manifests/s/Sidero/omnictl/1.4.5/Sidero.omnictl.locale.en-US.yaml @@ -0,0 +1,67 @@ +# 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.5 +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.5 (2025-12-23) + Welcome to the v1.4.5 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 + - Artem Chernyshev + Changes + 3 commits + - e4bc9fc7 release(v1.4.5): prepare release + - fa0b3747 chore: bump API version to 2 as old CLI is no longer 100% compatible + - 63eeb259 fix: ignore labeled MachineSetNodes in the export and sync CLI cmds + Dependency Changes + This release has no dependency changes + Previous release can be found at v1.4.4 +ReleaseNotesUrl: https://github.com/siderolabs/omni/releases/tag/v1.4.5 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/Sidero/omnictl/1.4.5/Sidero.omnictl.yaml b/manifests/s/Sidero/omnictl/1.4.5/Sidero.omnictl.yaml new file mode 100644 index 000000000000..dcf14b24e93f --- /dev/null +++ b/manifests/s/Sidero/omnictl/1.4.5/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.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/t/Tencent/CodeBuddy/1.100.0/Tencent.CodeBuddy.installer.yaml b/manifests/t/Tencent/CodeBuddy/1.100.0/Tencent.CodeBuddy.installer.yaml index 5fb80f604b37..3861f31c9b07 100644 --- a/manifests/t/Tencent/CodeBuddy/1.100.0/Tencent.CodeBuddy.installer.yaml +++ b/manifests/t/Tencent/CodeBuddy/1.100.0/Tencent.CodeBuddy.installer.yaml @@ -152,10 +152,10 @@ FileExtensions: - yml - zsh ProductCode: '{CC6B787D-37A0-49E8-AE24-8559A032BE0C}_is1' -ReleaseDate: 2025-12-18 +ReleaseDate: 2025-12-27 Installers: - Architecture: x64 - InstallerUrl: https://codebuddy-1328495429.cos.accelerate.myqcloud.com/aiide/win32-x64-user/CodeBuddy-win32-x64-user-4.1.2.15364975-c66da3dc81-5917ed8b.exe - InstallerSha256: 0308C22521B6E49C4594C566DFCB632FCA9403C24ED437D727AA3270A6417FB9 + InstallerUrl: https://codebuddy-1328495429.cos.accelerate.myqcloud.com/aiide/win32-x64-user/CodeBuddy-win32-x64-user-4.2.2.16135922-ac46abb397-d4a42927.exe + InstallerSha256: 0A0765D7117F51B66B3CCFDC5F94A87A8FA5878CD9DC26ACB007ACF72986472D ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/t/TuxGuitar/TuxGuitar/2.0.1/TuxGuitar.TuxGuitar.installer.yaml b/manifests/t/TuxGuitar/TuxGuitar/2.0.1/TuxGuitar.TuxGuitar.installer.yaml new file mode 100644 index 000000000000..c5d3fbe05f50 --- /dev/null +++ b/manifests/t/TuxGuitar/TuxGuitar/2.0.1/TuxGuitar.TuxGuitar.installer.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: TuxGuitar.TuxGuitar +PackageVersion: 2.0.1 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: --mode unattended --unattendedmodeui none + SilentWithProgress: --mode unattended --unattendedmodeui minimal + InstallLocation: --prefix "" +UpgradeBehavior: install +FileExtensions: +- gp +- gp3 +- gp4 +- gp5 +- gpx +- gtp +- ptb +- tef +- tg +ProductCode: TuxGuitar 2.0.1 +ReleaseDate: 2025-12-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/helge17/tuxguitar/releases/download/2.0.1/tuxguitar-2.0.1-windows-swt-x86_64-installer.exe + InstallerSha256: 8FB76FBDA90211C211688D0EA8028FA685302713E34F99140607D3973B07F69E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/t/TuxGuitar/TuxGuitar/2.0.1/TuxGuitar.TuxGuitar.locale.en-US.yaml b/manifests/t/TuxGuitar/TuxGuitar/2.0.1/TuxGuitar.TuxGuitar.locale.en-US.yaml new file mode 100644 index 000000000000..8ea4675d8fed --- /dev/null +++ b/manifests/t/TuxGuitar/TuxGuitar/2.0.1/TuxGuitar.TuxGuitar.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: TuxGuitar.TuxGuitar +PackageVersion: 2.0.1 +PackageLocale: en-US +Publisher: TuxGuitar +PublisherUrl: https://github.com/helge17 +PublisherSupportUrl: https://github.com/helge17/tuxguitar/issues +Author: Julian Gabriel Casadesus +PackageName: TuxGuitar +PackageUrl: https://github.com/helge17/tuxguitar +License: LGPL-2.1 +LicenseUrl: https://github.com/helge17/tuxguitar/blob/HEAD/LICENSE +Copyright: Copyright (C) 2005-2025 Julian Gabriel Casadesus +ShortDescription: An Open Source multitrack tablature editor and player written in Java. +Tags: +- guitar +- music +- tablature +ReleaseNotes: |- + * Fix note duration change when empty space in measure is longer than a whole + * Fix saving tempo base + * Fix gp/zip and gpx file detection on Linux +ReleaseNotesUrl: https://github.com/helge17/tuxguitar/blob/HEAD/CHANGES +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/t/TuxGuitar/TuxGuitar/2.0.1/TuxGuitar.TuxGuitar.locale.zh-CN.yaml b/manifests/t/TuxGuitar/TuxGuitar/2.0.1/TuxGuitar.TuxGuitar.locale.zh-CN.yaml new file mode 100644 index 000000000000..12c42c607bfe --- /dev/null +++ b/manifests/t/TuxGuitar/TuxGuitar/2.0.1/TuxGuitar.TuxGuitar.locale.zh-CN.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: TuxGuitar.TuxGuitar +PackageVersion: 2.0.1 +PackageLocale: zh-CN +Publisher: TuxGuitar +PackageName: TuxGuitar +ShortDescription: 一款用 Java 编写的开源多轨制表编辑器和播放器。 +Tags: +- 乐谱 +- 五线谱 +- 吉他 +- 琴谱 +- 音乐 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/t/TuxGuitar/TuxGuitar/2.0.1/TuxGuitar.TuxGuitar.yaml b/manifests/t/TuxGuitar/TuxGuitar/2.0.1/TuxGuitar.TuxGuitar.yaml new file mode 100644 index 000000000000..b1a9d9375044 --- /dev/null +++ b/manifests/t/TuxGuitar/TuxGuitar/2.0.1/TuxGuitar.TuxGuitar.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: TuxGuitar.TuxGuitar +PackageVersion: 2.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.4.12/usual2970.Certimate.installer.yaml b/manifests/u/usual2970/Certimate/0.4.12/usual2970.Certimate.installer.yaml new file mode 100644 index 000000000000..945d495e390d --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.4.12/usual2970.Certimate.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.4.12 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: certimate.exe + PortableCommandAlias: certimate +Commands: +- certimate +ReleaseDate: 2025-12-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/certimate-go/certimate/releases/download/v0.4.12/certimate_v0.4.12_windows_amd64.zip + InstallerSha256: F952F941860F8C405997B1BC434D813EB1979C4D1DAD64259B97C782AED7EA0B +- Architecture: arm64 + InstallerUrl: https://github.com/certimate-go/certimate/releases/download/v0.4.12/certimate_v0.4.12_windows_arm64.zip + InstallerSha256: 0C63758BA83B6636A3DD25C9E53EAC56E7EE19408CE9B53310B763BEAD93A970 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.4.12/usual2970.Certimate.locale.en-US.yaml b/manifests/u/usual2970/Certimate/0.4.12/usual2970.Certimate.locale.en-US.yaml new file mode 100644 index 000000000000..fa987e0e9ba9 --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.4.12/usual2970.Certimate.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: usual2970.Certimate +PackageVersion: 0.4.12 +PackageLocale: en-US +Publisher: Yoan.liu +PublisherUrl: https://profile.ikit.fun/ +PublisherSupportUrl: https://github.com/certimate-go/certimate/issues +PackageName: Certimate +PackageUrl: https://docs.certimate.me/en/ +License: MIT +LicenseUrl: https://github.com/certimate-go/certimate/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2025 certimate-go + Copyright (c) 2025 Yoan.Liu +ShortDescription: An open-source SSL certificate management tool that helps you automatically apply for and deploy SSL certificates, as well as automatically renew them when they are about to expire. +Description: |- + For individuals managing personal projects or those responsible for IT operations in small businesses who need to manage multiple domain names, applying for certificates manually comes with several drawbacks: + - 😱 Troublesome: Applying for and deploying certificates isn’t difficult, but it can be quite a hassle, especially when managing multiple domains. + - 😭 Easily forgotten: The current free certificate has a validity period of only 90 days, requiring regular renewal operations. This increases the workload and makes it easy to forget, which can result in the website becoming inaccessible. + Certimate was created to solve the above-mentioned issues and has the following advantages: + - Local Deployment: Simply to install, download the binary and run it directly. Supports Docker deployment and source code deployment for added flexibility. + - Data Security: With private deployment, all data is stored on your own servers, ensuring it never resides on third-party systems and maintaining full control over your data. + - Easy Operation: Effortlessly apply and deploy SSL certificates with minimal configuration. The system automatically renews certificates before expiration, providing a fully automated workflow, no manual intervention required. + Certimate aims to provide users with a secure and user-friendly SSL certificate management solution. + 💡 Features + - Flexible workflow orchestration, fully automation from certificate application to deployment; + - Supports single-domain, multi-domain, wildcard certificates, with options for RSA or ECC. + - Supports various certificate formats such as PEM, PFX, JKS. + - Supports more than 20+ domain registrars (e.g., Alibaba Cloud, Tencent Cloud, Cloudflare, etc. Check out this link); + - Supports more than 60+ deployment targets (e.g., Kubernetes, CDN, WAF, load balancers, etc. Check out this link); + - Supports multiple notification channels including email, DingTalk, Feishu, WeCom, Webhook, and more; + - Supports multiple ACME CAs including Let's Encrypt, ZeroSSL, Google Trust Services, and more; + - More features waiting to be discovered. +Tags: +- acme +- cert +- certbot +- certificate +- ssl +ReleaseNotesUrl: https://github.com/certimate-go/certimate/releases/tag/v0.4.12 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.certimate.me/en/docs/introduction/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.4.12/usual2970.Certimate.locale.zh-CN.yaml b/manifests/u/usual2970/Certimate/0.4.12/usual2970.Certimate.locale.zh-CN.yaml new file mode 100644 index 000000000000..e5e683891ad8 --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.4.12/usual2970.Certimate.locale.zh-CN.yaml @@ -0,0 +1,53 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: usual2970.Certimate +PackageVersion: 0.4.12 +PackageLocale: zh-CN +Publisher: Yoan.liu +PublisherUrl: https://profile.ikit.fun/ +PublisherSupportUrl: https://github.com/certimate-go/certimate/issues +PackageName: Certimate +PackageUrl: https://docs.certimate.me/ +License: MIT +LicenseUrl: https://github.com/certimate-go/certimate/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2025 certimate-go + Copyright (c) 2025 Yoan.Liu +ShortDescription: 开源的 SSL 证书管理工具,可以帮助你自动申请、部署 SSL 证书,并在证书即将过期时自动续期。 +Description: |- + 做个人产品或者在中小企业里负责运维的同学,会遇到要管理多个域名的情况,需要给域名申请证书。但是手动申请证书有以下缺点: + - 😱 麻烦:申请证书并部署到服务的流程虽不复杂,但也挺麻烦的,犹其是你有多个域名需要维护的时候。 + - 😭 易忘:另外当前免费证书的有效期只有 90 天,这就要求你定期的操作,增加了工作量的同时,你也很容易忘掉续期,从而导致网站访问不了。 + Certimate 就是为了解决上述问题而产生的,它具有以下优势: + - 本地部署:一键安装,只需要下载二进制文件,然后直接运行即可。同时也支持 Docker 部署、源代码部署等方式。​ + - 数据安全:由于是私有部署,所有数据均存储在自己的服务器上,不会经过第三方,确保数据的隐私和安全。​ + - 操作简单:简单配置即可轻松申请 SSL 证书并部署到指定的目标上,在证书即将过期前自动续期,从申请证书到使用证书完全自动化,无需人工操作。​ + Certimate 旨在为用户提供一个安全、简便的 SSL 证书管理解决方案。 + 💡 功能特性 + - 灵活的工作流编排方式,证书从申请到部署完全自动化; + - 支持单域名、多域名、泛域名证书,可选 RSA、ECC 签名算法; + - 支持 PEM、PFX、JKS 等多种格式输出证书; + - 支持 20+ 域名托管商(如阿里云、腾讯云、Cloudflare 等,点此查看完整提供商清单); + - 支持 60+ 部署目标(如 Kubernetes、CDN、WAF、负载均衡等,点此查看完整提供商清单); + - 支持邮件、钉钉、飞书、企业微信、Webhook 等多种通知渠道; + - 支持 Let's Encrypt、ZeroSSL、Google Trust Services 等多种 ACME 证书颁发机构; + - 更多特性等待探索。 +Tags: +- acme +- certbot +- ssl +- 证书 +ReleaseNotes: |- + Changelog + 🐛 修复 Bug + - 修复 #1127 相关问题 + - 修复 v0.4.11 迁移脚本错误,导致无法全新安装的问题 + + Comparing changes: https://github.com/certimate-go/certimate/compare/v0.4.11...v0.4.12, by @fudiwei +ReleaseNotesUrl: https://github.com/certimate-go/certimate/releases/tag/v0.4.12 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.certimate.me/docs/introduction/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/u/usual2970/Certimate/0.4.12/usual2970.Certimate.yaml b/manifests/u/usual2970/Certimate/0.4.12/usual2970.Certimate.yaml new file mode 100644 index 000000000000..305bc9efc8a7 --- /dev/null +++ b/manifests/u/usual2970/Certimate/0.4.12/usual2970.Certimate.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: usual2970.Certimate +PackageVersion: 0.4.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/v/VideoLAN/VLC/Nightly/4.0.0.0-nightly20251227/VideoLAN.VLC.Nightly.installer.yaml b/manifests/v/VideoLAN/VLC/Nightly/4.0.0.0-nightly20251227/VideoLAN.VLC.Nightly.installer.yaml new file mode 100644 index 000000000000..b0ffbc733ee3 --- /dev/null +++ b/manifests/v/VideoLAN/VLC/Nightly/4.0.0.0-nightly20251227/VideoLAN.VLC.Nightly.installer.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: VideoLAN.VLC.Nightly +PackageVersion: 4.0.0.0-nightly20251227 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ReleaseDate: 2025-12-27 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/VideoLAN/VLC' +Installers: +- Architecture: x64 + InstallerUrl: https://artifacts.videolan.org/vlc/nightly-win64/20251227-0425/vlc-4.0.0-dev-win64-36464b93.msi + InstallerSha256: F24488042E05B2107DA41544526B27EB7B3D28910054DBFFB1DE49291489C072 + ProductCode: '{6B90186E-0A7A-4F03-953D-0C65DBAF11B4}' + AppsAndFeaturesEntries: + - ProductCode: '{6B90186E-0A7A-4F03-953D-0C65DBAF11B4}' + UpgradeCode: '{D2E0205B-0D3A-46E2-ADF7-0504FF48CF04}' +- Architecture: arm64 + InstallerUrl: https://artifacts.videolan.org/vlc/nightly-win64-arm-llvm/20251227-0452/vlc-4.0.0-dev-winarm64-36464b93.msi + InstallerSha256: 69A466EC54828DE5FE821BAAA2599CB3DAF5B5E74C38396AB05264111B6B1E8C + ProductCode: '{639AFD6C-9E57-4D3C-AAF5-7A1E96DFDB8B}' + AppsAndFeaturesEntries: + - ProductCode: '{639AFD6C-9E57-4D3C-AAF5-7A1E96DFDB8B}' + UpgradeCode: '{D2E0205B-0D3A-46E2-ADF7-0504FF48CF04}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/v/VideoLAN/VLC/Nightly/4.0.0.0-nightly20251227/VideoLAN.VLC.Nightly.locale.en-US.yaml b/manifests/v/VideoLAN/VLC/Nightly/4.0.0.0-nightly20251227/VideoLAN.VLC.Nightly.locale.en-US.yaml new file mode 100644 index 000000000000..b5e24c38308e --- /dev/null +++ b/manifests/v/VideoLAN/VLC/Nightly/4.0.0.0-nightly20251227/VideoLAN.VLC.Nightly.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: VideoLAN.VLC.Nightly +PackageVersion: 4.0.0.0-nightly20251227 +PackageLocale: en-US +Publisher: VideoLAN +PackageName: VLC media player +PackageUrl: https://artifacts.videolan.org/vlc/ +License: LGPL-2.1 +ShortDescription: VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia files, and various streaming protocols. +Tags: +- audioplayer +- mediaplayer +- networkfeedviewer +- videocdplayer +- videoplayer +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/v/VideoLAN/VLC/Nightly/4.0.0.0-nightly20251227/VideoLAN.VLC.Nightly.yaml b/manifests/v/VideoLAN/VLC/Nightly/4.0.0.0-nightly20251227/VideoLAN.VLC.Nightly.yaml new file mode 100644 index 000000000000..c57edc223086 --- /dev/null +++ b/manifests/v/VideoLAN/VLC/Nightly/4.0.0.0-nightly20251227/VideoLAN.VLC.Nightly.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: VideoLAN.VLC.Nightly +PackageVersion: 4.0.0.0-nightly20251227 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/w/WHTA/Tamara/2025.4.1.5/WHTA.Tamara.installer.yaml b/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.installer.yaml similarity index 76% rename from manifests/w/WHTA/Tamara/2025.4.1.5/WHTA.Tamara.installer.yaml rename to manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.installer.yaml index c4aeda55a4bf..d08e75731fad 100644 --- a/manifests/w/WHTA/Tamara/2025.4.1.5/WHTA.Tamara.installer.yaml +++ b/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json PackageIdentifier: WHTA.Tamara -PackageVersion: 2025.4.1.5 +PackageVersion: 2025.4.1.6 InstallerType: exe Scope: machine InstallModes: @@ -27,12 +27,12 @@ RequireExplicitUpgrade: true ElevationRequirement: elevatesSelf Installers: - Architecture: x64 - InstallerUrl: https://download.tamara.app/2025.4.1.5/installer.exe - InstallerSha256: F1EC86A27AB5657101A1E2F41479E6D9F6ECC454457BC6E7C988F04302AFB308 + 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-17 +ReleaseDate: 2025-12-26 diff --git a/manifests/w/WHTA/Tamara/2025.4.1.5/WHTA.Tamara.locale.en-US.yaml b/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.locale.en-US.yaml similarity index 83% rename from manifests/w/WHTA/Tamara/2025.4.1.5/WHTA.Tamara.locale.en-US.yaml rename to manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.locale.en-US.yaml index 8308ed536877..55cdf0613136 100644 --- a/manifests/w/WHTA/Tamara/2025.4.1.5/WHTA.Tamara.locale.en-US.yaml +++ b/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json PackageIdentifier: WHTA.Tamara -PackageVersion: 2025.4.1.5 +PackageVersion: 2025.4.1.6 PackageLocale: en-US Publisher: NVH Group AB PublisherUrl: https://www.nvh.group @@ -15,6 +15,6 @@ 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.5/releasenotes.pdf +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.5/WHTA.Tamara.yaml b/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.yaml similarity index 86% rename from manifests/w/WHTA/Tamara/2025.4.1.5/WHTA.Tamara.yaml rename to manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.yaml index abf700d7aa5a..ceeedfa07dfe 100644 --- a/manifests/w/WHTA/Tamara/2025.4.1.5/WHTA.Tamara.yaml +++ b/manifests/w/WHTA/Tamara/2025.4.1.6/WHTA.Tamara.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json PackageIdentifier: WHTA.Tamara -PackageVersion: 2025.4.1.5 +PackageVersion: 2025.4.1.6 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.9.0 diff --git a/manifests/w/w1hkj/fldigi/4.2.11/w1hkj.fldigi.installer.yaml b/manifests/w/w1hkj/fldigi/4.2.11/w1hkj.fldigi.installer.yaml new file mode 100644 index 000000000000..0a88283ddb33 --- /dev/null +++ b/manifests/w/w1hkj/fldigi/4.2.11/w1hkj.fldigi.installer.yaml @@ -0,0 +1,13 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: w1hkj.fldigi +PackageVersion: 4.2.11 +InstallerType: nullsoft +ReleaseDate: 2025-12-18 +Installers: +- Architecture: neutral + InstallerUrl: https://www.w1hkj.org/files/fldigi/fldigi-4.2.11_setup.exe + InstallerSha256: 42C95BA554F905718D606A3756316805DE274D43741A2E551B90630DF1D2DCD8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/w/w1hkj/fldigi/4.2.11/w1hkj.fldigi.locale.en-US.yaml b/manifests/w/w1hkj/fldigi/4.2.11/w1hkj.fldigi.locale.en-US.yaml new file mode 100644 index 000000000000..2da3eb118287 --- /dev/null +++ b/manifests/w/w1hkj/fldigi/4.2.11/w1hkj.fldigi.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: w1hkj.fldigi +PackageVersion: 4.2.11 +PackageLocale: en-US +Publisher: Fldigi developers +PublisherUrl: https://www.w1hkj.org/ +PublisherSupportUrl: https://sourceforge.net/projects/fldigi/support +PackageName: Fldigi +License: GNU General Public License V3 +Copyright: Fldigi developers +ShortDescription: Fldigi Amatuer Radio Digital Modes Modem +Documentations: +- DocumentLabel: Fldigi Users Manual + DocumentUrl: https://www.w1hkj.org/FldigiHelp/index.html +- DocumentLabel: fldigi Wiki + DocumentUrl: https://sourceforge.net/p/fldigi/wiki/Home/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/w/w1hkj/fldigi/4.2.11/w1hkj.fldigi.yaml b/manifests/w/w1hkj/fldigi/4.2.11/w1hkj.fldigi.yaml new file mode 100644 index 000000000000..6dfa61c6bccd --- /dev/null +++ b/manifests/w/w1hkj/fldigi/4.2.11/w1hkj.fldigi.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: w1hkj.fldigi +PackageVersion: 4.2.11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0