From cee04897dade34de7fe401f6d9b72b97fee2f9be Mon Sep 17 00:00:00 2001 From: bceverly Date: Sun, 19 Jul 2026 19:11:22 -0400 Subject: [PATCH 01/44] New version: sysmanage.sysmanage version 3.2.0.8 (#404629) --- .../sysmanage.sysmanage.installer.yaml | 31 +++ .../sysmanage.sysmanage.locale.en-US.yaml | 262 ++++++++++++++++++ .../3.2.0.8/sysmanage.sysmanage.yaml | 8 + 3 files changed, 301 insertions(+) create mode 100644 manifests/s/sysmanage/sysmanage/3.2.0.8/sysmanage.sysmanage.installer.yaml create mode 100644 manifests/s/sysmanage/sysmanage/3.2.0.8/sysmanage.sysmanage.locale.en-US.yaml create mode 100644 manifests/s/sysmanage/sysmanage/3.2.0.8/sysmanage.sysmanage.yaml diff --git a/manifests/s/sysmanage/sysmanage/3.2.0.8/sysmanage.sysmanage.installer.yaml b/manifests/s/sysmanage/sysmanage/3.2.0.8/sysmanage.sysmanage.installer.yaml new file mode 100644 index 0000000000000..8fa01a5b84d9c --- /dev/null +++ b/manifests/s/sysmanage/sysmanage/3.2.0.8/sysmanage.sysmanage.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: sysmanage.sysmanage +PackageVersion: 3.2.0.8 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2026-07-19 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bceverly/sysmanage/releases/download/v3.2.0.8/sysmanage-3.2.0.8-windows-x64.msi + InstallerSha256: B707C0FB08F35097B815F4F379D2DF49E04AC202ADE7F7B5C4D31E34722AE978 + ProductCode: '{B4737826-5070-419C-9751-8B909DA0092B}' + AppsAndFeaturesEntries: + - ProductCode: '{B4737826-5070-419C-9751-8B909DA0092B}' + UpgradeCode: '{F1E2D3C4-B5A6-4D7C-9E8F-1A2B3C4D5E6F}' +- Architecture: arm64 + InstallerUrl: https://github.com/bceverly/sysmanage/releases/download/v3.2.0.8/sysmanage-3.2.0.8-windows-arm64.msi + InstallerSha256: 896E1EAEC939818F3E1FAEBA407AA1CB54CE62CD523DF159CDE8FFADA1AF2A9E + ProductCode: '{DA292B1B-348A-4504-8C4C-60D451566695}' + AppsAndFeaturesEntries: + - ProductCode: '{DA292B1B-348A-4504-8C4C-60D451566695}' + UpgradeCode: '{F1E2D3C4-B5A6-4D7C-9E8F-1A2B3C4D5E6F}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/sysmanage/sysmanage/3.2.0.8/sysmanage.sysmanage.locale.en-US.yaml b/manifests/s/sysmanage/sysmanage/3.2.0.8/sysmanage.sysmanage.locale.en-US.yaml new file mode 100644 index 0000000000000..3a317a20fb681 --- /dev/null +++ b/manifests/s/sysmanage/sysmanage/3.2.0.8/sysmanage.sysmanage.locale.en-US.yaml @@ -0,0 +1,262 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: sysmanage.sysmanage +PackageVersion: 3.2.0.8 +PackageLocale: en-US +Publisher: SysManage +PublisherUrl: https://github.com/bceverly/sysmanage +PublisherSupportUrl: https://github.com/bceverly/sysmanage/issues +Author: Bryan Everly +PackageName: SysManage Server +PackageUrl: https://github.com/bceverly/sysmanage +License: AGPL-3.0-or-later +LicenseUrl: https://github.com/bceverly/sysmanage/blob/HEAD/LICENSE +Copyright: Copyright (c) Bryan Everly +ShortDescription: Open-source fleet management server for SysManage. +Description: SysManage is the server-side component of an open-source fleet management platform. It accepts inventory from SysManage Agent hosts, dispatches declarative deployment plans (package install, firewall config, antivirus deployment, VM lifecycle), surfaces health and compliance dashboards, and exposes a REST + WebSocket API for orchestration. +Moniker: sysmanage +ReleaseNotes: |- + SysManage Server v3.2.0.8 + Fixed Windows test regression + Multi-platform system management and monitoring server with web-based interface. + Installation Instructions + Ubuntu/Debian + # Download and install + wget https://github.com/bceverly/sysmanage/releases/download/v3.2.0.8/sysmanage_3.2.0.8-1_all.deb + sudo apt install ./sysmanage_3.2.0.8-1_all.deb + # Install nginx if not already installed + sudo apt install nginx + # Configure the server + sudo nano /etc/sysmanage.yaml + # Run database migrations + cd /opt/sysmanage + sudo -u sysmanage .venv/bin/python -m alembic upgrade head + # Start the service + sudo systemctl enable --now sysmanage + OpenBSD + # Download the port tarball + wget https://github.com/bceverly/sysmanage/releases/download/v3.2.0.8/sysmanage-openbsd-port-3.2.0.8.tar.gz + # Extract to OpenBSD ports tree + cd /usr/ports/mystuff + mkdir -p www + tar xzf ~/sysmanage-openbsd-port-3.2.0.8.tar.gz -C www/ + # Generate checksums + cd /usr/ports/mystuff/www/sysmanage + doas make makesum + # Build and install + doas make install + # Initialize PostgreSQL (if not already done) + doas su - _postgresql + initdb -D /var/postgresql/data -U postgres -A scram-sha-256 -E UTF8 -W + exit + doas rcctl enable postgresql + doas rcctl start postgresql + # Create database and user + doas su - _postgresql -c "createuser -P sysmanage" + doas su - _postgresql -c "createdb -O sysmanage sysmanage" + # Configure SysManage + doas vi /etc/sysmanage.yaml + # Update the database connection string + # Initialize database schema + cd /usr/local/libexec/sysmanage + doas python3 -m alembic upgrade head + # Enable and start the service + doas rcctl enable sysmanage + doas rcctl start sysmanage + FreeBSD + # Download and install + fetch https://github.com/bceverly/sysmanage/releases/download/v3.2.0.8/sysmanage-3.2.0.8.pkg + sudo pkg add ./sysmanage-3.2.0.8.pkg + # The package automatically installs nginx and PostgreSQL as dependencies + # Initialize PostgreSQL (if not already done) + sudo sysrc postgresql_enable=YES + sudo service postgresql initdb + sudo service postgresql start + # Create database and user + sudo su - postgres -c "createuser sysmanage" + sudo su - postgres -c "createdb sysmanage -O sysmanage" + sudo su - postgres -c "psql -c \"ALTER USER sysmanage WITH PASSWORD 'your-password';\"" + # Configure SysManage + sudo vi /usr/local/etc/sysmanage/config.yaml + # Update the database connection string + # Run database migrations + cd /usr/local/lib/sysmanage + sudo -u sysmanage .venv/bin/python -m alembic upgrade head + # Enable and start the services + sudo sysrc sysmanage_enable=YES + sudo sysrc nginx_enable=YES + sudo service sysmanage start + sudo service nginx start + macOS + # Download and install + curl -L -O https://github.com/bceverly/sysmanage/releases/download/v3.2.0.8/sysmanage-3.2.0.8-macos.pkg + sudo installer -pkg sysmanage-3.2.0.8-macos.pkg -target / + # The installer automatically creates the virtual environment and copies files + # Install PostgreSQL (if not already installed) + brew install postgresql@16 + brew services start postgresql@16 + # Create database + createdb sysmanage + # Configure SysManage + sudo cp /etc/sysmanage.yaml.example /etc/sysmanage.yaml + sudo vi /etc/sysmanage.yaml + # Update the database connection string + # Run database migrations + cd /usr/local/lib/sysmanage + .venv/bin/python -m alembic upgrade head + # Install and configure nginx (if not already installed) + brew install nginx + cp /usr/local/etc/sysmanage/sysmanage-nginx.conf /usr/local/etc/nginx/servers/ + brew services start nginx + # Load and start the service + sudo launchctl load /Library/LaunchDaemons/com.sysmanage.server.plist + NetBSD + # Download and verify + ftp https://github.com/bceverly/sysmanage/releases/download/v3.2.0.8/sysmanage-3.2.0.8-netbsd.tgz + ftp https://github.com/bceverly/sysmanage/releases/download/v3.2.0.8/sysmanage-3.2.0.8-netbsd.tgz.sha256 + sha256 -c sysmanage-3.2.0.8-netbsd.tgz.sha256 sysmanage-3.2.0.8-netbsd.tgz + # Install package + su - + pkg_add sysmanage-3.2.0.8-netbsd.tgz + # The package automatically installs PostgreSQL 16 and nginx as dependencies + # Initialize PostgreSQL (if not already done) + /etc/rc.d/pgsql initdb + echo "pgsql=YES" >> /etc/rc.conf + /etc/rc.d/pgsql start + # Create database and user + su - pgsql -c "createuser -P sysmanage" + su - pgsql -c "createdb -O sysmanage sysmanage" + # Configure SysManage + cp /usr/pkg/etc/sysmanage/sysmanage.yaml.example /usr/pkg/etc/sysmanage.yaml + vi /usr/pkg/etc/sysmanage.yaml + # Update the database connection string + # Initialize database schema + cd /usr/pkg/lib/sysmanage + python3.12 -m venv .venv + .venv/bin/pip install -r requirements-prod.txt + .venv/bin/python -m alembic upgrade head + # Configure nginx (optional) + cp /usr/pkg/share/examples/sysmanage/sysmanage-nginx.conf /usr/pkg/etc/nginx/sites-enabled/ + echo "nginx=YES" >> /etc/rc.conf + # Enable and start the services + cp /usr/pkg/share/examples/rc.d/sysmanage /etc/rc.d/ + chmod +x /etc/rc.d/sysmanage + echo "sysmanage=YES" >> /etc/rc.conf + /etc/rc.d/sysmanage start + /etc/rc.d/nginx start + CentOS/RHEL/Fedora/Rocky Linux/AlmaLinux + # Download and install + wget https://github.com/bceverly/sysmanage/releases/download/v3.2.0.8/sysmanage-3.2.0.8-1.*.rpm + sudo dnf install ./sysmanage-3.2.0.8-1.*.rpm + # The package automatically installs nginx and PostgreSQL as dependencies + # Initialize PostgreSQL (if not already done) + sudo postgresql-setup --initdb + sudo systemctl enable --now postgresql + # Create database and user + sudo -u postgres createuser sysmanage + sudo -u postgres createdb sysmanage -O sysmanage + sudo -u postgres psql -c "ALTER USER sysmanage WITH PASSWORD 'your-password';" + # Configure SysManage + sudo vi /etc/sysmanage.yaml + # Update the database connection string + # Initialize database schema + cd /opt/sysmanage + sudo -u sysmanage .venv/bin/python -m alembic upgrade head + # Start the services + sudo systemctl enable --now sysmanage + sudo systemctl enable --now nginx + OpenSUSE/SLES + # Download and install + wget https://github.com/bceverly/sysmanage/releases/download/v3.2.0.8/sysmanage-3.2.0.8-1.noarch.rpm + sudo zypper install ./sysmanage-3.2.0.8-1.noarch.rpm + # The package automatically installs nginx and PostgreSQL as dependencies + # Initialize and start PostgreSQL (if not already done) + sudo systemctl enable --now postgresql + # Create database and user + sudo -u postgres createuser sysmanage + sudo -u postgres createdb sysmanage -O sysmanage + sudo -u postgres psql -c "ALTER USER sysmanage WITH PASSWORD 'your-password';" + # Configure SysManage + sudo vi /etc/sysmanage.yaml + # Update the database connection string + # Initialize database schema + cd /opt/sysmanage + sudo -u sysmanage .venv/bin/python -m alembic upgrade head + # Start the services + sudo systemctl enable --now sysmanage + sudo systemctl enable --now nginx + Alpine Linux (3.19, 3.20, 3.21) + # Download the APK package for your Alpine version (e.g., alpine319, alpine320, alpine321) + wget https://github.com/bceverly/sysmanage/releases/download/v3.2.0.8/sysmanage-3.2.0.8-alpine320.apk + # Allow installation of unsigned packages (required for GitHub releases) + apk add --allow-untrusted ./sysmanage-3.2.0.8-alpine320.apk + # The package installs to /usr/libexec/sysmanage with pip packages in a subdirectory + # Dependencies: python3, nginx, postgresql are automatically installed + # Initialize and start PostgreSQL + rc-update add postgresql default + rc-service postgresql start + # Create database and user + su - postgres -c "createuser -P sysmanage" + su - postgres -c "createdb -O sysmanage sysmanage" + # Configure SysManage + cp /etc/sysmanage/sysmanage.yaml.example /etc/sysmanage/sysmanage.yaml + vi /etc/sysmanage/sysmanage.yaml + # Update the database connection string + # Initialize database schema + cd /usr/libexec/sysmanage + PYTHONPATH=/usr/libexec/sysmanage/pip-packages python3 -m alembic upgrade head + # Enable and start the services + rc-update add sysmanage default + rc-update add nginx default + rc-service sysmanage start + rc-service nginx start + Windows (x64 and ARM64) + # Download the MSI installer (choose your architecture) + # For x64: + Invoke-WebRequest -Uri "https://github.com/bceverly/sysmanage/releases/download/v3.2.0.8/sysmanage-3.2.0.8-windows-x64.msi" -OutFile "sysmanage-3.2.0.8-windows-x64.msi" + # For ARM64: + Invoke-WebRequest -Uri "https://github.com/bceverly/sysmanage/releases/download/v3.2.0.8/sysmanage-3.2.0.8-windows-arm64.msi" -OutFile "sysmanage-3.2.0.8-windows-arm64.msi" + # Install the MSI package (run as Administrator) + # The installer will: + # - Check for and install Python 3.12 if needed + # - Install Visual C++ Redistributable if needed + # - Extract application files to C:\Program Files\SysManage Server + # - Create Python virtual environment and install dependencies + # - Create Windows Service "SysManageServer" + # - Start the service automatically + msiexec /i sysmanage-3.2.0.8-windows-x64.msi + # Configure SysManage (installer creates example config) + notepad "C:\ProgramData\SysManage\sysmanage.yaml" + # Update database connection string and other settings + # The service runs automatically. To manage it: + # Stop the service: + Stop-Service SysManageServer + # Start the service: + Start-Service SysManageServer + # Check service status: + Get-Service SysManageServer + # View service logs: + Get-Content "C:\ProgramData\SysManage\logs\sysmanage-service.log" -Tail 50 + # To uninstall: + # Use "Add or Remove Programs" or run: + msiexec /x sysmanage-3.2.0.8-windows-x64.msi + Note for Windows: The installer requires administrator privileges. Python 3.12 and Visual C++ Redistributable will be automatically installed if not present. The service runs on port 8080 by default (configurable in sysmanage.yaml). + Access the Web Interface + After configuration and starting the service: + - Frontend: http://localhost:3000 + - Backend API: http://localhost:8080 + Checksum Verification + All packages include SHA256 checksums. Download both files and verify: + Linux (Ubuntu/Debian): + sha256sum -c sysmanage_3.2.0.8-1_all.deb.sha256 + OpenBSD: + sha256 -C sysmanage-openbsd-port-3.2.0.8.tar.gz.sha256 sysmanage-openbsd-port-3.2.0.8.tar.gz + FreeBSD: + sha256 -c sysmanage-3.2.0.8.pkg.sha256 sysmanage-3.2.0.8.pkg + macOS: + shasum -a 256 -c sysmanage-3.2.0.8-macos.pkg.sha256 + NetBSD: +ReleaseNotesUrl: https://github.com/bceverly/sysmanage/releases/tag/v3.2.0.8 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/sysmanage/sysmanage/3.2.0.8/sysmanage.sysmanage.yaml b/manifests/s/sysmanage/sysmanage/3.2.0.8/sysmanage.sysmanage.yaml new file mode 100644 index 0000000000000..a017a39283029 --- /dev/null +++ b/manifests/s/sysmanage/sysmanage/3.2.0.8/sysmanage.sysmanage.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: sysmanage.sysmanage +PackageVersion: 3.2.0.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 04a60922161ca8e2c8a990f473c7c689bd691cfc Mon Sep 17 00:00:00 2001 From: Psychotoxical <171614930+Psychotoxical@users.noreply.github.com> Date: Mon, 20 Jul 2026 01:11:34 +0200 Subject: [PATCH 02/44] New version: Psychotoxical.Psysonic version 1.50.0 (#404634) --- .../Psychotoxical.Psysonic.installer.yaml | 26 +++++ .../Psychotoxical.Psysonic.locale.en-US.yaml | 107 ++++++++++++++++++ .../1.50.0/Psychotoxical.Psysonic.yaml | 8 ++ 3 files changed, 141 insertions(+) create mode 100644 manifests/p/Psychotoxical/Psysonic/1.50.0/Psychotoxical.Psysonic.installer.yaml create mode 100644 manifests/p/Psychotoxical/Psysonic/1.50.0/Psychotoxical.Psysonic.locale.en-US.yaml create mode 100644 manifests/p/Psychotoxical/Psysonic/1.50.0/Psychotoxical.Psysonic.yaml diff --git a/manifests/p/Psychotoxical/Psysonic/1.50.0/Psychotoxical.Psysonic.installer.yaml b/manifests/p/Psychotoxical/Psysonic/1.50.0/Psychotoxical.Psysonic.installer.yaml new file mode 100644 index 0000000000000..1f8b3b4b9ac93 --- /dev/null +++ b/manifests/p/Psychotoxical/Psysonic/1.50.0/Psychotoxical.Psysonic.installer.yaml @@ -0,0 +1,26 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Psychotoxical.Psysonic +PackageVersion: 1.50.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- silent +- silentWithProgress +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- + SilentWithProgress: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- +ProductCode: '{8F4B2C1A-6D7E-4A93-B0F5-1E2C9A7D3B64}_is1' +ReleaseDate: 2026-07-19 +AppsAndFeaturesEntries: +- ProductCode: '{8F4B2C1A-6D7E-4A93-B0F5-1E2C9A7D3B64}_is1' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Psysonic' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Psychotoxical/psysonic/releases/download/app-v1.50.0/Psysonic_1.50.0_x64-setup.exe + InstallerSha256: CD1FF4CC7184CC966EFD9E6E4ED33AE5E6ACEDC9E6FBCB484C1C9B054A450CAE +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/Psychotoxical/Psysonic/1.50.0/Psychotoxical.Psysonic.locale.en-US.yaml b/manifests/p/Psychotoxical/Psysonic/1.50.0/Psychotoxical.Psysonic.locale.en-US.yaml new file mode 100644 index 0000000000000..b418d56329655 --- /dev/null +++ b/manifests/p/Psychotoxical/Psysonic/1.50.0/Psychotoxical.Psysonic.locale.en-US.yaml @@ -0,0 +1,107 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Psychotoxical.Psysonic +PackageVersion: 1.50.0 +PackageLocale: en-US +Publisher: Psysonic +PublisherUrl: https://github.com/Psychotoxical +PublisherSupportUrl: https://github.com/Psychotoxical/psysonic/issues +PackageName: Psysonic +PackageUrl: https://www.psysonic.de/ +License: GPL-3.0 +LicenseUrl: https://github.com/Psychotoxical/psysonic/blob/HEAD/LICENSE +ShortDescription: Gorgeous, modern desktop client for Navidrome and Subsonic music servers +Description: A beautiful desktop music player built for Subsonic API compatible servers (Navidrome, Gonic, etc.). Built with Tauri v2 and React, featuring a native Rust/rodio audio engine, community theme store, Last.fm integration, synchronized lyrics, EQ, crossfade, gapless playback, and more. +Tags: +- audio +- music +- navidrome +- player +- subsonic +ReleaseNotes: |- + Added + Square corners — sharp-edged cards and covers + By @Psychotoxical, PR #1215 + - New Square Corners toggle under Settings → Appearance → Visual Options → Display overrides the active theme to render cards and cover art with square, non-rounded corners. Covers album, playlist, artist and song cards, detail-page cover art, the Now Playing / Radio and fullscreen views, the cover lightbox, the queue cover, and the mini player. Off by default; buttons, inputs and dialogs keep the theme's corners. + Discord community banner + By @ImAsra, PR #1222 + - A dismissible banner inviting you to join the Psysonic community on Discord appears after 20 hours of accumulated app use. Join opens the invite; dismiss it for the session, or choose Never show again to hide it permanently. The icon renders at a consistent size on every platform, including Windows. + Bulgarian translation + By @akirichev, PR #1228 + - Full Bulgarian (Български) UI translation — selectable from the language picker on the Settings and Login screens. + Artists browse — album vs track credit mode + By @cucadmuh, PR #1232 + - Toggle Album artists vs Track artists on the Artists page — album mode lists indexed album artists; track mode includes performers from the local artist index (featured/guest credits). Star filter works in both modes; the choice persists across app restarts like Show artist images. + - Letter bucket filter (A–Z, #, OTHER) runs in local SQL instead of scanning catalog chunks client-side, so late-alphabet picks load promptly on large libraries. + - Artist name search no longer depends on query letter case for Cyrillic (and other non-ASCII) names when the local library index is enabled. + CLI — relative volume and quieter scripting output + By @cucadmuh, PR #1238 + - psysonic --player volume +5 / volume -10 adjust the current level by that many percent; volume 80 still sets an absolute level (use -q before --player when the delta is negative so it is not parsed as a flag). + - CLI invocations no longer print WebKit/NVIDIA workaround notes on stderr; on Linux, remote --player forwarding runs before WebKit startup so helper processes exit with less noise. + Theme Store — per-theme changelogs and pinned updates + By @Psychotoxical, PR #1240 + - Each theme card now has an expandable What's new with per-version release notes, so you can see what a theme update changed — including non-visual fixes. Provided by theme authors; themes without notes just don't show the section. + - Installed themes with an available update now appear at the top of the store list instead of wherever the sort placed them, so you don't have to hunt for them. + Multi-library filter — browse and search across selected libraries + By @cucadmuh, PR #1241 + - The sidebar library picker now supports multi-select with priority ordering: browse, search, genre and album/artist detail views aggregate across the chosen libraries and de-duplicate shared items by priority. Built for large libraries — scoped SQL uses the hot library_id column with covering indexes and FTS-first matching. + - Identity matching that powers cross-library de-duplication now normalises names per shipped locale (folds German ß, Norwegian æ, French œ, Romanian ș/ț, and Cyrillic ё/й); CJK titles are matched as-is. + - The Genres page and album browse genre filter list the full catalog on large libraries when All libraries is selected. + Theme contributors credited in Settings + By @Psychotoxical, PR #1248 + - Settings → System → Contributors now lists community theme authors in a Themes sub-section alongside the App contributors, pulled from the theme store so it stays current as new themes are published. + - The theme card What's new now shows just the latest version's notes instead of the full version history. + - Theme author names refresh quietly from the store in the background instead of staying stale for up to 12 hours. + Fullscreen player — Minimal and Immersive styles + By @Psychotoxical, PR #1249 + - Settings → Appearance → Fullscreen player style lets you choose Minimal (the current view) or Immersive — the earlier fullscreen player, with the artist photo/backdrop, a cover-derived accent colour, and rail or Apple-style scrolling lyrics. + - In Immersive, Show artist photo and Photo dimming are configurable; Apple-style lyrics show the artist image as a dimmed full-screen backdrop. + Italian translation + By @daquino94, PR #1250 + - Full Italian (Italiano) UI translation — selectable from the language picker on the Settings and Login screens. + Fullscreen player — Prism style + By @Psychotoxical, PR #1251 + - A third Fullscreen player style, Prism — a full-bleed artist backdrop with a floating glass lyrics panel on the right and a single glass control bar at the bottom (transport, a centred now-playing pill with an integrated progress line, and utilities). The cover-derived accent colour drives the progress fill and the active lyric line, and upcoming lyric lines fade out with a progressive blur. + Lyrics — word-by-word highlighting straight from your server + By @Psychotoxical, PR #1265 + - The Server lyrics source now highlights lyrics word by word, so karaoke sync no longer depends on the third-party YouLyPlus backend. Requires Navidrome 0.63 or newer and lyrics that carry word timing (TTML or Enhanced LRC); anything else keeps highlighting line by line. + - Settings → Lyrics → Lyrics Sources spells out those requirements, and the block now follows the standard settings sub-card layout. + - Embedded Enhanced LRC no longer prints raw word timing codes (<00:12.34>) in the lyric text — those codes drive word-by-word highlighting instead. + - FLAC, Ogg Vorbis, Opus and Speex files that store synced lyrics in the SYNCEDLYRICS tag show embedded lyrics again, with that tag taking priority over the plain LYRICS tag. + Start minimized to tray + By @cucadmuh, PR #1271 + - New Start Minimized to Tray toggle under Settings → System → Behavior. When enabled, the next cold start keeps the main window hidden and Psysonic runs from the system tray until you show it from the tray icon. + - Requires Show Tray Icon (turning this on enables the tray automatically; hiding the tray clears the setting). The choice applies on the next launch only — toggling it in Settings does not hide the window immediately. + - Opening the main window from the tray after a cold start renders the sidebar and main content immediately — including on Linux tiling WMs such as Hyprland — instead of leaving the sidebar or Mainstage invisible or blank until a restart. + Navidrome public share links — open and play without logging in + By @cucadmuh, PR #1275 + - Paste or search a Navidrome public share URL (/share/{id}) to preview the shared track list in a modal, then play the full queue with no server account — direct stream and cover URLs are resolved anonymously from the share page. + - Share playback uses a dedicated scope so an idle server play-queue pull cannot replace the share queue while you are also logged into Navidrome. Share sessions are not restored after an app restart — the server play queue applies as usual. + - While a share queue is active, Save Playlist is hidden in the queue toolbar (share tracks cannot be saved to the server); Load Playlist stays available. The queue Share button copies the original Navidrome /share/{id} page URL. + Track lists — optional album cover thumbnails + By @cucadmuh, PR #1280 + - Browse and queue track rows can show the track's album cover (per-disc art when the album has distinct disc covers). Covers load through the standard cover cache pipeline — library resolve, viewport ensure, Rust resize to disk tiers — not a separate warm path. + - Settings → Appearance adds separate toggles for queue vs browse tracklists. Favorites, playlist, and album-detail track grids gain a flex-resize handle on the title column when covers are shown. + - Album detail pages skip per-row cover thumbs when the album art is already shown above the list — no duplicate image on every line. + Discord — server cover art source, without the credential leak + By @Psychotoxical, PR #1299 + - Settings → Integrations → Discord → Cover art source gets a Server option, alongside None and Apple Music. It resolves artwork through the standard Subsonic getAlbumInfo2 endpoint's public image link — never an authenticated cover URL that could expose your login credentials (reported by lavioso on Discord). Needs a publicly reachable server; anyone viewing your Discord profile can see that server's public address, but nothing else. + Playlist cards — play and queue from the right-click menu + By @Psychotoxical, PR #1307 + - Right-clicking a playlist card now offers Play next and Add to queue alongside Play now, matching the album card. All three honour offline mode and the active multi-library filter. + Playlists browse — scoped header search + By @cucadmuh, PR #1308 + - The header search field on the Playlists page now filters the list by playlist name (same scoped badge pattern as Artists / Albums), including in folder view. + Artist page — add the whole discography to the queue + By @Psychotoxical, PR #1321 + - A new queue button on the artist page appends the artist's entire discography to the current queue in one click, next to Play all and Shuffle — matching what album pages already offer. + Changed + Frontend restructure — feature-folder architecture and hardening + By @Psychotoxical, with additional architecture by @cucadmuh, PR #1225 + - Reorganised the frontend into a feature-folder architecture with a CI-enforced layering guard, added unit + behavior-scenario + boot-smoke test coverage, and introduced a compile-time frontend/backend IPC contract via tauri-specta. Internal only — no change to how the app looks or behaves. + Typed-IPC contract — completed the tauri-specta cutover + By @Psychotoxical, with additional architecture by @cucadmuh, PR #1230 +ReleaseNotesUrl: https://github.com/Psychotoxical/psysonic/releases/tag/app-v1.50.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Psychotoxical/Psysonic/1.50.0/Psychotoxical.Psysonic.yaml b/manifests/p/Psychotoxical/Psysonic/1.50.0/Psychotoxical.Psysonic.yaml new file mode 100644 index 0000000000000..3b942ab455b4c --- /dev/null +++ b/manifests/p/Psychotoxical/Psysonic/1.50.0/Psychotoxical.Psysonic.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Psychotoxical.Psysonic +PackageVersion: 1.50.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From e16d9d80085074c2de2159a5d81296e7e8a724fb Mon Sep 17 00:00:00 2001 From: UnownBot Date: Sun, 19 Jul 2026 19:39:50 -0400 Subject: [PATCH 03/44] New version: Microsoft.SafetyScanner version 1.455.227.0 (#404635) --- .../Microsoft.SafetyScanner.installer.yaml | 18 +++++++++++++++ .../Microsoft.SafetyScanner.locale.en-US.yaml | 23 +++++++++++++++++++ .../1.455.227.0/Microsoft.SafetyScanner.yaml | 8 +++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/m/Microsoft/SafetyScanner/1.455.227.0/Microsoft.SafetyScanner.installer.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.455.227.0/Microsoft.SafetyScanner.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.455.227.0/Microsoft.SafetyScanner.yaml diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.227.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.227.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 0000000000000..e88a5f3ede843 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.227.0/Microsoft.SafetyScanner.installer.yaml @@ -0,0 +1,18 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.227.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-07-19 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.227.0&arch=x86 + InstallerSha256: 1280C402220DC3AB13CB411E5189E2FCAB6E03022ADD96B0CAE9B10B9A3F6FF2 +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.227.0&arch=amd64 + InstallerSha256: 19AAEB0FAEAEA2D6F7B29024AC877AF38BF8386A4772F3B43B9973E406DD5EEB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.227.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.227.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 0000000000000..f0c391b087393 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.227.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.227.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft Safety Scanner +PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download +License: Proprietary +Copyright: © Microsoft Corporation. All rights reserved. +ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. +Description: |- + A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. + + The tool uses the same security intelligence update definitions as (among others) Microsoft Defender Antivirus. Safety Scanner does however not have an internal definition update checker, but does get app updates every 3-4 hours. Thus, the Winget package may lag some days behind Windows Update + Microsoft Defender Antivirus. +Tags: +- microsoft-defender-antivirus +- microsoft-safety-scanner +- msert +- windows-security +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.227.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.227.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 0000000000000..b0ec9f2c1718b --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.227.0/Microsoft.SafetyScanner.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.227.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 2837c7b17e61ee37a438154e67685f03225cda9f Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Mon, 20 Jul 2026 01:40:08 +0200 Subject: [PATCH 04/44] Remove version: vim.vim.nightly version 9.1.1665 (#404645) --- .../9.1.1665/vim.vim.nightly.installer.yaml | 36 ---------- .../vim.vim.nightly.locale.en-US.yaml | 67 ------------------- .../vim/nightly/9.1.1665/vim.vim.nightly.yaml | 8 --- 3 files changed, 111 deletions(-) delete mode 100644 manifests/v/vim/vim/nightly/9.1.1665/vim.vim.nightly.installer.yaml delete mode 100644 manifests/v/vim/vim/nightly/9.1.1665/vim.vim.nightly.locale.en-US.yaml delete mode 100644 manifests/v/vim/vim/nightly/9.1.1665/vim.vim.nightly.yaml diff --git a/manifests/v/vim/vim/nightly/9.1.1665/vim.vim.nightly.installer.yaml b/manifests/v/vim/vim/nightly/9.1.1665/vim.vim.nightly.installer.yaml deleted file mode 100644 index d09c59a61f48d..0000000000000 --- a/manifests/v/vim/vim/nightly/9.1.1665/vim.vim.nightly.installer.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with WinGet Releaser using komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: vim.vim.nightly -PackageVersion: 9.1.1665 -InstallerLocale: en-US -Platform: -- Windows.Desktop -InstallerType: nullsoft -Scope: machine -InstallModes: -- interactive -- silent -UpgradeBehavior: install -Commands: -- diff -- gvim -- tee -- vim -- xxd -ProductCode: Vim 9.1 -ReleaseDate: 2025-08-22 -ElevationRequirement: elevationRequired -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.1.1665/gvim_9.1.1665_x86.exe - InstallerSha256: 6339857627B2495A0A78E2075A6601D11F7094AACD1F90C5E88460A477099EF7 - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\Vim' -- Architecture: x64 - InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.1.1665/gvim_9.1.1665_x64.exe - InstallerSha256: 837C3058CD365EAA1A47055D93A2D05328837E58120D62F508120ADD37B45BF1 - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Vim' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/v/vim/vim/nightly/9.1.1665/vim.vim.nightly.locale.en-US.yaml b/manifests/v/vim/vim/nightly/9.1.1665/vim.vim.nightly.locale.en-US.yaml deleted file mode 100644 index b88cf2239fe2c..0000000000000 --- a/manifests/v/vim/vim/nightly/9.1.1665/vim.vim.nightly.locale.en-US.yaml +++ /dev/null @@ -1,67 +0,0 @@ -# Created with WinGet Releaser using komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: vim.vim.nightly -PackageVersion: 9.1.1665 -PackageLocale: en-US -Publisher: Bram Moolenaar et al. -PublisherUrl: https://github.com/vim/vim-win32-installer -PublisherSupportUrl: https://github.com/vim/vim-win32-installer/issues -Author: Bram Moolenaar et al. -PackageName: Vim -PackageUrl: https://www.vim.org/ -License: Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] - Charityware / GNU GPL compatible -LicenseUrl: https://github.com/vim/vim-win32-installer#license--copyright -Copyright: Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] -CopyrightUrl: https://github.com/vim/vim-win32-installer#license--copyright -ShortDescription: Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient -Moniker: vim -Tags: -- code-editor -- g-vim -- gvim -- text-editing -- text-editor -- tool -- utility -- vi -ReleaseNotes: |- - v9.1.1665 - Nightly Vim Windows build snapshots (more information). - If you do not know what to use, use the 32bit installer (use the signed one, if available). - Signed releases will occasionally be provided on a best effort approach. - Changes: - - 9.1.1665: Outdated comment in eval.c - - runtime(doc): Fix missing heading in remote.txt - - 9.1.1664: configure: can use any autoconf - - runtime(doc): Tweak documentation style - Files: - 🔓 Unsigned Files: - - gvim_9.1.1665_x86.exe - 32-bit installer (If you don't know what to use, use this one) - - gvim_9.1.1665_x64.exe - 64-bit installer - - gvim_9.1.1665_arm64.exe - ARM 64-bit installer - - gvim_9.1.1665_x86.zip - 32-bit zip archive - - gvim_9.1.1665_x64.zip - 64-bit zip archive - - gvim_9.1.1665_arm64.zip - ARM 64-bit zip archive - - gvim_9.1.1665_x86_pdb.zip - pdb files for debugging the corresponding 32-bit executable - - gvim_9.1.1665_x64_pdb.zip - pdb files for debugging the corresponding 64-bit executable - Interface Information - - Strawberry Perl 5.32 - - LuaBinaries 5.4 - - Python 2.7 - - Python3 3.8 or later - - Racket 8.7 (BC) - - RubyInstaller 3.2 - - libsodium 1.0.19 - See the README for detail. -ReleaseNotesUrl: https://github.com/vim/vim-win32-installer/releases/tag/v9.1.1665 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/v/vim/vim/nightly/9.1.1665/vim.vim.nightly.yaml b/manifests/v/vim/vim/nightly/9.1.1665/vim.vim.nightly.yaml deleted file mode 100644 index fb8e232acdc0b..0000000000000 --- a/manifests/v/vim/vim/nightly/9.1.1665/vim.vim.nightly.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: vim.vim.nightly -PackageVersion: 9.1.1665 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 539b3d964bb9a0fc212811f3e41b152f3cfac39d Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Sun, 19 Jul 2026 16:40:21 -0700 Subject: [PATCH 05/44] Automatic deletion of FocusriteAudioEngineeringLtd.FocusriteControl2 1.1014.0.0 (#404646) --- ...neeringLtd.FocusriteControl2.installer.yaml | 18 ------------------ ...ringLtd.FocusriteControl2.locale.en-US.yaml | 13 ------------- ...eAudioEngineeringLtd.FocusriteControl2.yaml | 8 -------- 3 files changed, 39 deletions(-) delete mode 100644 manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.1014.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.installer.yaml delete mode 100644 manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.1014.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.locale.en-US.yaml delete mode 100644 manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.1014.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.yaml diff --git a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.1014.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.installer.yaml b/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.1014.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.installer.yaml deleted file mode 100644 index 34aa7467605c6..0000000000000 --- a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.1014.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically updated by the winget bot at 2026/May/28 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: FocusriteAudioEngineeringLtd.FocusriteControl2 -PackageVersion: 1.1014.0.0 -InstallerType: inno -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: /silent -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x64 - InstallerUrl: https://releases.focusrite.com/com.focusrite.focusrite-control/latest/Focusrite-Control-2.exe - InstallerSha256: 900ABEB2B373CD45FED39D874BDD18EF5884A5AE09177BDC78BEFE08B02FE26D -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.1014.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.locale.en-US.yaml b/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.1014.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.locale.en-US.yaml deleted file mode 100644 index 551fbcc380cbe..0000000000000 --- a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.1014.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.locale.en-US.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically updated by the winget bot at 2026/May/28 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: FocusriteAudioEngineeringLtd.FocusriteControl2 -PackageVersion: 1.1014.0.0 -PackageLocale: en-US -Publisher: Focusrite Audio Engineering Ltd. -PackageName: Focusrite Control 2 -License: MIT License -Copyright: Copyright © 2021-2023 Focusrite Audio Engineering Ltd. -ShortDescription: Software-control application required to unlock the full potential of your Focusrite Scarlett interface. The software delivers firmware upgrades and mixing controls. -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.1014.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.yaml b/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.1014.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.yaml deleted file mode 100644 index 6dc5f45db26d6..0000000000000 --- a/manifests/f/FocusriteAudioEngineeringLtd/FocusriteControl2/1.1014.0.0/FocusriteAudioEngineeringLtd.FocusriteControl2.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2026/May/28 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: FocusriteAudioEngineeringLtd.FocusriteControl2 -PackageVersion: 1.1014.0.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From bdae3a629f2bed269a7a958d14e98a6495eb1d84 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Mon, 20 Jul 2026 09:45:16 +0800 Subject: [PATCH 06/44] New version: CognitionAI.DevinCLI version 3000.2.17 (#404638) --- .../CognitionAI.DevinCLI.installer.yaml | 21 +++++++++++++ .../CognitionAI.DevinCLI.locale.en-US.yaml | 31 +++++++++++++++++++ .../CognitionAI.DevinCLI.locale.zh-CN.yaml | 21 +++++++++++++ .../3000.2.17/CognitionAI.DevinCLI.yaml | 8 +++++ 4 files changed, 81 insertions(+) create mode 100644 manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.installer.yaml create mode 100644 manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.locale.en-US.yaml create mode 100644 manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.locale.zh-CN.yaml create mode 100644 manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.yaml diff --git a/manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.installer.yaml b/manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.installer.yaml new file mode 100644 index 0000000000000..d7d9c3a38da1d --- /dev/null +++ b/manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: CognitionAI.DevinCLI +PackageVersion: 3000.2.17 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: bin\devin.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Git.Git +Installers: +- Architecture: x64 + InstallerUrl: https://static.devin.ai/cli/3000.2.17/devin-3000.2.17-x86_64-pc-windows.zip + InstallerSha256: DAB924834D7254F98CC85410BC800CF23774714E90779E43A9B13C6FE5F97D01 +- Architecture: arm64 + InstallerUrl: https://static.devin.ai/cli/3000.2.17/devin-3000.2.17-aarch64-pc-windows.zip + InstallerSha256: 8D6A2A940AA6E98E50ACD3AD59509A00DFA402FE23BA0BDDAE3F8AD20231F754 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.locale.en-US.yaml b/manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..7346bc9394819 --- /dev/null +++ b/manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: CognitionAI.DevinCLI +PackageVersion: 3000.2.17 +PackageLocale: en-US +Publisher: Cognition AI, Inc. +PublisherUrl: https://devin.ai/ +PrivacyUrl: https://cognition.ai/privacy-policy +Author: Cognition AI, Inc. +PackageName: Devin CLI +PackageUrl: https://cli.devin.ai/docs +License: Proprietary +LicenseUrl: https://cognition.ai/terms-of-service +ShortDescription: A fast and minimal agent that lives both in your terminal and in the cloud. +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +ReleaseNotesUrl: https://cli.devin.ai/docs/changelog/stable +PurchaseUrl: https://devin.ai/pricing +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://cli.devin.ai/docs +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.locale.zh-CN.yaml b/manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..52b39bf7c8415 --- /dev/null +++ b/manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.locale.zh-CN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: CognitionAI.DevinCLI +PackageVersion: 3000.2.17 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 一款快速且极简的智能体,既可在终端本地运行,也可在云端部署。 +Tags: +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://cli.devin.ai/docs +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.yaml b/manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.yaml new file mode 100644 index 0000000000000..a4f15bb3dae08 --- /dev/null +++ b/manifests/c/CognitionAI/DevinCLI/3000.2.17/CognitionAI.DevinCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: CognitionAI.DevinCLI +PackageVersion: 3000.2.17 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From fdf349d1a71d898fef5851f0c51613bdfdd4532c Mon Sep 17 00:00:00 2001 From: Pranav H Date: Mon, 20 Jul 2026 07:15:27 +0530 Subject: [PATCH 07/44] New version: Nexus.OmniGet version 1.0.6 (#404547) --- .../1.0.6/Nexus.OmniGet.installer.yaml | 20 +++++++++++++++ .../1.0.6/Nexus.OmniGet.locale.en-US.yaml | 25 +++++++++++++++++++ .../n/Nexus/OmniGet/1.0.6/Nexus.OmniGet.yaml | 8 ++++++ 3 files changed, 53 insertions(+) create mode 100644 manifests/n/Nexus/OmniGet/1.0.6/Nexus.OmniGet.installer.yaml create mode 100644 manifests/n/Nexus/OmniGet/1.0.6/Nexus.OmniGet.locale.en-US.yaml create mode 100644 manifests/n/Nexus/OmniGet/1.0.6/Nexus.OmniGet.yaml diff --git a/manifests/n/Nexus/OmniGet/1.0.6/Nexus.OmniGet.installer.yaml b/manifests/n/Nexus/OmniGet/1.0.6/Nexus.OmniGet.installer.yaml new file mode 100644 index 0000000000000..20302a18453f2 --- /dev/null +++ b/manifests/n/Nexus/OmniGet/1.0.6/Nexus.OmniGet.installer.yaml @@ -0,0 +1,20 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Nexus.OmniGet +PackageVersion: 1.0.6 +InstallerLocale: en-US +InstallerType: exe +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +ReleaseDate: 2026-07-19 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Pranav-Nexus/omniget/releases/download/v1.0.6/OmniGetSetup-x86.exe + InstallerSha256: EA1180B2FF53F3E6FE5BDF989A8FF57871C4E6D11AD75A5116EB72E828FFEEA6 +- Architecture: x64 + InstallerUrl: https://github.com/Pranav-Nexus/omniget/releases/download/v1.0.6/OmniGetSetup.exe + InstallerSha256: 5058550059933808FDDC0A73DB6C88A84E3C147DCF202B19B5ED83E1E9F2241E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/Nexus/OmniGet/1.0.6/Nexus.OmniGet.locale.en-US.yaml b/manifests/n/Nexus/OmniGet/1.0.6/Nexus.OmniGet.locale.en-US.yaml new file mode 100644 index 0000000000000..d47e6c0589c2c --- /dev/null +++ b/manifests/n/Nexus/OmniGet/1.0.6/Nexus.OmniGet.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Nexus.OmniGet +PackageVersion: 1.0.6 +PackageLocale: en-US +Publisher: Pranav-Nexus +PublisherUrl: https://github.com/Pranav-Nexus +PublisherSupportUrl: https://github.com/Pranav-Nexus/omniget/issues +PackageName: OmniGet +PackageUrl: https://github.com/Pranav-Nexus/omniget +License: MIT +LicenseUrl: https://github.com/Pranav-Nexus/omniget/blob/HEAD/LICENSE +ShortDescription: A unified command-line wrapper for Windows package managers WinGet and Scoop. +Description: OmniGet is a unified command-line wrapper that lets you install, update, search, and manage packages across WinGet and Scoop with a single consistent interface. It automatically detects which package managers are installed and routes commands accordingly, so you don't have to remember different syntax for each tool. +Tags: +- package-manager +- powershell +- scoop +- winget +- wrapper +ReleaseNotes: 'Full Changelog: v1.0.5...v1.0.6' +ReleaseNotesUrl: https://github.com/Pranav-Nexus/omniget/releases/tag/v1.0.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/Nexus/OmniGet/1.0.6/Nexus.OmniGet.yaml b/manifests/n/Nexus/OmniGet/1.0.6/Nexus.OmniGet.yaml new file mode 100644 index 0000000000000..72ac87af470dc --- /dev/null +++ b/manifests/n/Nexus/OmniGet/1.0.6/Nexus.OmniGet.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Nexus.OmniGet +PackageVersion: 1.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From bbc82c554dc0874bc8e24494b184c516e722502f Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Mon, 20 Jul 2026 09:45:54 +0800 Subject: [PATCH 08/44] Update: KDE.Chessament version 0.1 (750) (#404639) --- .../k/KDE/Chessament/0.1/KDE.Chessament.installer.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manifests/k/KDE/Chessament/0.1/KDE.Chessament.installer.yaml b/manifests/k/KDE/Chessament/0.1/KDE.Chessament.installer.yaml index 5dc9108c1ab4e..f4f74a22e33fc 100644 --- a/manifests/k/KDE/Chessament/0.1/KDE.Chessament.installer.yaml +++ b/manifests/k/KDE/Chessament/0.1/KDE.Chessament.installer.yaml @@ -9,14 +9,14 @@ ProductCode: Chessament Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/games/chessament/master/windows/chessament-master-749-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 28989E21692649EB35D86058D057F151A029D438CB78C12FCDBADBFA2FA4786F + InstallerUrl: https://cdn.kde.org/ci-builds/games/chessament/master/windows/chessament-master-750-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 76FC4BA8E831EB3FC9B250EBD073F9DED69D810AEC8B44D0D402868792447F9C InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/games/chessament/master/windows/chessament-master-749-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 28989E21692649EB35D86058D057F151A029D438CB78C12FCDBADBFA2FA4786F + InstallerUrl: https://cdn.kde.org/ci-builds/games/chessament/master/windows/chessament-master-750-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 76FC4BA8E831EB3FC9B250EBD073F9DED69D810AEC8B44D0D402868792447F9C InstallerSwitches: Custom: /AllUsers ManifestType: installer From 49ce6532a227b7439d3bd50d4aad3893638ba706 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Mon, 20 Jul 2026 03:46:24 +0200 Subject: [PATCH 09/44] New version: vim.vim.nightly version 9.2.0810 (#404644) --- .../9.2.0810/vim.vim.nightly.installer.yaml | 89 +++++++++++++++++++ .../vim.vim.nightly.locale.en-US.yaml | 71 +++++++++++++++ .../vim/nightly/9.2.0810/vim.vim.nightly.yaml | 8 ++ 3 files changed, 168 insertions(+) create mode 100644 manifests/v/vim/vim/nightly/9.2.0810/vim.vim.nightly.installer.yaml create mode 100644 manifests/v/vim/vim/nightly/9.2.0810/vim.vim.nightly.locale.en-US.yaml create mode 100644 manifests/v/vim/vim/nightly/9.2.0810/vim.vim.nightly.yaml diff --git a/manifests/v/vim/vim/nightly/9.2.0810/vim.vim.nightly.installer.yaml b/manifests/v/vim/vim/nightly/9.2.0810/vim.vim.nightly.installer.yaml new file mode 100644 index 0000000000000..62d01ed23d903 --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.2.0810/vim.vim.nightly.installer.yaml @@ -0,0 +1,89 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: vim.vim.nightly +PackageVersion: 9.2.0810 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Commands: +- diff +- evim +- gview +- gvim +- gvimdiff +- tee +- view +- vim +- vimdiff +- xxd +ProductCode: Vim (current user) +ReleaseDate: 2026-07-19 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.2.0810/gvim_9.2.0810_x86.exe + InstallerSha256: 321CB51B44B0042EF6B704A1FD32E116AF43F51F0C83A008B2A602808F31F0B1 + InstallerSwitches: + Custom: /currentuser + AppsAndFeaturesEntries: + - DisplayName: Vim 9.2 (x86) (current user) + Publisher: The Vim Project + ProductCode: Vim (current user) +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.2.0810/gvim_9.2.0810_x86.exe + InstallerSha256: 321CB51B44B0042EF6B704A1FD32E116AF43F51F0C83A008B2A602808F31F0B1 + InstallerSwitches: + Custom: /allusers + AppsAndFeaturesEntries: + - DisplayName: Vim 9.2 (x86) (current user) + Publisher: The Vim Project + ProductCode: Vim (current user) +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.2.0810/gvim_9.2.0810_x64.exe + InstallerSha256: 2AD116D41C8DBEB6C1D609AE6B31D9A9F6218DE6C333E9784DE84F57FF833D9E + InstallerSwitches: + Custom: /currentuser + AppsAndFeaturesEntries: + - DisplayName: Vim 9.2 (x64) (current user) + Publisher: The Vim Project + ProductCode: Vim (current user) +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.2.0810/gvim_9.2.0810_x64.exe + InstallerSha256: 2AD116D41C8DBEB6C1D609AE6B31D9A9F6218DE6C333E9784DE84F57FF833D9E + InstallerSwitches: + Custom: /allusers + AppsAndFeaturesEntries: + - DisplayName: Vim 9.2 (x64) (current user) + Publisher: The Vim Project + ProductCode: Vim (current user) +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.2.0810/gvim_9.2.0810_arm64.exe + InstallerSha256: 9A7A085115A212994E083B558570979F0132D4358AD1B00C999F14752673A2C0 + InstallerSwitches: + Custom: /currentuser + AppsAndFeaturesEntries: + - DisplayName: Vim 9.2 (ARM64) (current user) + Publisher: The Vim Project + ProductCode: Vim (current user) +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.2.0810/gvim_9.2.0810_arm64.exe + InstallerSha256: 9A7A085115A212994E083B558570979F0132D4358AD1B00C999F14752673A2C0 + InstallerSwitches: + Custom: /allusers + AppsAndFeaturesEntries: + - DisplayName: Vim 9.2 (ARM64) (current user) + Publisher: The Vim Project + ProductCode: Vim (current user) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/vim/vim/nightly/9.2.0810/vim.vim.nightly.locale.en-US.yaml b/manifests/v/vim/vim/nightly/9.2.0810/vim.vim.nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..9d2e895d95cd8 --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.2.0810/vim.vim.nightly.locale.en-US.yaml @@ -0,0 +1,71 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: vim.vim.nightly +PackageVersion: 9.2.0810 +PackageLocale: en-US +Publisher: Bram Moolenaar et al. +PublisherUrl: https://github.com/vim/vim-win32-installer +PublisherSupportUrl: https://github.com/vim/vim-win32-installer/issues +Author: Bram Moolenaar et al. +PackageName: Vim +PackageUrl: https://www.vim.org/ +License: Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] - Charityware / GNU GPL compatible +LicenseUrl: https://github.com/vim/vim-win32-installer#license--copyright +Copyright: Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] +CopyrightUrl: https://github.com/vim/vim-win32-installer#license--copyright +ShortDescription: Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient +Moniker: vim +Tags: +- code-editor +- g-vim +- gvim +- text-editing +- text-editor +- tool +- utility +- vi +ReleaseNotes: |- + v9.2.0810 + Nightly Vim Windows build snapshots (more information). + If you do not know what to use, use the 32bit installer (use the signed one, if available). + Signed releases will occasionally be provided on a best effort approach. + Changes: + - 9.2.0810: add_llist_tags() uses wrong function to free dict + - 9.2.0809: getframelayout() uses wrong function to free lists + - 9.2.0808: getregionpos: double-free on alloc failure + - 9.2.0807: MS-Windows: ellipsis character is garbled + - 9.2.0806: 'showcmd' may show internal command keys + - 9.2.0805: screenpos() "curscol" is wrong with 'rightleft' + Files: + 🔓 Unsigned Files: + - gvim_9.2.0810_x86.exe + 32-bit installer (If you don't know what to use, use this one) + - gvim_9.2.0810_x64.exe + 64-bit installer + - gvim_9.2.0810_arm64.exe + ARM64-bit installer + - gvim_9.2.0810_x86.zip + 32-bit zip archive + - gvim_9.2.0810_x64.zip + 64-bit zip archive + - gvim_9.2.0810_arm64.zip + ARM 64-bit zip archive + - gvim_9.2.0810_x86_pdb.7z + pdb files for debugging the corresponding 32-bit executable + - gvim_9.2.0810_x64_pdb.7z + pdb files for debugging the corresponding 64-bit executable + - gvim_9.2.0810_arm64_pdb.7z + pdb files for debugging the corresponding ARM 64-bit executable + Interface Information + - Strawberry Perl 5.38 + - LuaBinaries 5.4 + - Python2 2.7 + - Python3 3.8 or later + - Racket 8.17 (BC) + - RubyInstaller 3.4 + - libsodium 1.0.22 + See the README for detail. +ReleaseNotesUrl: https://github.com/vim/vim-win32-installer/releases/tag/v9.2.0810 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/vim/vim/nightly/9.2.0810/vim.vim.nightly.yaml b/manifests/v/vim/vim/nightly/9.2.0810/vim.vim.nightly.yaml new file mode 100644 index 0000000000000..71aaaf0dce9fa --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.2.0810/vim.vim.nightly.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: vim.vim.nightly +PackageVersion: 9.2.0810 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 35528ab26696a1e5e24423b22cd6755b57e53b67 Mon Sep 17 00:00:00 2001 From: UnownBot Date: Sun, 19 Jul 2026 21:46:46 -0400 Subject: [PATCH 10/44] New version: Buildkite.CLI version 3.53.1 (#404648) --- .../CLI/3.53.1/Buildkite.CLI.installer.yaml | 23 +++++++++++ .../3.53.1/Buildkite.CLI.locale.en-US.yaml | 40 +++++++++++++++++++ .../b/Buildkite/CLI/3.53.1/Buildkite.CLI.yaml | 8 ++++ 3 files changed, 71 insertions(+) create mode 100644 manifests/b/Buildkite/CLI/3.53.1/Buildkite.CLI.installer.yaml create mode 100644 manifests/b/Buildkite/CLI/3.53.1/Buildkite.CLI.locale.en-US.yaml create mode 100644 manifests/b/Buildkite/CLI/3.53.1/Buildkite.CLI.yaml diff --git a/manifests/b/Buildkite/CLI/3.53.1/Buildkite.CLI.installer.yaml b/manifests/b/Buildkite/CLI/3.53.1/Buildkite.CLI.installer.yaml new file mode 100644 index 0000000000000..efb5b033408e2 --- /dev/null +++ b/manifests/b/Buildkite/CLI/3.53.1/Buildkite.CLI.installer.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Buildkite.CLI +PackageVersion: 3.53.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: bk.exe + PortableCommandAlias: bk +UpgradeBehavior: install +Commands: +- bk +ReleaseDate: 2026-07-19 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/buildkite/cli/releases/download/v3.53.1/bk_3.53.1_windows_amd64.zip + InstallerSha256: DE09AF72BA4CB795A805ADEADBEC58D6C5DCC354BC9A6B46ACDE3D5D3FB4A906 +- Architecture: arm64 + InstallerUrl: https://github.com/buildkite/cli/releases/download/v3.53.1/bk_3.53.1_windows_arm64.zip + InstallerSha256: FDA126237D54B2E8A21DD8EB3E4FBB5184E30228292347717855FB5CCE3A88F9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/Buildkite/CLI/3.53.1/Buildkite.CLI.locale.en-US.yaml b/manifests/b/Buildkite/CLI/3.53.1/Buildkite.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..69bb9f6c227c8 --- /dev/null +++ b/manifests/b/Buildkite/CLI/3.53.1/Buildkite.CLI.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Buildkite.CLI +PackageVersion: 3.53.1 +PackageLocale: en-US +Publisher: Buildkite Pty. Ltd. +PublisherUrl: https://buildkite.com/home/ +PublisherSupportUrl: https://forum.buildkite.community/ +Author: Buildkite Pty. Ltd. +PackageName: Buildkite CLI +PackageUrl: https://buildkite.com/docs/platform/cli +License: MIT +LicenseUrl: https://github.com/buildkite/cli/blob/HEAD/LICENSE.md +Copyright: Copyright (c) 2014-2026 Buildkite Pty Ltd +CopyrightUrl: https://github.com/buildkite/cli/blob/HEAD/LICENSE.md +ShortDescription: A command line interface for Buildkite. +Description: |- + The Buildkite CLI is a command-line interface (CLI) tool for interacting directly with the Buildkite platform itself. This tool provides command line/terminal access to work with a subset of the Buildkite platform's features, as you normally would through its web interface. + + Using the Buildkite CLI, you can manage Buildkite agents and their configuration, work with a Buildkite pipeline's builds, control job execution, and manipulate its artifacts, along with several other actions. +Moniker: buildkite-cli +Tags: +- buildkite +- cd +- ci +- ci-cd +- continuous-integration +ReleaseNotes: |- + Changelog + + Fixes + - bc72f7b: fix(deps): update module github.com/buildkite/go-buildkite/v5 to v5.4.0 (#916) (@renovate[bot]) + - f886e22: fix(deps): bump golang.org/x/crypto to v0.52.0 (#917) (@pietdaniel) +ReleaseNotesUrl: https://github.com/buildkite/cli/releases/tag/v3.53.1 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://buildkite.com/docs/platform/cli +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Buildkite/CLI/3.53.1/Buildkite.CLI.yaml b/manifests/b/Buildkite/CLI/3.53.1/Buildkite.CLI.yaml new file mode 100644 index 0000000000000..92c14ef645418 --- /dev/null +++ b/manifests/b/Buildkite/CLI/3.53.1/Buildkite.CLI.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Buildkite.CLI +PackageVersion: 3.53.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 65ae7621994dfa54fa53855f634ead37548f1a92 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Sun, 19 Jul 2026 18:47:25 -0700 Subject: [PATCH 11/44] Automatic deletion of Logitech.OptionsPlus 2.4.903778 (#404650) --- .../Logitech.OptionsPlus.installer.yaml | 29 ----------- .../Logitech.OptionsPlus.locale.en-US.yaml | 50 ------------------- .../2.4.903778/Logitech.OptionsPlus.yaml | 8 --- 3 files changed, 87 deletions(-) delete mode 100644 manifests/l/Logitech/OptionsPlus/2.4.903778/Logitech.OptionsPlus.installer.yaml delete mode 100644 manifests/l/Logitech/OptionsPlus/2.4.903778/Logitech.OptionsPlus.locale.en-US.yaml delete mode 100644 manifests/l/Logitech/OptionsPlus/2.4.903778/Logitech.OptionsPlus.yaml diff --git a/manifests/l/Logitech/OptionsPlus/2.4.903778/Logitech.OptionsPlus.installer.yaml b/manifests/l/Logitech/OptionsPlus/2.4.903778/Logitech.OptionsPlus.installer.yaml deleted file mode 100644 index fabaeb2e0be5e..0000000000000 --- a/manifests/l/Logitech/OptionsPlus/2.4.903778/Logitech.OptionsPlus.installer.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jun/10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Logitech.OptionsPlus -PackageVersion: 2.4.903778 -InstallerType: exe -Scope: machine -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: /quiet - SilentWithProgress: /quiet - Custom: /analytics no -InstallerSuccessCodes: -- -1978335226 -UpgradeBehavior: install -Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.VCRedist.2015+.x64 -ProductCode: '{850cdc16-85df-4052-b06e-4e3e9e83c5c6}' -ReleaseDate: 2026-04-28 -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x64 - InstallerUrl: https://download01.logi.com/web/ftp/pub/techsupport/optionsplus/logioptionsplus_installer.exe - InstallerSha256: 48A8ACC29641A0099154FA4F13A48FC8D32DE368C81C7B32DF876135E7817394 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/l/Logitech/OptionsPlus/2.4.903778/Logitech.OptionsPlus.locale.en-US.yaml b/manifests/l/Logitech/OptionsPlus/2.4.903778/Logitech.OptionsPlus.locale.en-US.yaml deleted file mode 100644 index 2fd34b85817e1..0000000000000 --- a/manifests/l/Logitech/OptionsPlus/2.4.903778/Logitech.OptionsPlus.locale.en-US.yaml +++ /dev/null @@ -1,50 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jun/10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Logitech.OptionsPlus -PackageVersion: 2.4.903778 -PackageLocale: en-US -Publisher: Logitech -PublisherUrl: https://www.logitech.com/ -PublisherSupportUrl: https://support.logi.com/ -PrivacyUrl: https://www.logitech.com/legal/product-privacy-policy -PackageName: Logi Options+ -PackageUrl: https://www.logitech.com/software/logi-options-plus -License: Proprietary -LicenseUrl: https://www.logitech.com/tos/software-license-agreement -Copyright: Copyright (c) 2024 Logitech. All rights reserved. -ShortDescription: Customization App for Logitech Devices -Description: Enhance your Logitech devices with Logi Options Plus software. Customize settings, create shortcuts, and increase productivity. -Moniker: logi-options-plus -Tags: -- audio -- business -- keyboard -- lights -- logi -- logioptions -- meetings -- mouse -- office -- options -- presentations -- webcam-controls -- workflow -Documentations: -- DocumentLabel: All about Logi Options+ - DocumentUrl: https://support.logi.com/hc/articles/1500006416522 -- DocumentLabel: Getting Started - DocumentUrl: https://support.logi.com/hc/articles/1500010313561 -- DocumentLabel: Supported Devices - DocumentUrl: https://www.logitech.com/software/logi-options-plus#supported-devices -ReleaseNotes: |- - MX Creative Console & Actions Ring - - General Bug Fixes. - - Added a popup message with detailed compatibility requirements when trying to add an .svg file for icons. - New Features - - Enhanced Easy-Switch - - Logi Options+ now supports enhanced Easy-Switch. With the enhanced Easy-Switch your Logitech mouse will automatically follow your paired keyboard when you switch between computers. This simplifies your workflow by synchronizing your devices. This feature is now available with MX Keys S, MX Keys for mac and MX Keys Mini(All Variants) keyboards. Click here for the full list of supported mice and to know more about the enhanced Easy-Switch feature. - - Add a “Customize” button to the Camera Settings overview on the camera page for webcams. - - Update the field of view selector on the crop tab for webcams. -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/l/Logitech/OptionsPlus/2.4.903778/Logitech.OptionsPlus.yaml b/manifests/l/Logitech/OptionsPlus/2.4.903778/Logitech.OptionsPlus.yaml deleted file mode 100644 index bae37b229a88f..0000000000000 --- a/manifests/l/Logitech/OptionsPlus/2.4.903778/Logitech.OptionsPlus.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jun/10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: Logitech.OptionsPlus -PackageVersion: 2.4.903778 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 6a354ecfad2baf6284ed8e48fedcb2fff83618cc Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Mon, 20 Jul 2026 09:47:48 +0800 Subject: [PATCH 12/44] New version: CognitionAI.DevinDesktop version 3.5.17 (#404651) --- .../CognitionAI.DevinDesktop.installer.yaml | 179 ++++++++++++++++++ ...CognitionAI.DevinDesktop.locale.en-US.yaml | 60 ++++++ ...CognitionAI.DevinDesktop.locale.zh-CN.yaml | 22 +++ .../3.5.17/CognitionAI.DevinDesktop.yaml | 8 + 4 files changed, 269 insertions(+) create mode 100644 manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.installer.yaml create mode 100644 manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.locale.en-US.yaml create mode 100644 manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.locale.zh-CN.yaml create mode 100644 manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.yaml diff --git a/manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.installer.yaml b/manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.installer.yaml new file mode 100644 index 0000000000000..8716b7d100f91 --- /dev/null +++ b/manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.installer.yaml @@ -0,0 +1,179 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: CognitionAI.DevinDesktop +PackageVersion: 3.5.17 +InstallerType: inno +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- devin +- windsurf +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ini +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- log +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- ps1 +- psd1 +- psgi +- psm1 +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- svgz +- t +- tex +- toml +- ts +- tsx +- txt +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ReleaseDate: 2026-07-17 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://windsurf-stable.codeiumdata.com/win32-x64-user/stable/2c489dfc762456657db8662309c0d5e76e886397/DevinUserSetup-x64-3.5.17.exe + InstallerSha256: 6C1EE87CF71D05C525E78B105C8F7A9F952B078C769BA820E074517D4C99931E + ProductCode: '{5A8B7D94-9B5F-4D1F-93FC-5609F7159349}_is1' +- Architecture: x64 + Scope: machine + InstallerUrl: https://windsurf-stable.codeiumdata.com/win32-x64/stable/2c489dfc762456657db8662309c0d5e76e886397/DevinSetup-x64-3.5.17.exe + InstallerSha256: 90C7DF0A2C6B8B159BD1419A8BA438953EC874C58DCF507283CFA3856559587E + ProductCode: '{A71B58E9-CEFB-4424-8A1D-A0E49CF18EBB}_is1' + ElevationRequirement: elevatesSelf +- Architecture: arm64 + Scope: user + InstallerUrl: https://windsurf-stable.codeiumdata.com/win32-arm64-user/stable/2c489dfc762456657db8662309c0d5e76e886397/DevinUserSetup-arm64-3.5.17.exe + InstallerSha256: 1F9F3FC8775814D09333804BAFB397AF374B5C26724F98073A235B32BB73FED0 + ProductCode: '{1A69CEA0-8DA8-4B3E-950C-23FA9F850651}_is1' +- Architecture: arm64 + Scope: machine + InstallerUrl: https://windsurf-stable.codeiumdata.com/win32-arm64/stable/2c489dfc762456657db8662309c0d5e76e886397/DevinSetup-arm64-3.5.17.exe + InstallerSha256: 7672A424E039EEE943F27741E22A502C120EF7EE837FE82F16D241B6D8BE63C2 + ProductCode: '{9B0AE7D1-5CD0-43E6-B7B0-EE4B79723A25}_is1' + ElevationRequirement: elevatesSelf +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.locale.en-US.yaml b/manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..00cf79686fba1 --- /dev/null +++ b/manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: CognitionAI.DevinDesktop +PackageVersion: 3.5.17 +PackageLocale: en-US +Publisher: Codeium +PublisherUrl: https://devin.ai/ +PrivacyUrl: https://cognition.ai/privacy-policy +Author: Cognition AI, Inc. +PackageName: Devin +PackageUrl: https://devin.ai/desktop +License: Proprietary +LicenseUrl: https://cognition.ai/terms-of-service +Copyright: © 2026 Exafunction, Inc. All rights reserved. +CopyrightUrl: https://cognition.ai/terms-of-service +ShortDescription: Manage fleets of local and cloud agents from one surface. Plan, delegate, review, and ship without leaving your editor. +Tags: +- agent +- agentic +- ai +- code +- coding +- develop +- development +- editing +- editor +- large-language-model +- llm +- programming +ReleaseNotes: |- + Devin Desktop + - @-mention pills in Cascade now show type-specific icons. + - Restyled the command palette in the Agent Command Center. + - Hiding the status bar by default in the Agent Command Center (set "workbench.statusBar.visible": true in user settings to restore it). + - New worktree-backed sessions now open instantly and stay interactive while the worktree is created in the background. + - “View usage” now opens eligible Devin users’ personal analytics page directly. + - The devin.* settings for gitignore access, completion mode, and auto-continue are now honored. + - Resuming an agent session now uses its original working directory, so Claude sessions started in another folder can be reloaded. + - Fixed a crash when opening the Recent Chat History modal in Cascade. + - On Windows, the auto-updater now clears stale Devin.exe processes before applying updates. + Devin Cloud + - Long Devin Cloud sessions render, scroll, and type faster and stay responsive while streaming. + - A brief remote-connection drop no longer flashes a “disconnected” banner. + - You can now configure a session’s network policy and grant or deny network access requests inline from the chat, without switching to the web app. + Devin Local + - Devin Local customizations and the sidebar skills count now span all open workspace folders. + - The Hooks tab in Devin Local Customizations now lists configured hooks with their source and trigger events. + - Added a command to migrate Windsurf hooks into Devin hooks across every workspace folder. + - Added a subtle timeline navigator for Devin Local sessions. + - Added Fast Context support in Devin Local sessions. +ReleaseNotesUrl: https://docs.devin.ai/desktop/changelog +PurchaseUrl: https://devin.ai/pricing +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.devin.ai/desktop/getting-started +- DocumentLabel: FAQ + DocumentUrl: https://docs.devin.ai/desktop/devin-desktop-faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.locale.zh-CN.yaml b/manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cdfe7c2144bee --- /dev/null +++ b/manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.locale.zh-CN.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: CognitionAI.DevinDesktop +PackageVersion: 3.5.17 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 通过统一界面管理本地和云端智能体集群。无需离开编辑器,即可完成规划、委派、复核及发布。 +Tags: +- 代码 +- 开发 +- 编程 +- 编辑 +- 编辑器 +ReleaseNotesUrl: https://docs.devin.ai/zh/desktop/changelog +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.devin.ai/zh/desktop/getting-started +- DocumentLabel: 常见问题 + DocumentUrl: https://docs.devin.ai/zh/desktop/devin-desktop-faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.yaml b/manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.yaml new file mode 100644 index 0000000000000..f15109c2f1328 --- /dev/null +++ b/manifests/c/CognitionAI/DevinDesktop/3.5.17/CognitionAI.DevinDesktop.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: CognitionAI.DevinDesktop +PackageVersion: 3.5.17 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 50f4c28a8d8c3fb327656feb76ea83b8ae5a3e2f Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Sun, 19 Jul 2026 18:48:27 -0700 Subject: [PATCH 13/44] Automatic deletion of Argotronic.ArgusMonitor 7.4.2.3180 (#404653) --- .../Argotronic.ArgusMonitor.installer.yaml | 17 ---------- .../Argotronic.ArgusMonitor.locale.en-US.yaml | 34 ------------------- .../7.4.2.3180/Argotronic.ArgusMonitor.yaml | 8 ----- 3 files changed, 59 deletions(-) delete mode 100644 manifests/a/Argotronic/ArgusMonitor/7.4.2.3180/Argotronic.ArgusMonitor.installer.yaml delete mode 100644 manifests/a/Argotronic/ArgusMonitor/7.4.2.3180/Argotronic.ArgusMonitor.locale.en-US.yaml delete mode 100644 manifests/a/Argotronic/ArgusMonitor/7.4.2.3180/Argotronic.ArgusMonitor.yaml diff --git a/manifests/a/Argotronic/ArgusMonitor/7.4.2.3180/Argotronic.ArgusMonitor.installer.yaml b/manifests/a/Argotronic/ArgusMonitor/7.4.2.3180/Argotronic.ArgusMonitor.installer.yaml deleted file mode 100644 index 522dff5fb7856..0000000000000 --- a/manifests/a/Argotronic/ArgusMonitor/7.4.2.3180/Argotronic.ArgusMonitor.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jul/10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Argotronic.ArgusMonitor -PackageVersion: 7.4.2.3180 -InstallerLocale: en-US -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -UpgradeBehavior: install -AppsAndFeaturesEntries: -- ProductCode: ArgusMonitor -Installers: -- Architecture: x64 - InstallerUrl: https://www.argusmonitor.com/downloads/ArgusMonitor_Setup.exe - InstallerSha256: 79D306A5B7CF93BE69D48924091F4580A49C56674ADAC635BDA205C5F097BFBF -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/a/Argotronic/ArgusMonitor/7.4.2.3180/Argotronic.ArgusMonitor.locale.en-US.yaml b/manifests/a/Argotronic/ArgusMonitor/7.4.2.3180/Argotronic.ArgusMonitor.locale.en-US.yaml deleted file mode 100644 index 1e8963f050e34..0000000000000 --- a/manifests/a/Argotronic/ArgusMonitor/7.4.2.3180/Argotronic.ArgusMonitor.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jul/10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Argotronic.ArgusMonitor -PackageVersion: 7.4.2.3180 -PackageLocale: en-US -Publisher: Argotronic GmbH -PublisherUrl: https://www.argusmonitor.com/ -PublisherSupportUrl: https://help.argusmonitor.com/ -PrivacyUrl: https://www.argusmonitor.com/privacy_policy.php -PackageName: Argus Monitor -PackageUrl: https://www.argusmonitor.com/ -License: Proprietary -LicenseUrl: https://www.argusmonitor.com/terms_and_conditions.php -Copyright: Copyright (c) Argotronic GmbH -ShortDescription: Fan speed control based on all available temperature sources, like HDD/SSD or GPU temperatures. -Moniker: argus-monitor -Tags: -- cpu -- fan -- fan-control -- fan-speed -- gpu -- hdd -- ssd -- system-monitoring -- temperature -ReleaseNotesUrl: https://www.argusmonitor.com/history.php -PurchaseUrl: https://www.argusmonitor.com/order.php -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://www.argusmonitor.com/faq.php -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/a/Argotronic/ArgusMonitor/7.4.2.3180/Argotronic.ArgusMonitor.yaml b/manifests/a/Argotronic/ArgusMonitor/7.4.2.3180/Argotronic.ArgusMonitor.yaml deleted file mode 100644 index 8be640f814f46..0000000000000 --- a/manifests/a/Argotronic/ArgusMonitor/7.4.2.3180/Argotronic.ArgusMonitor.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jul/10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: Argotronic.ArgusMonitor -PackageVersion: 7.4.2.3180 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 45fb31fefb565f8aa9392ad53696b4d6a0aca8d3 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Mon, 20 Jul 2026 09:48:51 +0800 Subject: [PATCH 14/44] Update: Servo.Servo.Nightly version 1.0 (2026-07-19) (#404654) --- .../Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml | 8 ++++---- .../Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml index 6017f8be6d296..b1e1cd227bc5a 100644 --- a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml +++ b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml @@ -8,13 +8,13 @@ Scope: machine Protocols: - http - https -ProductCode: '{FEF2620D-32C7-411C-8210-B8CE7476C7E9}' -ReleaseDate: 2026-07-18 +ProductCode: '{C555670F-A319-4B3A-945F-8A4E4C494BC3}' +ReleaseDate: 2026-07-19 AppsAndFeaturesEntries: - DisplayName: ServoShell Installers: - Architecture: x64 - InstallerUrl: https://github.com/servo/servo-nightly-builds/releases/download/2026-07-18/servo-x86_64-windows-msvc.exe - InstallerSha256: 0D9E87EE82C168C12A4E89EAEB4209B958DE079DC723B33E9C0ECDE11766D735 + InstallerUrl: https://github.com/servo/servo-nightly-builds/releases/download/2026-07-19/servo-x86_64-windows-msvc.exe + InstallerSha256: 29A1E409C2B6FD16D0807D9F28B41296300BBF7D98CED68F6E804A19B90228D4 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml index 2c4efcb0fc3ae..db0b70820ef96 100644 --- a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml +++ b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml @@ -19,8 +19,8 @@ Tags: - web - web-browser - webpage -ReleaseNotes: Nightly build based on servo/servo@243caa6e9278a9c5520d8e41b34caaaa2810e4ec -ReleaseNotesUrl: https://github.com/servo/servo-nightly-builds/releases/tag/2026-07-18 +ReleaseNotes: Nightly build based on servo/servo@736ad1bda08c1af419aadc903e82938f8610a65d +ReleaseNotesUrl: https://github.com/servo/servo-nightly-builds/releases/tag/2026-07-19 Documentations: - DocumentLabel: Wiki DocumentUrl: https://github.com/servo/servo/wiki From aa12a2058c314c37c6cec7354834ee63321893ce Mon Sep 17 00:00:00 2001 From: ForTunnels Date: Mon, 20 Jul 2026 05:06:09 +0300 Subject: [PATCH 15/44] New package: ForTunnels.ForTunnels version 1.0.49 (#404637) --- .../ForTunnels.ForTunnels.installer.yaml | 26 +++++++++++++++++++ .../ForTunnels.ForTunnels.locale.en-US.yaml | 22 ++++++++++++++++ .../1.0.49/ForTunnels.ForTunnels.yaml | 8 ++++++ 3 files changed, 56 insertions(+) create mode 100644 manifests/f/ForTunnels/ForTunnels/1.0.49/ForTunnels.ForTunnels.installer.yaml create mode 100644 manifests/f/ForTunnels/ForTunnels/1.0.49/ForTunnels.ForTunnels.locale.en-US.yaml create mode 100644 manifests/f/ForTunnels/ForTunnels/1.0.49/ForTunnels.ForTunnels.yaml diff --git a/manifests/f/ForTunnels/ForTunnels/1.0.49/ForTunnels.ForTunnels.installer.yaml b/manifests/f/ForTunnels/ForTunnels/1.0.49/ForTunnels.ForTunnels.installer.yaml new file mode 100644 index 0000000000000..454a0a29af9d3 --- /dev/null +++ b/manifests/f/ForTunnels/ForTunnels/1.0.49/ForTunnels.ForTunnels.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: ForTunnels.ForTunnels +PackageVersion: 1.0.49 +Platform: +- Windows.Desktop +InstallerType: zip +NestedInstallerType: portable +Commands: +- fortunnels +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: fortunnels.exe + PortableCommandAlias: fortunnels + InstallerUrl: https://fortunnels.ru/landing-assets/downloads/winget/1.0.49/fortunnels-windows+amd64.zip + InstallerSha256: 3BF9299A120D40EA636338C8449D08276B5060625A9D3734AA79990260151621 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: fortunnels.exe + PortableCommandAlias: fortunnels + InstallerUrl: https://fortunnels.ru/landing-assets/downloads/winget/1.0.49/fortunnels-windows+arm64.zip + InstallerSha256: 78A226B029418D095C15BE3F130D6A1B05CDBF99FD745313FA0E5A8EFDBA38A7 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/f/ForTunnels/ForTunnels/1.0.49/ForTunnels.ForTunnels.locale.en-US.yaml b/manifests/f/ForTunnels/ForTunnels/1.0.49/ForTunnels.ForTunnels.locale.en-US.yaml new file mode 100644 index 0000000000000..69582f791edae --- /dev/null +++ b/manifests/f/ForTunnels/ForTunnels/1.0.49/ForTunnels.ForTunnels.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: ForTunnels.ForTunnels +PackageVersion: 1.0.49 +PackageLocale: en-US +Publisher: ForTunnels +PublisherUrl: https://fortunnels.ru +PackageName: ForTunnels CLI +PackageUrl: https://fortunnels.ru +License: Proprietary +LicenseUrl: https://github.com/ForTunnels/client/blob/master/LICENSE +ShortDescription: ForTunnels command-line client for secure tunneling +Description: 'ForTunnels CLI client for secure tunneling. The Windows zip contains fortunnels.exe as a portable binary. Source: https://github.com/ForTunnels/client' +Moniker: fortunnels +Tags: +- fortunnels +- tunnel +- cli +- networking +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/f/ForTunnels/ForTunnels/1.0.49/ForTunnels.ForTunnels.yaml b/manifests/f/ForTunnels/ForTunnels/1.0.49/ForTunnels.ForTunnels.yaml new file mode 100644 index 0000000000000..48cd148497b89 --- /dev/null +++ b/manifests/f/ForTunnels/ForTunnels/1.0.49/ForTunnels.ForTunnels.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: ForTunnels.ForTunnels +PackageVersion: 1.0.49 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From bcc75d9d9f53c6970767ac68d1918c37cd87f013 Mon Sep 17 00:00:00 2001 From: hitalin Date: Mon, 20 Jul 2026 11:06:29 +0900 Subject: [PATCH 16/44] New version: Hitalin.NoteDeck version 1.16.0 (#404643) --- .../1.16.0/Hitalin.NoteDeck.installer.yaml | 21 +++++++++++++ .../1.16.0/Hitalin.NoteDeck.locale.en-US.yaml | 24 ++++++++++++++ .../1.16.0/Hitalin.NoteDeck.locale.ja-JP.yaml | 31 +++++++++++++++++++ .../NoteDeck/1.16.0/Hitalin.NoteDeck.yaml | 8 +++++ 4 files changed, 84 insertions(+) create mode 100644 manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.installer.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.locale.en-US.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.locale.ja-JP.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.yaml diff --git a/manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.installer.yaml b/manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.installer.yaml new file mode 100644 index 0000000000000..bb36e9b055f35 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 1.16.0 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ProductCode: NoteDeck +ReleaseDate: 2026-07-19 +AppsAndFeaturesEntries: +- Publisher: notedeck + ProductCode: NoteDeck +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\NoteDeck' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/notedeck-dev/notedeck/releases/download/v1.16.0/NoteDeck-1.16.0-windows-x64-setup.exe + InstallerSha256: 9950654FD70634CAFCF1004A6FEC3FB4792BB9AC68C46443A59CDDA5AA32B976 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.locale.en-US.yaml b/manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.locale.en-US.yaml new file mode 100644 index 0000000000000..61b9b60df685d --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 1.16.0 +PackageLocale: en-US +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/main/LICENSE +ShortDescription: A multi-platform deck client for Misskey and its forks +Description: |- + NoteDeck is a deck client for Misskey and its forks. + It provides efficient multi-server timeline viewing with features like local full-text search, + AI integration, and localhost API that are only possible with a native desktop application. +Tags: +- deck +- fediverse +- misskey +- social-media +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.locale.ja-JP.yaml b/manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.locale.ja-JP.yaml new file mode 100644 index 0000000000000..2d41c0ba68d4a --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.locale.ja-JP.yaml @@ -0,0 +1,31 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 1.16.0 +PackageLocale: ja-JP +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PublisherSupportUrl: https://github.com/hitalin/notedeck/issues +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/notedeck-dev/notedeck/blob/HEAD/LICENSE +ShortDescription: Misskey とそのフォークに対応したマルチプラットフォーム対応デッキクライアント +Description: |- + NoteDeck は Misskey とそのフォークに対応したデッキクライアントです。 + 複数サーバーのタイムラインを効率よく閲覧でき、ローカル全文検索、AI 統合、localhost API など + デスクトップネイティブならではの機能を備えています。 +Tags: +- deck +- fediverse +- misskey +- social-media +ReleaseNotes: |- + What's Changed + Other Changes + - Release v1.16.0 by @hitalin in #798 + Full Changelog: v1.15.0...v1.16.0 +ReleaseNotesUrl: https://github.com/notedeck-dev/notedeck/releases/tag/v1.16.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.yaml b/manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.yaml new file mode 100644 index 0000000000000..03f85d9900ac4 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/1.16.0/Hitalin.NoteDeck.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 1.16.0 +DefaultLocale: ja-JP +ManifestType: version +ManifestVersion: 1.12.0 From 39957bb338e8f8afd14c4b3a2c4b05c5549bf7ce Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Sun, 19 Jul 2026 19:06:52 -0700 Subject: [PATCH 17/44] Automatic deletion of High-Logic.FontCreator 16.0.0.3076 (#404649) --- .../High-Logic.FontCreator.installer.yaml | 26 ------------------- .../High-Logic.FontCreator.locale.en-US.yaml | 24 ----------------- .../High-Logic.FontCreator.locale.zh-CN.yaml | 14 ---------- .../16.0.0.3076/High-Logic.FontCreator.yaml | 8 ------ 4 files changed, 72 deletions(-) delete mode 100644 manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.installer.yaml delete mode 100644 manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.locale.en-US.yaml delete mode 100644 manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.locale.zh-CN.yaml delete mode 100644 manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.yaml diff --git a/manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.installer.yaml b/manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.installer.yaml deleted file mode 100644 index eabcb21a5032b..0000000000000 --- a/manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jul/07 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: High-Logic.FontCreator -PackageVersion: 16.0.0.3076 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -FileExtensions: -- designspace -- fcp -- glyphs -- otf -- ttc -- ttf -- ufo -- woff -- woff2 -ProductCode: FontCreator11-x64_is1 -ReleaseDate: 2025-12-31 -Installers: -- Architecture: x64 - InstallerUrl: https://www.high-logic.com/FontCreatorSetup-x64.exe - InstallerSha256: 1F1A519D124FB84817DA20D7876D60DEC35062BFD96D9DADC7377A55AFDBC9D2 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.locale.en-US.yaml b/manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.locale.en-US.yaml deleted file mode 100644 index c91625886198c..0000000000000 --- a/manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jul/07 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: High-Logic.FontCreator -PackageVersion: 16.0.0.3076 -PackageLocale: en-US -Publisher: High-Logic B.V. -PublisherUrl: https://www.high-logic.com/ -PublisherSupportUrl: https://www.high-logic.com/support -PrivacyUrl: https://www.high-logic.com/privacy-policy -Author: High-Logic B.V. -PackageName: High-Logic FontCreator -PackageUrl: https://www.high-logic.com/font-editor/fontcreator -License: Proprietary -LicenseUrl: https://www.high-logic.com/font-editor/fontcreator/license-agreement -Copyright: Copyright © 1997-2025 High-Logic B.V. -ShortDescription: A popular, inspiring, and intuitive font editor built to help you create amazing new fonts and edit existing fonts. -Tags: -- font -ReleaseNotes: '- Numerous improvements and bug fixes' -ReleaseNotesUrl: https://www.high-logic.com/font-editor/fontcreator/changelog -PurchaseUrl: https://www.high-logic.com/buy-now/new-licenses -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.locale.zh-CN.yaml b/manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.locale.zh-CN.yaml deleted file mode 100644 index badd715838f14..0000000000000 --- a/manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.locale.zh-CN.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jul/07 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: High-Logic.FontCreator -PackageVersion: 16.0.0.3076 -PackageLocale: zh-CN -Publisher: High-Logic B.V. -PackageName: High-Logic FontCreator -License: 专有软件 -ShortDescription: 一款流行、启发性、直观的字体编辑器,帮助您打造令人惊叹的新字体和编辑现有字体。 -Tags: -- 字体 -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.yaml b/manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.yaml deleted file mode 100644 index cd2c06faeb759..0000000000000 --- a/manifests/h/High-Logic/FontCreator/16.0.0.3076/High-Logic.FontCreator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jul/07 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: High-Logic.FontCreator -PackageVersion: 16.0.0.3076 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 6d3d67a269e461be0abbb2b5299c6e60a74edbb6 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Mon, 20 Jul 2026 10:07:12 +0800 Subject: [PATCH 18/44] New version: DavidEngelhart.Termpolis version 1.27.8 (#404652) --- .../DavidEngelhart.Termpolis.installer.yaml | 18 ++++++++ ...DavidEngelhart.Termpolis.locale.en-US.yaml | 44 +++++++++++++++++++ ...DavidEngelhart.Termpolis.locale.zh-CN.yaml | 29 ++++++++++++ .../1.27.8/DavidEngelhart.Termpolis.yaml | 8 ++++ 4 files changed, 99 insertions(+) create mode 100644 manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.installer.yaml create mode 100644 manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.locale.en-US.yaml create mode 100644 manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.locale.zh-CN.yaml create mode 100644 manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.yaml diff --git a/manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.installer.yaml b/manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.installer.yaml new file mode 100644 index 0000000000000..ef4f2f0885aef --- /dev/null +++ b/manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DavidEngelhart.Termpolis +PackageVersion: 1.27.8 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 7bff3240-c600-54e1-9164-19e9bb016508 +ReleaseDate: 2026-07-19 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/codedev-david/termpolis/releases/download/v1.27.8/Termpolis.Setup.1.27.8.exe + InstallerSha256: 66E93285D849303B26DBBB99E3BB08D1D530D9C08E9F3D321AFD322ABE649DDA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.locale.en-US.yaml b/manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.locale.en-US.yaml new file mode 100644 index 0000000000000..61cbd4db17f9b --- /dev/null +++ b/manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.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.12.0.schema.json + +PackageIdentifier: DavidEngelhart.Termpolis +PackageVersion: 1.27.8 +PackageLocale: en-US +Publisher: Termpolis +PublisherUrl: https://github.com/codedev-david +PublisherSupportUrl: https://github.com/codedev-david/termpolis/issues +PrivacyUrl: https://github.com/codedev-david/termpolis/blob/HEAD/PRIVACY.md +Author: David Engelhart +PackageName: Termpolis +PackageUrl: https://termpolis.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/codedev-david/termpolis/blob/HEAD/LICENSE +Copyright: Copyright 2026 David Engelhart +ShortDescription: The open-source multi-agent terminal where Claude, Codex, Gemini, and Qwen work together as a team — without your source code leaving the machine. +Description: |- + Termpolis is a cross-platform desktop terminal manager (Windows, macOS, Linux) built on Electron + React + TypeScript with node-pty powering the underlying shells. It ships as a native app, code signed on Windows, notarized on macOS. + What makes it different: + - Secure AI-assisted development. Built-in AI Security Center auto-scans every AI prompt against 70+ secret patterns, enforces Gemini paid-tier mode, and keeps an auditable JSONL log of every AI-agent terminal launch — every check runs locally. + - Multi-agent swarm. Claude Code, Codex, Gemini CLI, and Qwen Code work together on a task. A dedicated Claude Code instance acts as the conductor. + - MCP server baked in. AI agents control Termpolis via Model Context Protocol, open terminals, run commands, send messages. + - Transparent routing. Every subtask shows which agent got it, why, and what it cost. + - Activity observability. Every token, every tool call, every message from every agent is visible in real time. + - Intervention controls. Pause, cancel, or steer any agent mid-task without leaving the feed. + - Shared memory. A RAG-backed memory store that any agent can read and write via MCP. + - MCP-native end to end. All four agents speak MCP — no terminal-output parsers, no glue scripts, no bridge code paths. + - Share-ready output. One shortcut from terminal to Slack, Teams, or a PR — see Copy for Slack / Teams / PRs. +Tags: +- ai +- command-line +- console +- terminal +ReleaseNotes: |- + Full Changelog: https://github.com/codedev-david/termpolis/compare/v1.27.7...v1.27.8 + Full Changelog: https://github.com/codedev-david/termpolis/compare/v1.27.7...v1.27.8 + Full Changelog: https://github.com/codedev-david/termpolis/compare/v1.27.7...v1.27.8 +ReleaseNotesUrl: https://github.com/codedev-david/termpolis/releases/tag/v1.27.8 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://termpolis.com/docs.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.locale.zh-CN.yaml b/manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a00d72d61a29f --- /dev/null +++ b/manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: DavidEngelhart.Termpolis +PackageVersion: 1.27.8 +PackageLocale: zh-CN +ShortDescription: 这是一个让 Claude、Codex、Gemini 和 Qwen 协同工作的开源多智能体终端——您的源代码完全不会离开本机。 +Description: |- + Termpolis 是一款基于 Electron + React + TypeScript 构建的跨平台桌面终端管理器(支持 Windows、macOS、Linux 系统),由 node-pty 提供底层终端服务支持。它以原生应用形式发布,在 Windows 平台完成代码签名,在 macOS 平台完成公证。 + 它的差异化特点: + - 安全的人工智能辅助开发。内置 AI 安全中心,可针对超过 70 种密钥模式自动扫描每一条 AI 提示,强制启用 Gemini 付费层级模式,并为每一次 AI 智能体终端启动留存可审计的 JSONL 日志——所有检查均在本地运行。 + - 多智能体协作集群。Claude Code、Codex、Gemini CLI 与 Qwen Code 可协同完成一项任务,由专属的 Claude Code 实例担任调度协调者。 + - 内置 MCP 服务器。AI 智能体可通过模型上下文协议(Model Context Protocol)控制 Termpolis,打开终端、运行命令、发送消息。 + - 路由透明化。每一项子任务都会明确显示由哪个智能体承接、承接原因以及产生的成本。 + - 活动可观测。所有智能体产生的每一个 token、每一次工具调用、每一条消息都支持实时查看。 + - 人工干预控制。无需退出任务流,即可在任务执行中途暂停、取消或引导任意智能体。 + - 共享存储。基于检索增强生成(RAG)构建的存储库,所有智能体都可通过 MCP 进行读写。 + - 端到端原生支持 MCP。四款智能体均原生支持 MCP——无需终端输出解析器、无需粘合脚本、无需桥接代码路径。 + - 输出可直接分享。只需一次快捷键操作,即可将终端内容分享至 Slack、Teams 或拉取请求——详见「复制至 Slack/Teams/拉取请求」功能。 +Tags: +- 人工智能 +- 命令行 +- 控制台 +- 终端 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://termpolis.com/docs.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.yaml b/manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.yaml new file mode 100644 index 0000000000000..951179d75d760 --- /dev/null +++ b/manifests/d/DavidEngelhart/Termpolis/1.27.8/DavidEngelhart.Termpolis.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: DavidEngelhart.Termpolis +PackageVersion: 1.27.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 284b7bce83ad48082be11e39767871097fa3a677 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Sun, 19 Jul 2026 19:07:30 -0700 Subject: [PATCH 19/44] Automatic deletion of Nanosystems.Supremo 4.11.7.2990 (#404661) --- .../Nanosystems.Supremo.installer.yaml | 15 --------------- .../Nanosystems.Supremo.locale.en-US.yaml | 13 ------------- .../Supremo/4.11.7.2990/Nanosystems.Supremo.yaml | 8 -------- 3 files changed, 36 deletions(-) delete mode 100644 manifests/n/Nanosystems/Supremo/4.11.7.2990/Nanosystems.Supremo.installer.yaml delete mode 100644 manifests/n/Nanosystems/Supremo/4.11.7.2990/Nanosystems.Supremo.locale.en-US.yaml delete mode 100644 manifests/n/Nanosystems/Supremo/4.11.7.2990/Nanosystems.Supremo.yaml diff --git a/manifests/n/Nanosystems/Supremo/4.11.7.2990/Nanosystems.Supremo.installer.yaml b/manifests/n/Nanosystems/Supremo/4.11.7.2990/Nanosystems.Supremo.installer.yaml deleted file mode 100644 index 2438557e92aa4..0000000000000 --- a/manifests/n/Nanosystems/Supremo/4.11.7.2990/Nanosystems.Supremo.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically updated by the winget bot at 2026/May/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Nanosystems.Supremo -PackageVersion: 4.11.7.2990 -ReleaseDate: 2025-11-28 -InstallerType: portable -Commands: -- supremo -Installers: -- Architecture: x86 - InstallerUrl: https://www.nanosystems.com/public/download/Supremo.exe - InstallerSha256: ACEA68C5891B31183B64FCD4BD3FE67D7BDD0ECF0449F11429E5F1D838876E40 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/n/Nanosystems/Supremo/4.11.7.2990/Nanosystems.Supremo.locale.en-US.yaml b/manifests/n/Nanosystems/Supremo/4.11.7.2990/Nanosystems.Supremo.locale.en-US.yaml deleted file mode 100644 index 9f8e86763601f..0000000000000 --- a/manifests/n/Nanosystems/Supremo/4.11.7.2990/Nanosystems.Supremo.locale.en-US.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically updated by the winget bot at 2026/May/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Nanosystems.Supremo -PackageVersion: 4.11.7.2990 -PackageLocale: en-US -Publisher: Nanosystems S.r.l. -PackageName: Supremo -License: Proprietary (Feature-limited freeware) -Copyright: Nanosystems S.r.l. -ShortDescription: Remote desktop control made easy, quick and secure. -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/n/Nanosystems/Supremo/4.11.7.2990/Nanosystems.Supremo.yaml b/manifests/n/Nanosystems/Supremo/4.11.7.2990/Nanosystems.Supremo.yaml deleted file mode 100644 index 34a486b1ea2c0..0000000000000 --- a/manifests/n/Nanosystems/Supremo/4.11.7.2990/Nanosystems.Supremo.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2026/May/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: Nanosystems.Supremo -PackageVersion: 4.11.7.2990 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 0d72374f61b137eeceeacf5e1e8307f962fefa2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?HTH=20-=20=D7=A4=D7=A8=D7=95=D7=99=D7=A7=D7=98=20=D7=94?= =?UTF-8?q?=D7=AA=D7=A8=D7=92=D7=95=D7=9D=20=D7=94=D7=A2=D7=91=D7=A8=D7=99?= <163946954+nehorayc04@users.noreply.github.com> Date: Mon, 20 Jul 2026 05:32:56 +0300 Subject: [PATCH 20/44] Remove: Nehoray.TranslationManager version 1.0.1 (#404647) --- .../Nehoray.TranslationManager.installer.yaml | 58 ------------------- ...horay.TranslationManager.locale.en-US.yaml | 39 ------------- .../1.0.1/Nehoray.TranslationManager.yaml | 8 --- 3 files changed, 105 deletions(-) delete mode 100644 manifests/n/Nehoray/TranslationManager/1.0.1/Nehoray.TranslationManager.installer.yaml delete mode 100644 manifests/n/Nehoray/TranslationManager/1.0.1/Nehoray.TranslationManager.locale.en-US.yaml delete mode 100644 manifests/n/Nehoray/TranslationManager/1.0.1/Nehoray.TranslationManager.yaml diff --git a/manifests/n/Nehoray/TranslationManager/1.0.1/Nehoray.TranslationManager.installer.yaml b/manifests/n/Nehoray/TranslationManager/1.0.1/Nehoray.TranslationManager.installer.yaml deleted file mode 100644 index dc72cd6a8f19c..0000000000000 --- a/manifests/n/Nehoray/TranslationManager/1.0.1/Nehoray.TranslationManager.installer.yaml +++ /dev/null @@ -1,58 +0,0 @@ -# Created with winget-manifest scaffold for Nehoray.TranslationManager 1.1.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: Nehoray.TranslationManager -PackageVersion: 1.0.1 -InstallerLocale: he-IL -Platform: - - Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Scope: machine -InstallModes: - - interactive - - silent - - silentWithProgress -InstallerSwitches: - # `/SILENT` (not /VERYSILENT) is deliberate. Inno Setup 6.7's - # RedirectionGuard handoff (level 2 SL5 → level 3 protected Setup) - # fails silently with /VERYSILENT in sandboxed contexts - the - # protected temp dir gets created with only `_setup64.tmp` + an - # empty `_isetup\` and the install never proceeds, leaving the - # install dir half-populated. Same root cause as the failure mode - # we hit during the launcher's in-app self-update. /SILENT keeps - # the small progress dialog visible, which is what RG's protected - # handoff needs to complete; the dialog is dismissed automatically - # at the end so the WinGet sandbox sees a clean exit. - # /SP- skips the "This will install..." pre-install dialog so the - # install still runs without any user clicks. - Silent: /SILENT /SUPPRESSMSGBOXES /NORESTART /SP- - SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /SP- - Custom: "" -UpgradeBehavior: install -# 0 is implicit; 3010 (success-needs-restart) and 1641 (restart-initiated) -# are Inno Setup's only documented non-zero success codes. /NORESTART -# converts 3010→0 in practice but we list them defensively. -InstallerSuccessCodes: - - 1641 - - 3010 -# Explicit ARP (Apps and Features) entry so WinGet's post-install -# verification knows exactly which Uninstall registry subkey to look -# for. Inno writes `_is1` under -# HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\ - the -# top-level `ProductCode` field is also kept for tooling that reads -# the older shape. -AppsAndFeaturesEntries: - - DisplayName: Translation Manager - DisplayVersion: 1.0.1 - Publisher: Nehoray - ProductCode: '{B0D4F2A7-3CCE-4A1A-9C44-7E1A1B6F0001}_is1' - InstallerType: inno -ProductCode: '{B0D4F2A7-3CCE-4A1A-9C44-7E1A1B6F0001}_is1' -ReleaseDate: 2026-07-02 -Installers: - - Architecture: x64 - InstallerUrl: https://github.com/nehorayc04/translation-launcher/releases/download/v1.0.1-beta/TranslationManager-Setup-1.0.1.exe - InstallerSha256: 3CE96B43C9E8EBBCD13C1DCB23E5FBA396B249CCA7CC7189842EC1A30BCFBE74 -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/n/Nehoray/TranslationManager/1.0.1/Nehoray.TranslationManager.locale.en-US.yaml b/manifests/n/Nehoray/TranslationManager/1.0.1/Nehoray.TranslationManager.locale.en-US.yaml deleted file mode 100644 index 7ca3d7b2a768c..0000000000000 --- a/manifests/n/Nehoray/TranslationManager/1.0.1/Nehoray.TranslationManager.locale.en-US.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Created with winget-manifest scaffold for Nehoray.TranslationManager 1.1.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: Nehoray.TranslationManager -PackageVersion: 1.0.1 -PackageLocale: en-US -Publisher: Nehoray -PublisherUrl: https://hebrew-translation-hub.com/ -PublisherSupportUrl: https://hebrew-translation-hub.com/ -Author: Nehoray Cohen -PackageName: Translation Manager -PackageUrl: https://hebrew-translation-hub.com/ -License: Proprietary -LicenseUrl: https://hebrew-translation-hub.com/ -Copyright: Copyright (C) 2026 Nehoray -CopyrightUrl: https://hebrew-translation-hub.com/ -ShortDescription: Hebrew translation launcher for AAA PC games - installs, manages, and updates community localizations from one app. -Description: |- - Translation Manager is a Hebrew-first Windows launcher that brings community - AAA-game translations into one curated catalog. Browse available titles, - download the matching translation archive, and apply it to your installed - game with one click. The app handles update checks, mod toggling, and - per-game purchase / DRM gating, and ships a built-in catalog for popular - titles such as Cyberpunk 2077, God of War Ragnarok, Red Dead Redemption, - Hogwarts Legacy, and more. -Moniker: translation-manager -Tags: - - hebrew - - translation - - localization - - gaming - - games - - launcher - - mods - - rtl -ReleaseNotesUrl: https://github.com/nehorayc04/translation-launcher/releases/tag/v1.0.1-beta -PurchaseUrl: https://hebrew-translation-hub.com/ -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/n/Nehoray/TranslationManager/1.0.1/Nehoray.TranslationManager.yaml b/manifests/n/Nehoray/TranslationManager/1.0.1/Nehoray.TranslationManager.yaml deleted file mode 100644 index 4f9829177789a..0000000000000 --- a/manifests/n/Nehoray/TranslationManager/1.0.1/Nehoray.TranslationManager.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with winget-manifest scaffold for Nehoray.TranslationManager 1.1.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: Nehoray.TranslationManager -PackageVersion: 1.0.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 From 410d01c916e82609e6ee64c97d1b10d319f7f448 Mon Sep 17 00:00:00 2001 From: farid5006 <127622652+farid5006@users.noreply.github.com> Date: Mon, 20 Jul 2026 06:00:19 +0300 Subject: [PATCH 21/44] MF.NexusShell version 4.0.0 (#404658) --- .../4.0.0/MF.NexusShell.installer.yaml | 17 ++++++++++ .../4.0.0/MF.NexusShell.locale.en-US.yaml | 31 +++++++++++++++++++ .../m/MF/NexusShell/4.0.0/MF.NexusShell.yaml | 8 +++++ 3 files changed, 56 insertions(+) create mode 100644 manifests/m/MF/NexusShell/4.0.0/MF.NexusShell.installer.yaml create mode 100644 manifests/m/MF/NexusShell/4.0.0/MF.NexusShell.locale.en-US.yaml create mode 100644 manifests/m/MF/NexusShell/4.0.0/MF.NexusShell.yaml diff --git a/manifests/m/MF/NexusShell/4.0.0/MF.NexusShell.installer.yaml b/manifests/m/MF/NexusShell/4.0.0/MF.NexusShell.installer.yaml new file mode 100644 index 0000000000000..bfbeb3395afdd --- /dev/null +++ b/manifests/m/MF/NexusShell/4.0.0/MF.NexusShell.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: MF.NexusShell +PackageVersion: 4.0.0 +InstallerLocale: en-US +MinimumOSVersion: 10.0.0.0 +InstallerType: exe +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Mohammedkhaled96/NexusShell/releases/download/v4.0.0/NexusShell_Silent_Setup.exe + InstallerSha256: cd2d7572c8a9dd9e945477d71efd00ddf99557d92d729caa5817766500f824b4 + InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/MF/NexusShell/4.0.0/MF.NexusShell.locale.en-US.yaml b/manifests/m/MF/NexusShell/4.0.0/MF.NexusShell.locale.en-US.yaml new file mode 100644 index 0000000000000..bb8545f19f084 --- /dev/null +++ b/manifests/m/MF/NexusShell/4.0.0/MF.NexusShell.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: MF.NexusShell +PackageVersion: 4.0.0 +PackageLocale: en-US +Publisher: Mohammed Khaled +PublisherUrl: https://github.com/Mohammedkhaled96 +PackageName: NexusShell +PackageUrl: https://github.com/Mohammedkhaled96/NexusShell +License: Freeware +ShortDescription: An accessible terminal environment with clean, screen-reader-friendly command output for NVDA and JAWS. +Tags: +- accessibility +- accessible-terminal +- blind +- cli +- command-line +- navigation +- screen-reader +- shell +- terminal +- visually-impaired +ReleaseNotes: |- + - Rebuilt terminal output engine: clean, accurate text with no duplication. + - Output presented as accessible command blocks (headings + live regions) for NVDA/JAWS. + - Automatic reduction of excess blank lines; reading-position-aware scrolling. + - Integrated AI assistance, HTTP API Tester, and SSH/alias/snippet/env/theme managers. +ReleaseNotesUrl: https://github.com/Mohammedkhaled96/NexusShell/releases/tag/v4.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/MF/NexusShell/4.0.0/MF.NexusShell.yaml b/manifests/m/MF/NexusShell/4.0.0/MF.NexusShell.yaml new file mode 100644 index 0000000000000..e95bc281e2ad6 --- /dev/null +++ b/manifests/m/MF/NexusShell/4.0.0/MF.NexusShell.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: MF.NexusShell +PackageVersion: 4.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From f82b0b389da858c88e846de5d32c27f354218e52 Mon Sep 17 00:00:00 2001 From: anirudhsevugan-bot Date: Sun, 19 Jul 2026 22:28:40 -0500 Subject: [PATCH 22/44] New version: AnirudhSevugan.SimpliPlay version 2.2.1.9 (#404384) Co-authored-by: Anirudh Sevugan --- .../AnirudhSevugan.SimpliPlay.installer.yaml | 27 +++++++++++++++++++ ...nirudhSevugan.SimpliPlay.locale.en-US.yaml | 26 ++++++++++++++++++ .../2.2.1.9/AnirudhSevugan.SimpliPlay.yaml | 8 ++++++ 3 files changed, 61 insertions(+) create mode 100644 manifests/a/AnirudhSevugan/SimpliPlay/2.2.1.9/AnirudhSevugan.SimpliPlay.installer.yaml create mode 100644 manifests/a/AnirudhSevugan/SimpliPlay/2.2.1.9/AnirudhSevugan.SimpliPlay.locale.en-US.yaml create mode 100644 manifests/a/AnirudhSevugan/SimpliPlay/2.2.1.9/AnirudhSevugan.SimpliPlay.yaml diff --git a/manifests/a/AnirudhSevugan/SimpliPlay/2.2.1.9/AnirudhSevugan.SimpliPlay.installer.yaml b/manifests/a/AnirudhSevugan/SimpliPlay/2.2.1.9/AnirudhSevugan.SimpliPlay.installer.yaml new file mode 100644 index 0000000000000..3a7cdfbf11e41 --- /dev/null +++ b/manifests/a/AnirudhSevugan/SimpliPlay/2.2.1.9/AnirudhSevugan.SimpliPlay.installer.yaml @@ -0,0 +1,27 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: AnirudhSevugan.SimpliPlay +PackageVersion: 2.2.1.9 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: uninstallPrevious +ProductCode: 8688b33b-d3b1-5ab9-bcc8-d97c319b56ef +ReleaseDate: 2026-07-18 +AppsAndFeaturesEntries: +- DisplayName: simpliplay-uninstaller + DisplayVersion: 2.2.3 + ProductCode: 8688b33b-d3b1-5ab9-bcc8-d97c319b56ef +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/A-Star100/simpliplay-desktop/releases/download/winget-11/SimpliPlay-x64-winget-setup.exe + InstallerSha256: 1E1472154882B336883DC414580D030A219D3F7B669A75B3F7733D819525D3AE +- Architecture: arm64 + InstallerUrl: https://github.com/A-Star100/simpliplay-desktop/releases/download/winget-11/SimpliPlay-arm64-winget-setup.exe + InstallerSha256: B85F11C84803D01282D1A02FE5424A57F0D383EFC49AFFD8C025929659484CD4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AnirudhSevugan/SimpliPlay/2.2.1.9/AnirudhSevugan.SimpliPlay.locale.en-US.yaml b/manifests/a/AnirudhSevugan/SimpliPlay/2.2.1.9/AnirudhSevugan.SimpliPlay.locale.en-US.yaml new file mode 100644 index 0000000000000..c05ab327cca34 --- /dev/null +++ b/manifests/a/AnirudhSevugan/SimpliPlay/2.2.1.9/AnirudhSevugan.SimpliPlay.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: AnirudhSevugan.SimpliPlay +PackageVersion: 2.2.1.9 +PackageLocale: en-US +Publisher: Anirudh Sevugan +PublisherUrl: https://github.com/A-Star100 +PublisherSupportUrl: https://github.com/A-Star100/simpliplay-desktop/issues +Author: Anirudh Sevugan +PackageName: SimpliPlay +PackageUrl: https://github.com/A-Star100/simpliplay-desktop +License: MIT +LicenseUrl: https://github.com/A-Star100/simpliplay-desktop/blob/HEAD/LICENSE +Copyright: Copyright © 2026 Anirudh Sevugan +ShortDescription: A simple, cross-platform media player. +Description: A simple cross-platform media player that lets you play and stream various formats and supports JavaScript to add extra features! +Moniker: simpliplay +Tags: +- crossplatform +- electronjs +- media +- media-player +ReleaseNotesUrl: https://github.com/A-Star100/simpliplay-desktop/releases/tag/release-2.2.1.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AnirudhSevugan/SimpliPlay/2.2.1.9/AnirudhSevugan.SimpliPlay.yaml b/manifests/a/AnirudhSevugan/SimpliPlay/2.2.1.9/AnirudhSevugan.SimpliPlay.yaml new file mode 100644 index 0000000000000..93441e100d88a --- /dev/null +++ b/manifests/a/AnirudhSevugan/SimpliPlay/2.2.1.9/AnirudhSevugan.SimpliPlay.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: AnirudhSevugan.SimpliPlay +PackageVersion: 2.2.1.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 88bd2ea6a56f55aa4751e577e974980846c2327a Mon Sep 17 00:00:00 2001 From: UnownBot Date: Sun, 19 Jul 2026 23:28:53 -0400 Subject: [PATCH 23/44] New version: Buildkite.CLI version 3.54.0 (#404655) --- .../CLI/3.54.0/Buildkite.CLI.installer.yaml | 23 ++++++++++ .../3.54.0/Buildkite.CLI.locale.en-US.yaml | 42 +++++++++++++++++++ .../b/Buildkite/CLI/3.54.0/Buildkite.CLI.yaml | 8 ++++ 3 files changed, 73 insertions(+) create mode 100644 manifests/b/Buildkite/CLI/3.54.0/Buildkite.CLI.installer.yaml create mode 100644 manifests/b/Buildkite/CLI/3.54.0/Buildkite.CLI.locale.en-US.yaml create mode 100644 manifests/b/Buildkite/CLI/3.54.0/Buildkite.CLI.yaml diff --git a/manifests/b/Buildkite/CLI/3.54.0/Buildkite.CLI.installer.yaml b/manifests/b/Buildkite/CLI/3.54.0/Buildkite.CLI.installer.yaml new file mode 100644 index 0000000000000..a24efbb9d4f83 --- /dev/null +++ b/manifests/b/Buildkite/CLI/3.54.0/Buildkite.CLI.installer.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Buildkite.CLI +PackageVersion: 3.54.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: bk.exe + PortableCommandAlias: bk +UpgradeBehavior: install +Commands: +- bk +ReleaseDate: 2026-07-19 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/buildkite/cli/releases/download/v3.54.0/bk_3.54.0_windows_amd64.zip + InstallerSha256: 8F690D5C03DA16AC7015F34432A8E45ABC5387EBF3CEA12AFFD1344BAB06D3E9 +- Architecture: arm64 + InstallerUrl: https://github.com/buildkite/cli/releases/download/v3.54.0/bk_3.54.0_windows_arm64.zip + InstallerSha256: 39DFEADAD31B39FA503A52254CDADFCBA6B73FBADC318D00B24B7D58D786B5FE +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/Buildkite/CLI/3.54.0/Buildkite.CLI.locale.en-US.yaml b/manifests/b/Buildkite/CLI/3.54.0/Buildkite.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..12be93c4c684d --- /dev/null +++ b/manifests/b/Buildkite/CLI/3.54.0/Buildkite.CLI.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Buildkite.CLI +PackageVersion: 3.54.0 +PackageLocale: en-US +Publisher: Buildkite Pty. Ltd. +PublisherUrl: https://buildkite.com/home/ +PublisherSupportUrl: https://forum.buildkite.community/ +Author: Buildkite Pty. Ltd. +PackageName: Buildkite CLI +PackageUrl: https://buildkite.com/docs/platform/cli +License: MIT +LicenseUrl: https://github.com/buildkite/cli/blob/HEAD/LICENSE.md +Copyright: Copyright (c) 2014-2026 Buildkite Pty Ltd +CopyrightUrl: https://github.com/buildkite/cli/blob/HEAD/LICENSE.md +ShortDescription: A command line interface for Buildkite. +Description: |- + The Buildkite CLI is a command-line interface (CLI) tool for interacting directly with the Buildkite platform itself. This tool provides command line/terminal access to work with a subset of the Buildkite platform's features, as you normally would through its web interface. + + Using the Buildkite CLI, you can manage Buildkite agents and their configuration, work with a Buildkite pipeline's builds, control job execution, and manipulate its artifacts, along with several other actions. +Moniker: buildkite-cli +Tags: +- buildkite +- cd +- ci +- ci-cd +- continuous-integration +ReleaseNotes: |- + Changelog + + Added + - ca734c6: Add job key filter flags (@mitchbne) + + Internal + - 5003cd6: Use go-buildkite v5.7.0 (@mitchbne) +ReleaseNotesUrl: https://github.com/buildkite/cli/releases/tag/v3.54.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://buildkite.com/docs/platform/cli +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Buildkite/CLI/3.54.0/Buildkite.CLI.yaml b/manifests/b/Buildkite/CLI/3.54.0/Buildkite.CLI.yaml new file mode 100644 index 0000000000000..d807e3bec6811 --- /dev/null +++ b/manifests/b/Buildkite/CLI/3.54.0/Buildkite.CLI.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Buildkite.CLI +PackageVersion: 3.54.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 87f95784af986553666734a0edcf84e5043c412c Mon Sep 17 00:00:00 2001 From: UnownBot Date: Sun, 19 Jul 2026 23:29:07 -0400 Subject: [PATCH 24/44] New version: Microsoft.SafetyScanner version 1.455.229.0 (#404656) --- .../Microsoft.SafetyScanner.installer.yaml | 18 +++++++++++++++ .../Microsoft.SafetyScanner.locale.en-US.yaml | 23 +++++++++++++++++++ .../1.455.229.0/Microsoft.SafetyScanner.yaml | 8 +++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/m/Microsoft/SafetyScanner/1.455.229.0/Microsoft.SafetyScanner.installer.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.455.229.0/Microsoft.SafetyScanner.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.455.229.0/Microsoft.SafetyScanner.yaml diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.229.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.229.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 0000000000000..b8cdde3b4b712 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.229.0/Microsoft.SafetyScanner.installer.yaml @@ -0,0 +1,18 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.229.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-07-19 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.229.0&arch=x86 + InstallerSha256: 35454C57DE6A1B4693C3699654659FDF55285F9D92C0A6FBC3459E695AF89755 +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.229.0&arch=amd64 + InstallerSha256: 6FFFFAB0751C35D30BFE5BEDFCF80327CAF33DA583F11A0A2584A31EBF905D6E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.229.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.229.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 0000000000000..ea64a2839e52d --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.229.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.229.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft Safety Scanner +PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download +License: Proprietary +Copyright: © Microsoft Corporation. All rights reserved. +ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. +Description: |- + A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. + + The tool uses the same security intelligence update definitions as (among others) Microsoft Defender Antivirus. Safety Scanner does however not have an internal definition update checker, but does get app updates every 3-4 hours. Thus, the Winget package may lag some days behind Windows Update + Microsoft Defender Antivirus. +Tags: +- microsoft-defender-antivirus +- microsoft-safety-scanner +- msert +- windows-security +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.229.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.229.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 0000000000000..7e24a22f1b051 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.229.0/Microsoft.SafetyScanner.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.229.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 1d1ee7a61d483daba24c7397cf1d4962315f2a9a Mon Sep 17 00:00:00 2001 From: UnownBot Date: Sun, 19 Jul 2026 23:29:20 -0400 Subject: [PATCH 25/44] New version: dpaulat.supercell-wx version 0.6.1 (#404657) --- .../0.6.1/dpaulat.supercell-wx.installer.yaml | 34 +++++++++++++ .../dpaulat.supercell-wx.locale.en-US.yaml | 50 +++++++++++++++++++ .../0.6.1/dpaulat.supercell-wx.yaml | 8 +++ 3 files changed, 92 insertions(+) create mode 100644 manifests/d/dpaulat/supercell-wx/0.6.1/dpaulat.supercell-wx.installer.yaml create mode 100644 manifests/d/dpaulat/supercell-wx/0.6.1/dpaulat.supercell-wx.locale.en-US.yaml create mode 100644 manifests/d/dpaulat/supercell-wx/0.6.1/dpaulat.supercell-wx.yaml diff --git a/manifests/d/dpaulat/supercell-wx/0.6.1/dpaulat.supercell-wx.installer.yaml b/manifests/d/dpaulat/supercell-wx/0.6.1/dpaulat.supercell-wx.installer.yaml new file mode 100644 index 0000000000000..3a8f7e8fe8a69 --- /dev/null +++ b/manifests/d/dpaulat/supercell-wx/0.6.1/dpaulat.supercell-wx.installer.yaml @@ -0,0 +1,34 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: dpaulat.supercell-wx +PackageVersion: 0.6.1 +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-07-19 +Installers: +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/dpaulat/supercell-wx/releases/download/v0.6.1-release/supercell-wx-v0.6.1-windows-x64.msi + InstallerSha256: EE1F57A298FD5F06F2737C350F5CA827AFEAC84EA877D9B4795AB037BB4CB500 + InstallerSwitches: + InstallLocation: INSTALL_ROOT="" + ProductCode: '{10C4CF7A-440A-4F14-B9AD-C2C6CCCAE597}' + AppsAndFeaturesEntries: + - Publisher: Dan Paulat + ProductCode: '{10C4CF7A-440A-4F14-B9AD-C2C6CCCAE597}' + UpgradeCode: '{36AD0F51-4D4F-4B5D-AB61-94C6B4E4FE1C}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Supercell Wx' +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: bin/supercell-wx.exe + InstallerUrl: https://github.com/dpaulat/supercell-wx/releases/download/v0.6.1-release/supercell-wx-v0.6.1-windows-x64.zip + InstallerSha256: 3DBBB143BCBBF5535FBB09E5DB01A50E07A5CF2AD3CC79E40BC103F393BAA2AA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/dpaulat/supercell-wx/0.6.1/dpaulat.supercell-wx.locale.en-US.yaml b/manifests/d/dpaulat/supercell-wx/0.6.1/dpaulat.supercell-wx.locale.en-US.yaml new file mode 100644 index 0000000000000..b6dcd17c679a2 --- /dev/null +++ b/manifests/d/dpaulat/supercell-wx/0.6.1/dpaulat.supercell-wx.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: dpaulat.supercell-wx +PackageVersion: 0.6.1 +PackageLocale: en-US +Publisher: Dan Paulat (dpaulat) +PublisherUrl: https://github.com/dpaulat +PublisherSupportUrl: https://github.com/dpaulat/supercell-wx/issues +PackageName: Supercell Wx +PackageUrl: https://github.com/dpaulat/supercell-wx +License: MIT +LicenseUrl: https://github.com/dpaulat/supercell-wx/blob/HEAD/LICENSE.txt +Copyright: Copyright (c) Dan Paulat +ShortDescription: Free and open source advanced weather radar viewer. +Description: Supercell Wx is a free, open source application to visualize live and archive NEXRAD Level 2 and Level 3 data, and severe weather alerts. It displays continuously updating weather data on top of a responsive map, providing the capability to monitor weather events using reflectivity, velocity, and other products. +Moniker: supercell +Tags: +- radar +- weather +ReleaseNotes: |- + Supercell Wx v0.6.1 + v0.6.1 is primarily a maintenance release: stability fixes, provider reliability, and distribution polish. There are no major new UI features. The main user-facing addition is a hosted Flatpak remote for Linux. + + 📦 Flatpak Remote (Linux) + Linux users can now install and update Supercell Wx from a hosted Flatpak remote instead of downloading a one-shot .flatpak bundle each release. After adding the remote, updates are handled with flatpak update. + See the Flatpak setup guide for install instructions, including stable and nightly remotes. + — @dpaulat (#670) + + 📡 Radar Site & Data Providers + - TPBI → TDJT rename — Support for the West Palm Beach radar ID transition on August 3, 2026, with seamless data handoff across the cutover — @dpaulat (#668) + - Alternate HTTP-based providers — Foundation for additional radar data sources via HTTP/ONDAS configuration and CLI options for alternate Level 2/Level 3 endpoints — @dpaulat (#662) + + Bug Fixes + - Fix Level 2 coordinate computation for incomplete or malformed radar data (#664) — @dpaulat + - Fix crash when destroying radar product views (#667) — @dpaulat + - Fix provider refresh loops, empty listings, and related data-loading edge cases (#669) — @dpaulat + - Treat ONDAS config redirects as errors instead of a successful load (#674) — @dpaulat + - Reintroduce Ubuntu 22.04 GCC 11 build for x64 (#649) — @dpaulat + + Maintenance + - Extract ProviderManager from RadarProductManager (#642) — @F1r3w477 + - Extract RadarCoordinateTable from RadarProductManager (#644) — @F1r3w477 + Thanks to @dpaulat and @F1r3w477 for the changes in this release. + Built from: + - https://github.com/dpaulat/supercell-wx/actions/runs/29671238736 + - https://github.com/dpaulat/supercell-wx/actions/runs/29671261755 +ReleaseNotesUrl: https://github.com/dpaulat/supercell-wx/releases/tag/v0.6.1-release +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/dpaulat/supercell-wx/0.6.1/dpaulat.supercell-wx.yaml b/manifests/d/dpaulat/supercell-wx/0.6.1/dpaulat.supercell-wx.yaml new file mode 100644 index 0000000000000..54fdc67fd70a5 --- /dev/null +++ b/manifests/d/dpaulat/supercell-wx/0.6.1/dpaulat.supercell-wx.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: dpaulat.supercell-wx +PackageVersion: 0.6.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 563730de4a13df593da2f0c67b70fb7f302001d2 Mon Sep 17 00:00:00 2001 From: August <168591776+wolfgangwarehaus@users.noreply.github.com> Date: Sun, 19 Jul 2026 23:29:31 -0400 Subject: [PATCH 26/44] New version: wolfgangwarehaus.jellytoast version 0.2.1 (#404662) --- ...wolfgangwarehaus.jellytoast.installer.yaml | 25 +++++++++ ...fgangwarehaus.jellytoast.locale.en-US.yaml | 54 +++++++++++++++++++ .../0.2.1/wolfgangwarehaus.jellytoast.yaml | 8 +++ 3 files changed, 87 insertions(+) create mode 100644 manifests/w/wolfgangwarehaus/jellytoast/0.2.1/wolfgangwarehaus.jellytoast.installer.yaml create mode 100644 manifests/w/wolfgangwarehaus/jellytoast/0.2.1/wolfgangwarehaus.jellytoast.locale.en-US.yaml create mode 100644 manifests/w/wolfgangwarehaus/jellytoast/0.2.1/wolfgangwarehaus.jellytoast.yaml diff --git a/manifests/w/wolfgangwarehaus/jellytoast/0.2.1/wolfgangwarehaus.jellytoast.installer.yaml b/manifests/w/wolfgangwarehaus/jellytoast/0.2.1/wolfgangwarehaus.jellytoast.installer.yaml new file mode 100644 index 0000000000000..36f11fd7323f2 --- /dev/null +++ b/manifests/w/wolfgangwarehaus/jellytoast/0.2.1/wolfgangwarehaus.jellytoast.installer.yaml @@ -0,0 +1,25 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: wolfgangwarehaus.jellytoast +PackageVersion: 0.2.1 +InstallerLocale: en-US +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /CURRENTUSER +UpgradeBehavior: install +ProductCode: '{9720458D-B2BB-45E0-80B8-085E227A8D79}_is1' +ReleaseDate: 2026-07-14 +AppsAndFeaturesEntries: +- ProductCode: '{9720458D-B2BB-45E0-80B8-085E227A8D79}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/wolfgangwarehaus/jellytoast/releases/download/v0.2.1/jellytoast-0.2.1-windows-setup.exe + InstallerSha256: 128C627C0DE64A4A86AAF0CAE87A331AD7B1EFD1366CBF2818A1E0451D0360CB +- Architecture: arm64 + InstallerUrl: https://github.com/wolfgangwarehaus/jellytoast/releases/download/v0.2.1/jellytoast-0.2.1-windows-setup.exe + InstallerSha256: 128C627C0DE64A4A86AAF0CAE87A331AD7B1EFD1366CBF2818A1E0451D0360CB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/wolfgangwarehaus/jellytoast/0.2.1/wolfgangwarehaus.jellytoast.locale.en-US.yaml b/manifests/w/wolfgangwarehaus/jellytoast/0.2.1/wolfgangwarehaus.jellytoast.locale.en-US.yaml new file mode 100644 index 0000000000000..6ada8374fb5f9 --- /dev/null +++ b/manifests/w/wolfgangwarehaus/jellytoast/0.2.1/wolfgangwarehaus.jellytoast.locale.en-US.yaml @@ -0,0 +1,54 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: wolfgangwarehaus.jellytoast +PackageVersion: 0.2.1 +PackageLocale: en-US +Publisher: wolfgangwarehaus +PublisherUrl: https://github.com/wolfgangwarehaus +PublisherSupportUrl: https://github.com/wolfgangwarehaus/jellytoast/issues +PackageName: jellytoast +PackageUrl: https://github.com/wolfgangwarehaus/jellytoast +License: GPL-2.0 +LicenseUrl: https://github.com/wolfgangwarehaus/jellytoast/blob/HEAD/LICENSE +ShortDescription: A desktop music player for Jellyfin and Navidrome servers +Description: |- + jellytoast is a desktop music player for Jellyfin, Navidrome and other + Subsonic-compatible servers: bit-perfect playback via mpv, + offline downloads, Chromecast/AirPlay/DLNA/Sonos/Snapcast casting, + system media keys, scrobbling, smart playlists, and a frosted-glass UI. +Moniker: jellytoast +Tags: +- audio-player +- chromecast +- jellyfin +- music +- navidrome +- subsonic +ReleaseNotes: |- + - Visualizer stops eating CPU when you look away. The audio visualizer kept + running in the background after you switched back to lyrics or left the + now-playing screen — burning battery for nothing. It now runs only while it's + actually on screen. + - Big libraries: album art keeps loading instead of stalling. On large + collections served by a busy server, cover art could load a handful then stop + (or blank out) — the server was choking on resizing every thumbnail. The app + now notices a slow server and fetches the original art instead, so the grid + fills in reliably. + - Flatpak: no more see-through windows when blur is off. On desktops where + KDE's blur effect isn't running (hi, Steam Deck), the Flatpak painted clear + glass over an unblurred desktop. It now detects that properly and falls back + to the regular frosted look. + - HTTPS servers play again on Flatpak and the Mac App Store build. The + audio engine in those two builds shipped without TLS, so a server behind + https (reverse proxy, Tailscale, most remote setups) would browse fine but + play nothing — silently. Both builds now speak https. + - Flatpak: "Launch at login" actually launches at login. The toggle wrote + a startup entry pointing inside the sandbox, which the desktop couldn't run. + It now writes the proper flatpak launch command. +ReleaseNotesUrl: https://github.com/wolfgangwarehaus/jellytoast/releases/tag/v0.2.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/wolfgangwarehaus/jellytoast/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/wolfgangwarehaus/jellytoast/0.2.1/wolfgangwarehaus.jellytoast.yaml b/manifests/w/wolfgangwarehaus/jellytoast/0.2.1/wolfgangwarehaus.jellytoast.yaml new file mode 100644 index 0000000000000..1ddaf086642c1 --- /dev/null +++ b/manifests/w/wolfgangwarehaus/jellytoast/0.2.1/wolfgangwarehaus.jellytoast.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: wolfgangwarehaus.jellytoast +PackageVersion: 0.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From c03e08b0aa1d6d1d0b96d37c26548c8b11b523a4 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Sun, 19 Jul 2026 20:29:43 -0700 Subject: [PATCH 27/44] Automatic update of Microsoft.AdvertisingEditor from 11.31.22262.15683 to 11.31.22281.58767 (#404663) --- ...Microsoft.AdvertisingEditor.installer.yaml | 23 +++++++++++++++++++ ...rosoft.AdvertisingEditor.locale.en-US.yaml | 18 +++++++++++++++ .../Microsoft.AdvertisingEditor.yaml | 8 +++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/m/Microsoft/AdvertisingEditor/11.31.22281.58767/Microsoft.AdvertisingEditor.installer.yaml create mode 100644 manifests/m/Microsoft/AdvertisingEditor/11.31.22281.58767/Microsoft.AdvertisingEditor.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/AdvertisingEditor/11.31.22281.58767/Microsoft.AdvertisingEditor.yaml diff --git a/manifests/m/Microsoft/AdvertisingEditor/11.31.22281.58767/Microsoft.AdvertisingEditor.installer.yaml b/manifests/m/Microsoft/AdvertisingEditor/11.31.22281.58767/Microsoft.AdvertisingEditor.installer.yaml new file mode 100644 index 0000000000000..81bc9ec57d794 --- /dev/null +++ b/manifests/m/Microsoft/AdvertisingEditor/11.31.22281.58767/Microsoft.AdvertisingEditor.installer.yaml @@ -0,0 +1,23 @@ +# Automatically updated by the winget bot at 2026/Jul/20 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.AdvertisingEditor +PackageVersion: 11.31.22281.58767 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent +UpgradeBehavior: install +ReleaseDate: 2026-04-29 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\MicrosoftAdvertisingEditor' +Installers: +- Architecture: x64 + InstallerUrl: https://prod.editor.ads.microsoft.com/download/production-pc/c/MicrosoftAdvertisingEditor.exe + InstallerSha256: ED223753C9AF68D1909D1A517ACBBE5C84B8831EB2292CBA93FD39C66D27FD39 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/AdvertisingEditor/11.31.22281.58767/Microsoft.AdvertisingEditor.locale.en-US.yaml b/manifests/m/Microsoft/AdvertisingEditor/11.31.22281.58767/Microsoft.AdvertisingEditor.locale.en-US.yaml new file mode 100644 index 0000000000000..f579f3c8a834a --- /dev/null +++ b/manifests/m/Microsoft/AdvertisingEditor/11.31.22281.58767/Microsoft.AdvertisingEditor.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Automatically updated by the winget bot at 2026/Jul/20 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.AdvertisingEditor +PackageVersion: 11.31.22281.58767 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://help.ads.microsoft.com/ +Author: Microsoft Corporation +PackageName: Microsoft Advertising Editor +PackageUrl: https://about.ads.microsoft.com/en/tools/productivity/microsoft-advertising-editor +License: Proprietary +LicenseUrl: https://www.microsoft.com/en-us/legal/terms-of-use +Copyright: Copyright (c) Microsoft Corporation +ShortDescription: Manage Microsoft Advertising campaigns in bulk from a desktop app, online or offline. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/AdvertisingEditor/11.31.22281.58767/Microsoft.AdvertisingEditor.yaml b/manifests/m/Microsoft/AdvertisingEditor/11.31.22281.58767/Microsoft.AdvertisingEditor.yaml new file mode 100644 index 0000000000000..ba2e35fc53626 --- /dev/null +++ b/manifests/m/Microsoft/AdvertisingEditor/11.31.22281.58767/Microsoft.AdvertisingEditor.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/Jul/20 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.AdvertisingEditor +PackageVersion: 11.31.22281.58767 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From a29b9239aec3836f1040f9ca7d8bb8fd22bb2f07 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Sun, 19 Jul 2026 20:29:55 -0700 Subject: [PATCH 28/44] Automatic update of Neovim.Neovim.Nightly 0.13.0 (#404664) --- .../Nightly/0.13.0/Neovim.Neovim.Nightly.installer.yaml | 4 ++-- .../Nightly/0.13.0/Neovim.Neovim.Nightly.locale.en-US.yaml | 2 +- .../n/Neovim/Neovim/Nightly/0.13.0/Neovim.Neovim.Nightly.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/manifests/n/Neovim/Neovim/Nightly/0.13.0/Neovim.Neovim.Nightly.installer.yaml b/manifests/n/Neovim/Neovim/Nightly/0.13.0/Neovim.Neovim.Nightly.installer.yaml index 2f78c7f9baad1..751cca89206a7 100644 --- a/manifests/n/Neovim/Neovim/Nightly/0.13.0/Neovim.Neovim.Nightly.installer.yaml +++ b/manifests/n/Neovim/Neovim/Nightly/0.13.0/Neovim.Neovim.Nightly.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2026/Jul/11 +# Automatically updated by the winget bot at 2026/Jul/20 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Neovim.Neovim.Nightly @@ -17,6 +17,6 @@ InstallationMetadata: Installers: - Architecture: x64 InstallerUrl: https://github.com/neovim/neovim/releases/download/nightly/nvim-win64.msi - InstallerSha256: 2823226B35E5921ADB1FAFE00D7AA785C33B03BB428843DF99949D138ADC847F + InstallerSha256: 23BF7102C7E22A3ADB6A6E35E9DF6AD8057125BEE1CECCCB5860B120215F5712 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/n/Neovim/Neovim/Nightly/0.13.0/Neovim.Neovim.Nightly.locale.en-US.yaml b/manifests/n/Neovim/Neovim/Nightly/0.13.0/Neovim.Neovim.Nightly.locale.en-US.yaml index 4c091870b14cf..546f12d938a51 100644 --- a/manifests/n/Neovim/Neovim/Nightly/0.13.0/Neovim.Neovim.Nightly.locale.en-US.yaml +++ b/manifests/n/Neovim/Neovim/Nightly/0.13.0/Neovim.Neovim.Nightly.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2026/Jul/11 +# Automatically updated by the winget bot at 2026/Jul/20 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Neovim.Neovim.Nightly diff --git a/manifests/n/Neovim/Neovim/Nightly/0.13.0/Neovim.Neovim.Nightly.yaml b/manifests/n/Neovim/Neovim/Nightly/0.13.0/Neovim.Neovim.Nightly.yaml index 942b4691185bf..a180487b6e3f3 100644 --- a/manifests/n/Neovim/Neovim/Nightly/0.13.0/Neovim.Neovim.Nightly.yaml +++ b/manifests/n/Neovim/Neovim/Nightly/0.13.0/Neovim.Neovim.Nightly.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2026/Jul/11 +# Automatically updated by the winget bot at 2026/Jul/20 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Neovim.Neovim.Nightly From d30460264bb2a08a1513ccd4648f2ed578c78de7 Mon Sep 17 00:00:00 2001 From: securityronin-bot Date: Mon, 20 Jul 2026 11:30:09 +0800 Subject: [PATCH 29/44] New version: SecurityRonin.timeglyph version 0.7.1 (#404665) --- .../SecurityRonin.timeglyph.installer.yaml | 17 +++++++++++ .../SecurityRonin.timeglyph.locale.en-US.yaml | 28 +++++++++++++++++++ .../0.7.1/SecurityRonin.timeglyph.yaml | 8 ++++++ 3 files changed, 53 insertions(+) create mode 100644 manifests/s/SecurityRonin/timeglyph/0.7.1/SecurityRonin.timeglyph.installer.yaml create mode 100644 manifests/s/SecurityRonin/timeglyph/0.7.1/SecurityRonin.timeglyph.locale.en-US.yaml create mode 100644 manifests/s/SecurityRonin/timeglyph/0.7.1/SecurityRonin.timeglyph.yaml diff --git a/manifests/s/SecurityRonin/timeglyph/0.7.1/SecurityRonin.timeglyph.installer.yaml b/manifests/s/SecurityRonin/timeglyph/0.7.1/SecurityRonin.timeglyph.installer.yaml new file mode 100644 index 0000000000000..998631ffa28c0 --- /dev/null +++ b/manifests/s/SecurityRonin/timeglyph/0.7.1/SecurityRonin.timeglyph.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SecurityRonin.timeglyph +PackageVersion: 0.7.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: timeglyph.exe + PortableCommandAlias: timeglyph +ReleaseDate: 2026-07-20 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/SecurityRonin/timeglyph/releases/download/v0.7.1/timeglyph-0.7.1-x86_64-pc-windows-msvc.zip + InstallerSha256: 4A4B3E26E695E4639F4819ABC004B6E4EBEE0E3E57BBF5741C1E61659BDBAE0F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SecurityRonin/timeglyph/0.7.1/SecurityRonin.timeglyph.locale.en-US.yaml b/manifests/s/SecurityRonin/timeglyph/0.7.1/SecurityRonin.timeglyph.locale.en-US.yaml new file mode 100644 index 0000000000000..f2cb4e0eabe43 --- /dev/null +++ b/manifests/s/SecurityRonin/timeglyph/0.7.1/SecurityRonin.timeglyph.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SecurityRonin.timeglyph +PackageVersion: 0.7.1 +PackageLocale: en-US +Publisher: Security Ronin Ltd +PublisherUrl: https://github.com/SecurityRonin +PublisherSupportUrl: https://github.com/SecurityRonin/timeglyph/issues +Author: Albert Hui +PackageName: timeglyph +PackageUrl: https://github.com/SecurityRonin/timeglyph +License: Apache-2.0 +LicenseUrl: https://github.com/SecurityRonin/timeglyph/blob/HEAD/LICENSE +Copyright: © 2026 Security Ronin Ltd +ShortDescription: Forensic timestamp decipherment - scored, cited, ambiguity-first +Description: timeglyph decodes, encodes, and identifies the many ways systems inscribe time, reporting every plausible interpretation ranked and scored with its assumptions — never a single "detected" answer. +Moniker: timeglyph +Tags: +- datetime +- dfir +- epoch +- forensics +- timestamp +ReleaseNotes: 'Full Changelog: v0.7.0...v0.7.1' +ReleaseNotesUrl: https://github.com/SecurityRonin/timeglyph/releases/tag/v0.7.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SecurityRonin/timeglyph/0.7.1/SecurityRonin.timeglyph.yaml b/manifests/s/SecurityRonin/timeglyph/0.7.1/SecurityRonin.timeglyph.yaml new file mode 100644 index 0000000000000..b4d00df337835 --- /dev/null +++ b/manifests/s/SecurityRonin/timeglyph/0.7.1/SecurityRonin.timeglyph.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: SecurityRonin.timeglyph +PackageVersion: 0.7.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From ba8e916a932bdc51e885d69a950591cdbcc51f38 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Sun, 19 Jul 2026 20:30:20 -0700 Subject: [PATCH 30/44] Automatic update of Microsoft.AdvertisingEditor from 11.31.22272.44501 to 11.31.22281.58767 (#404666) From 0e490ac817e646447cbb93ab8ab9c081bbb28e00 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Sun, 19 Jul 2026 20:30:31 -0700 Subject: [PATCH 31/44] Automatic deletion of Newforma.Konekt.Addin.Autodesk 1.160.0 (#404669) --- ...forma.Konekt.Addin.Autodesk.installer.yaml | 16 ------------- ...ma.Konekt.Addin.Autodesk.locale.en-US.yaml | 24 ------------------- ...ma.Konekt.Addin.Autodesk.locale.zh-CN.yaml | 14 ----------- .../Newforma.Konekt.Addin.Autodesk.yaml | 8 ------- 4 files changed, 62 deletions(-) delete mode 100644 manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.installer.yaml delete mode 100644 manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.locale.en-US.yaml delete mode 100644 manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.locale.zh-CN.yaml delete mode 100644 manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.yaml diff --git a/manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.installer.yaml b/manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.installer.yaml deleted file mode 100644 index 529f1ca7c4229..0000000000000 --- a/manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Newforma.Konekt.Addin.Autodesk -PackageVersion: 1.160.0 -InstallerType: wix -Scope: machine -ProductCode: '{8C683720-BE6A-40ED-8700-7D2E9BFAF881}' -AppsAndFeaturesEntries: -- UpgradeCode: '{DE5AD016-2358-484A-A948-611F99E33EE3}' -Installers: -- Architecture: x64 - InstallerUrl: https://cdn.bimtrackapp.co/staticcontentcontainer/addins/autodesk/Newforma%20Konekt%20Autodesk%20Addins.msi - InstallerSha256: BC65A9352A6D0FBDE333D364BB00EEBD4D8C7948883A9CA7303A781287D63C39 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.locale.en-US.yaml b/manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.locale.en-US.yaml deleted file mode 100644 index 8edd330d0ada6..0000000000000 --- a/manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Newforma.Konekt.Addin.Autodesk -PackageVersion: 1.160.0 -PackageLocale: en-US -Publisher: Newforma -PublisherUrl: https://www.newforma.com/ -PublisherSupportUrl: https://help.newforma.com/ -PrivacyUrl: https://www.newforma.com/privacy-policy/ -Author: Newforma, Inc. -PackageName: Newforma Konekt Add-ins for Autodesk products -PackageUrl: https://www.newforma.com/resources/app-marketplace/ -License: Proprietary -LicenseUrl: https://www.newforma.com/terms-and-conditions-for-newforma-konekt/ -Copyright: © 2026 Newforma, Inc. -CopyrightUrl: https://www.newforma.com/terms-and-conditions-for-newforma-konekt/ -ShortDescription: Newforma Konekt Add-ins for Autodesk products -Description: |- - Simplify your communication workflow. Newforma Konekt centralizes communications across platforms and brings transparency and efficiency to your projects. No more time wasted searching through emails and models to find and resolve the issues that matter. - Keep track of issues across different teams and projects. Transpose issues onto different documents in the latest version. Stay up-to-date with issue resolution progress, no matter what document or design environment you’re working in. - Track issues found during technical coordination until they’re solved. Log issues on the fly during design review and/or coordination meetings, view complex mechanical issues in 3D in Newforma Konekt’s web viewer, and share them with team members who can resolve them directly in their authoring software. -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.locale.zh-CN.yaml b/manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.locale.zh-CN.yaml deleted file mode 100644 index 6b957002b61ed..0000000000000 --- a/manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.locale.zh-CN.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: Newforma.Konekt.Addin.Autodesk -PackageVersion: 1.160.0 -PackageLocale: zh-CN -License: 专有软件 -ShortDescription: 适用于 Autodesk 产品的 Newforma Konekt 插件 -Description: |- - 简化您的沟通流程。Newforma Konekt 集中管理跨平台通讯,为项目带来透明度和高效性。无需再耗费时间在邮件和模型中搜寻关键问题并解决。 - 跨团队、跨项目追踪问题。将问题映射至最新版本的不同文档中。无论您使用何种文档或设计环境,都能实时掌握问题解决进展。 - 全程跟踪技术协调中发现的问题直至解决。在设计评审或协调会议中即时记录问题,通过 Newforma Konekt 网页浏览器三维查看复杂机械问题,并直接分享给能在原创作软件中解决问题的团队成员。 -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.yaml b/manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.yaml deleted file mode 100644 index a376307724acd..0000000000000 --- a/manifests/n/Newforma/Konekt/Addin/Autodesk/1.160.0/Newforma.Konekt.Addin.Autodesk.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: Newforma.Konekt.Addin.Autodesk -PackageVersion: 1.160.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 034d884e61f128d41807810ac5973b5b17106045 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Sun, 19 Jul 2026 20:30:42 -0700 Subject: [PATCH 32/44] Automatic deletion of payhereinc.PayhereSeller 3.4.4 (#404673) --- .../payhereinc.PayhereSeller.installer.yaml | 15 --------------- .../payhereinc.PayhereSeller.locale.en-US.yaml | 16 ---------------- .../3.4.4/payhereinc.PayhereSeller.yaml | 8 -------- 3 files changed, 39 deletions(-) delete mode 100644 manifests/p/payhereinc/PayhereSeller/3.4.4/payhereinc.PayhereSeller.installer.yaml delete mode 100644 manifests/p/payhereinc/PayhereSeller/3.4.4/payhereinc.PayhereSeller.locale.en-US.yaml delete mode 100644 manifests/p/payhereinc/PayhereSeller/3.4.4/payhereinc.PayhereSeller.yaml diff --git a/manifests/p/payhereinc/PayhereSeller/3.4.4/payhereinc.PayhereSeller.installer.yaml b/manifests/p/payhereinc/PayhereSeller/3.4.4/payhereinc.PayhereSeller.installer.yaml deleted file mode 100644 index a44658d477f4b..0000000000000 --- a/manifests/p/payhereinc/PayhereSeller/3.4.4/payhereinc.PayhereSeller.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jul/11 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: payhereinc.PayhereSeller -PackageVersion: 3.4.4 -InstallerType: nullsoft -Installers: -- Architecture: x86 - InstallerUrl: https://desktop.payhere.in/windows/Payhere-Seller.exe - InstallerSha256: A785133E90E2B392883F3606B1263D65C1DDEEA21237991974D317DD240B50E7 - AppsAndFeaturesEntries: - - Publisher: payhere inc. - ProductCode: 2778135c-49fa-5035-8784-a1c823cb0e8d -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/p/payhereinc/PayhereSeller/3.4.4/payhereinc.PayhereSeller.locale.en-US.yaml b/manifests/p/payhereinc/PayhereSeller/3.4.4/payhereinc.PayhereSeller.locale.en-US.yaml deleted file mode 100644 index a46388a9de428..0000000000000 --- a/manifests/p/payhereinc/PayhereSeller/3.4.4/payhereinc.PayhereSeller.locale.en-US.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jul/11 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: payhereinc.PayhereSeller -PackageVersion: 3.4.4 -PackageLocale: en-US -Publisher: payhere inc. -PublisherUrl: https://payhere.in/ -PrivacyUrl: https://payhere.in/policy/privacy/ -PackageName: Payhere Seller -License: Proprietary -Copyright: Copyright © 2024 payhere inc. -ShortDescription: Payhere Seller for desktop -Moniker: payhere-seller -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/p/payhereinc/PayhereSeller/3.4.4/payhereinc.PayhereSeller.yaml b/manifests/p/payhereinc/PayhereSeller/3.4.4/payhereinc.PayhereSeller.yaml deleted file mode 100644 index c5f05c6f0db3f..0000000000000 --- a/manifests/p/payhereinc/PayhereSeller/3.4.4/payhereinc.PayhereSeller.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jul/11 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: payhereinc.PayhereSeller -PackageVersion: 3.4.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 08a9606245f83d226e2b2982cc4e8fd57168d295 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Mon, 20 Jul 2026 11:49:56 +0800 Subject: [PATCH 33/44] New version: BinaryFortress.DisplayFusion version 12.1.0.0 (#404659) --- ...inaryFortress.DisplayFusion.installer.yaml | 21 +++++ ...ryFortress.DisplayFusion.locale.en-US.yaml | 79 +++++++++++++++++++ ...ryFortress.DisplayFusion.locale.zh-CN.yaml | 30 +++++++ .../BinaryFortress.DisplayFusion.yaml | 8 ++ 4 files changed, 138 insertions(+) create mode 100644 manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.installer.yaml create mode 100644 manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.locale.en-US.yaml create mode 100644 manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.locale.zh-CN.yaml create mode 100644 manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.yaml diff --git a/manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.installer.yaml b/manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.installer.yaml new file mode 100644 index 0000000000000..2211ccf704f73 --- /dev/null +++ b/manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: BinaryFortress.DisplayFusion +PackageVersion: 12.1.0.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- displayfusion +ProductCode: B076073A-5527-4f4f-B46B-B10692277DA2_is1 +ReleaseDate: 2026-07-20 +Installers: +- Architecture: x86 + InstallerUrl: https://binaryfortressdownloads.com/Download/BFSFiles/101/DisplayFusionSetup-12.1.exe + InstallerSha256: 4BAB79DF52FA06D13CBB416E8A371A2EF049674800DF5ED383190263AB5CA499 +- Architecture: x64 + InstallerUrl: https://binaryfortressdownloads.com/Download/BFSFiles/101/DisplayFusionSetup-12.1.exe + InstallerSha256: 4BAB79DF52FA06D13CBB416E8A371A2EF049674800DF5ED383190263AB5CA499 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.locale.en-US.yaml b/manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.locale.en-US.yaml new file mode 100644 index 0000000000000..05bc85ece33c8 --- /dev/null +++ b/manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.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.12.0.schema.json + +PackageIdentifier: BinaryFortress.DisplayFusion +PackageVersion: 12.1.0.0 +PackageLocale: en-US +Publisher: Binary Fortress Software +PublisherUrl: https://www.binaryfortress.com/ +PublisherSupportUrl: https://www.displayfusion.com/Support/ +PrivacyUrl: https://www.displayfusion.com/Privacy/ +Author: Binary Fortress Software +PackageName: DisplayFusion +PackageUrl: https://www.displayfusion.com/ +License: Proprietary +LicenseUrl: https://www.displayfusion.com/License/ +Copyright: Copyright © 2007-2026 Binary Fortress Software +CopyrightUrl: https://www.displayfusion.com/TermsOfService/ +ShortDescription: DisplayFusion will make your multi-monitor life much easier! With powerful features like Multi-Monitor Taskbars, TitleBar Buttons and fully customizable HotKeys, DisplayFusion will make managing your multiple monitors easy. +Moniker: displayfusion +Tags: +- desktop +- display +- monitor +- window +ReleaseNotes: |- + - Change: Updated to run on .NET 10, the new framework will be automatically installed during the update + - Change: New Scripting Function to get taskbar size + - Change: DisplayFusion now handles settings restore instead of passing to regedit, allowing a settings backup to restored by non-admin users + - Change: Removed the Google Image Search wallpaper source as Google has removed the API authentication for it + - Change: Added the ability to toggle HDR in Monitor Configuration and save it with Monitor Profiles (toggles HDR only, does not set HDR colour depth or format) + - Change: Added an option to Custom Functions that allows them to be toggled (i.e. after running the function on a window, a second run will revert the window to its previous size/location) + - Change: Improvements to existing "Span Window Across All Monitors" function (you can switch back to the old behaviour with an advanced setting if needed) + - Change: Added a new "Span Window Across Specific Monitors" function that allows you to select the monitors to span + - Change: Added a button in the Desktop Wallpaper window to delete the Windows transcoded wallpaper file + - Fix: Taskbar no longer forced to bottom when running PowerToys Command Palette + - Fix: Resolved a script download issue + - Fix: Resolved an issue where wrong process name was sometimes detected for Triggers + - Fix: AutoCAD 2027 now shows up on DisplayFusion taskbar + - Fix: EssentialPIM Pro taskbar button no longer disappears on minimize + - Fix: Resolved an issue where Settings on the Adjustments tab in the wallpaper window didn't apply correctly in some cases + - Fix: Left-click now closes Alt+Tab window + - Fix: Resolved a hook issue on Windows 11 21H2 + - Fix: Steam tray icon no longer cycles on and off of the DisplayFusion taskbar + - Fix: Dropbox wallpaper source now uses the new Dropbox API + - Fix: Reduced CPU and I/O usage + - Fix: Resolved an issue where resuming from screen saver didn't work on some systems + - Fix: Removed qlock from Alt+Tab handler + - Fix: No longer sends minimized window to bottom of Alt+Tab order + - Fix: Resolved an issue with blank taskbar buttons on Windows 10 with Open Shell and dark mode enabled + - Fix: Resolved an issue where wrong taskbar buttons were sometimes combined + - Fix: Resolved an issue with AutoCAD pop-out window not showing up on taskbar + - Fix: Wallpaper no longer flickers if you're using Wallpaper Engine instead of DF wallpaper + - Fix: Resolved some font scaling issues when display scaling and font scaling are both enabled in Windows + - Fix: Functions now work on some borderless full screen windows + - Fix: Alt+Tab no longer moves a minimized window to the bottom of the Alt+Tab order + - Fix: Discord notification dot now shows up even if it's running as admin + - Fix: Website wallpaper fixes and improvements + - Fix: Video wallpaper fixes and improvements + - Fix: TitleBar Buttons now show up on Bigasoft Video Downloader + - Fix: Scripted Functions compile correctly on ARM systems again + - Fix: Resolved an issue where the process icons on the Triggers tab were sometimes red boxes + - Fix: Notepad++ no longer sticks to the bottom of the Alt+Tab order + - Fix: Gemini now combines correctly with pinned taskbar button + - Fix: With Alt+Tab set to show current windows, the list now gets refreshed correctly when the monitor config changes + - Fix: New Outlook now combines correctly with pinned taskbar button + - Fix: CheatEngine no longer shows two taskbar entries + - Fix: Resolved an issue where the Monitor Configuration window sometimes duplicated the monitor previews + - Fix: Terminal window now gets correctly moved to taskbar monitor when opened from a taskbar pinned button + - Fix: Monitor Splitting no longer causes SuperPuTTY tabs to incorrectly resize + - Fix: Resolved an issue where Alt+Tab sometimes selected the wrong window + - Fix: Tray overflow icon no longer missing on Japanese Windows + - Fix: Resolved an issue where Process Explorer sometimes only showed one tray icon +ReleaseNotesUrl: https://www.displayfusion.com/ChangeLog/ +PurchaseUrl: https://www.displayfusion.com/Purchase/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://www.displayfusion.com/FAQ/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.locale.zh-CN.yaml b/manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3f79747b5bcd1 --- /dev/null +++ b/manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.locale.zh-CN.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: BinaryFortress.DisplayFusion +PackageVersion: 12.1.0.0 +PackageLocale: zh-CN +Publisher: Binary Fortress Software +PublisherUrl: https://www.binaryfortress.com/ +PublisherSupportUrl: https://www.displayfusion.com/Support/ +PrivacyUrl: https://www.displayfusion.com/Privacy/ +Author: Binary Fortress Software +PackageName: DisplayFusion +PackageUrl: https://www.displayfusion.com/ +License: 专有软件 +LicenseUrl: https://www.displayfusion.com/License/ +Copyright: Copyright © 2007-2026 Binary Fortress Software +CopyrightUrl: https://www.displayfusion.com/TermsOfService/ +ShortDescription: DisplayFusion will make your multi-monitor life much easier! With powerful features like Multi-Monitor Taskbars, TitleBar Buttons and fully customizable HotKeys, DisplayFusion will make managing your multiple monitors easy. +Tags: +- 显示 +- 显示器 +- 桌面 +- 窗口 +ReleaseNotesUrl: https://www.displayfusion.com/ChangeLog/ +PurchaseUrl: https://www.displayfusion.com/Purchase/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://www.displayfusion.com/FAQ/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.yaml b/manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.yaml new file mode 100644 index 0000000000000..8bedd2ff82f76 --- /dev/null +++ b/manifests/b/BinaryFortress/DisplayFusion/12.1.0.0/BinaryFortress.DisplayFusion.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: BinaryFortress.DisplayFusion +PackageVersion: 12.1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From bb919c6c6c893d8c49c6c8b96d8cb7195061932c Mon Sep 17 00:00:00 2001 From: landkatze <180321152+landkatze@users.noreply.github.com> Date: Sun, 19 Jul 2026 23:50:09 -0400 Subject: [PATCH 34/44] New version: autobrr.upbrr.gui version 0.2.5 (#404671) --- .../0.2.5/autobrr.upbrr.gui.installer.yaml | 23 +++++++++++++++ .../0.2.5/autobrr.upbrr.gui.locale.en-US.yaml | 28 +++++++++++++++++++ .../upbrr/gui/0.2.5/autobrr.upbrr.gui.yaml | 8 ++++++ 3 files changed, 59 insertions(+) create mode 100644 manifests/a/autobrr/upbrr/gui/0.2.5/autobrr.upbrr.gui.installer.yaml create mode 100644 manifests/a/autobrr/upbrr/gui/0.2.5/autobrr.upbrr.gui.locale.en-US.yaml create mode 100644 manifests/a/autobrr/upbrr/gui/0.2.5/autobrr.upbrr.gui.yaml diff --git a/manifests/a/autobrr/upbrr/gui/0.2.5/autobrr.upbrr.gui.installer.yaml b/manifests/a/autobrr/upbrr/gui/0.2.5/autobrr.upbrr.gui.installer.yaml new file mode 100644 index 0000000000000..4693471a43c58 --- /dev/null +++ b/manifests/a/autobrr/upbrr/gui/0.2.5/autobrr.upbrr.gui.installer.yaml @@ -0,0 +1,23 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: autobrr.upbrr.gui +PackageVersion: 0.2.5 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: upbrr-gui.exe + PortableCommandAlias: upbrr +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- upbrr +ReleaseDate: 2026-07-19 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/autobrr/upbrr/releases/download/v0.2.5/upbrr-gui-v0.2.5-windows-x64.zip + InstallerSha256: CF4EC92F9CDC7E167DB0162FDDDF081629915E3BC1563B9523348E3152A960E8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/autobrr/upbrr/gui/0.2.5/autobrr.upbrr.gui.locale.en-US.yaml b/manifests/a/autobrr/upbrr/gui/0.2.5/autobrr.upbrr.gui.locale.en-US.yaml new file mode 100644 index 0000000000000..a566a5449f331 --- /dev/null +++ b/manifests/a/autobrr/upbrr/gui/0.2.5/autobrr.upbrr.gui.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: autobrr.upbrr.gui +PackageVersion: 0.2.5 +PackageLocale: en-US +Publisher: autobrr +PublisherUrl: https://github.com/autobrr +PublisherSupportUrl: https://github.com/autobrr/upbrr/issues +Author: autobrr +PackageName: upbrr GUI +PackageUrl: https://github.com/autobrr/upbrr +License: GPL-2.0 +LicenseUrl: https://github.com/autobrr/upbrr/blob/HEAD/LICENSE +ShortDescription: upbrr is an upload preparation app for private-tracker workflows. +Moniker: upbrr-gui +ReleaseNotes: |- + What's Changed + - feat: tracker auth concurrency by @Audionut in #241 + - feat: remove tmdb absolute gate by @Audionut in #248 + - fix: harden torrent injection by @Audionut in #242 + - chore(deps): update go-mediainfo by @Audionut in #253 + - fix(security): update Go vulnerability tooling by @Audionut in #275 + - chore: update-mediainfo by @Audionut in #276 + Full Changelog: v0.2.4...v0.2.5 +ReleaseNotesUrl: https://github.com/autobrr/upbrr/releases/tag/v0.2.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/autobrr/upbrr/gui/0.2.5/autobrr.upbrr.gui.yaml b/manifests/a/autobrr/upbrr/gui/0.2.5/autobrr.upbrr.gui.yaml new file mode 100644 index 0000000000000..fa5180a1899ba --- /dev/null +++ b/manifests/a/autobrr/upbrr/gui/0.2.5/autobrr.upbrr.gui.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: autobrr.upbrr.gui +PackageVersion: 0.2.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 7e6b9799cfab8dc5757f96bb29f956c5f32f9dc9 Mon Sep 17 00:00:00 2001 From: landkatze <180321152+landkatze@users.noreply.github.com> Date: Mon, 20 Jul 2026 00:18:22 -0400 Subject: [PATCH 35/44] New version: autobrr.upbrr.cli version 0.2.5 (#404670) --- .../0.2.5/autobrr.upbrr.cli.installer.yaml | 23 ++++++++++++++ .../0.2.5/autobrr.upbrr.cli.locale.en-US.yaml | 30 +++++++++++++++++++ .../upbrr/cli/0.2.5/autobrr.upbrr.cli.yaml | 8 +++++ 3 files changed, 61 insertions(+) create mode 100644 manifests/a/autobrr/upbrr/cli/0.2.5/autobrr.upbrr.cli.installer.yaml create mode 100644 manifests/a/autobrr/upbrr/cli/0.2.5/autobrr.upbrr.cli.locale.en-US.yaml create mode 100644 manifests/a/autobrr/upbrr/cli/0.2.5/autobrr.upbrr.cli.yaml diff --git a/manifests/a/autobrr/upbrr/cli/0.2.5/autobrr.upbrr.cli.installer.yaml b/manifests/a/autobrr/upbrr/cli/0.2.5/autobrr.upbrr.cli.installer.yaml new file mode 100644 index 0000000000000..db8cd12227098 --- /dev/null +++ b/manifests/a/autobrr/upbrr/cli/0.2.5/autobrr.upbrr.cli.installer.yaml @@ -0,0 +1,23 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: autobrr.upbrr.cli +PackageVersion: 0.2.5 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: upbrr-windows-amd64.exe + PortableCommandAlias: upbrr +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- upbrr +ReleaseDate: 2026-07-19 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/autobrr/upbrr/releases/download/v0.2.5/upbrr-cli-v0.2.5-windows-amd64.zip + InstallerSha256: 36433FD8C600BBB04595F8DF06E44E79A76B4EDC5B52E4C522E91F864606AA48 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/autobrr/upbrr/cli/0.2.5/autobrr.upbrr.cli.locale.en-US.yaml b/manifests/a/autobrr/upbrr/cli/0.2.5/autobrr.upbrr.cli.locale.en-US.yaml new file mode 100644 index 0000000000000..354b6fe85ad53 --- /dev/null +++ b/manifests/a/autobrr/upbrr/cli/0.2.5/autobrr.upbrr.cli.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: autobrr.upbrr.cli +PackageVersion: 0.2.5 +PackageLocale: en-US +Publisher: autobrr +PublisherUrl: https://github.com/autobrr +PublisherSupportUrl: https://github.com/autobrr/upbrr/issues +Author: autobrr +PackageName: upbrr CLI +PackageUrl: https://github.com/autobrr/upbrr +License: GPL-2.0 +LicenseUrl: https://github.com/autobrr/upbrr/blob/HEAD/LICENSE +ShortDescription: upbrr is an upload preparation app for private-tracker workflows. +Moniker: upbrr-cli +Tags: +- cli +ReleaseNotes: |- + What's Changed + - feat: tracker auth concurrency by @Audionut in #241 + - feat: remove tmdb absolute gate by @Audionut in #248 + - fix: harden torrent injection by @Audionut in #242 + - chore(deps): update go-mediainfo by @Audionut in #253 + - fix(security): update Go vulnerability tooling by @Audionut in #275 + - chore: update-mediainfo by @Audionut in #276 + Full Changelog: v0.2.4...v0.2.5 +ReleaseNotesUrl: https://github.com/autobrr/upbrr/releases/tag/v0.2.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/autobrr/upbrr/cli/0.2.5/autobrr.upbrr.cli.yaml b/manifests/a/autobrr/upbrr/cli/0.2.5/autobrr.upbrr.cli.yaml new file mode 100644 index 0000000000000..5333c26d584bd --- /dev/null +++ b/manifests/a/autobrr/upbrr/cli/0.2.5/autobrr.upbrr.cli.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: autobrr.upbrr.cli +PackageVersion: 0.2.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 96cad3f57374959f807f7cd0cbc7aafd85a904cd Mon Sep 17 00:00:00 2001 From: owu Date: Mon, 20 Jul 2026 12:18:35 +0800 Subject: [PATCH 36/44] New version: Owu.WSLDashboard version 0.10.0 (#404676) --- .../0.10.0/Owu.WSLDashboard.installer.yaml | 22 ++++++++++++++ .../0.10.0/Owu.WSLDashboard.locale.en-US.yaml | 30 +++++++++++++++++++ .../WSLDashboard/0.10.0/Owu.WSLDashboard.yaml | 8 +++++ 3 files changed, 60 insertions(+) create mode 100644 manifests/o/Owu/WSLDashboard/0.10.0/Owu.WSLDashboard.installer.yaml create mode 100644 manifests/o/Owu/WSLDashboard/0.10.0/Owu.WSLDashboard.locale.en-US.yaml create mode 100644 manifests/o/Owu/WSLDashboard/0.10.0/Owu.WSLDashboard.yaml diff --git a/manifests/o/Owu/WSLDashboard/0.10.0/Owu.WSLDashboard.installer.yaml b/manifests/o/Owu/WSLDashboard/0.10.0/Owu.WSLDashboard.installer.yaml new file mode 100644 index 0000000000000..191a7a59d8193 --- /dev/null +++ b/manifests/o/Owu/WSLDashboard/0.10.0/Owu.WSLDashboard.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Owu.WSLDashboard +PackageVersion: 0.10.0 +InstallerType: inno +Scope: machine +InstallerSwitches: + Silent: /VERYSILENT /LANG=english /NORESTART /SUPPRESSMSGBOXES + SilentWithProgress: /SILENT /LANG=english /NORESTART /SUPPRESSMSGBOXES +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + MinimumVersion: 14.40.33810 +ElevationRequirement: elevationRequired +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/owu/wsl-dashboard/releases/download/v0.10.0/WSLDashboard.0.10.0.Setup.x64.exe + InstallerSha256: 01732056EB016B00A272A4EFCF8E6D37EC234AA2B7A5CFE616B5CA3D4EDAA6F6 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-20 diff --git a/manifests/o/Owu/WSLDashboard/0.10.0/Owu.WSLDashboard.locale.en-US.yaml b/manifests/o/Owu/WSLDashboard/0.10.0/Owu.WSLDashboard.locale.en-US.yaml new file mode 100644 index 0000000000000..70228935db9c1 --- /dev/null +++ b/manifests/o/Owu/WSLDashboard/0.10.0/Owu.WSLDashboard.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Owu.WSLDashboard +PackageVersion: 0.10.0 +PackageLocale: en-US +Publisher: https://github.com/owu +PublisherUrl: https://github.com/owu/wsl-dashboard +PublisherSupportUrl: https://github.com/owu/wsl-dashboard/issues +PrivacyUrl: https://www.wslui.com/privacy/ +Author: owu +PackageName: WSL Dashboard +PackageUrl: https://www.wslui.com +License: GPL-3.0 +LicenseUrl: https://github.com/owu/wsl-dashboard/blob/main/LICENSE +Copyright: 2026 WSL Dashboard. All rights reserved. +ShortDescription: A modern, high-performance, lightweight, and low-memory WSL instance management dashboard. +Description: WSL Dashboard is a modern, high-performance, lightweight, and low-memory WSL instance management dashboard built with Rust and Slint UI. +Moniker: wsl-dashboard +Tags: +- wsl +- windows-subsystem-for-linux +- linux +- dashboard +- gui +- management +- rust +ReleaseNotesUrl: https://github.com/owu/wsl-dashboard/releases/tag/v0.10.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/Owu/WSLDashboard/0.10.0/Owu.WSLDashboard.yaml b/manifests/o/Owu/WSLDashboard/0.10.0/Owu.WSLDashboard.yaml new file mode 100644 index 0000000000000..dd23e1dffda06 --- /dev/null +++ b/manifests/o/Owu/WSLDashboard/0.10.0/Owu.WSLDashboard.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Owu.WSLDashboard +PackageVersion: 0.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 59cc87ea95f6fb926659f1e9729e77bb1cc3694a Mon Sep 17 00:00:00 2001 From: Gaoyang Date: Mon, 20 Jul 2026 12:18:48 +0800 Subject: [PATCH 37/44] New version: coldhighsun.sloc version 1.1.0 (#404679) --- .../1.1.0/coldhighsun.sloc.installer.yaml | 17 ++++++++++++ .../1.1.0/coldhighsun.sloc.locale.en-US.yaml | 27 +++++++++++++++++++ .../sloc/1.1.0/coldhighsun.sloc.yaml | 8 ++++++ 3 files changed, 52 insertions(+) create mode 100644 manifests/c/coldhighsun/sloc/1.1.0/coldhighsun.sloc.installer.yaml create mode 100644 manifests/c/coldhighsun/sloc/1.1.0/coldhighsun.sloc.locale.en-US.yaml create mode 100644 manifests/c/coldhighsun/sloc/1.1.0/coldhighsun.sloc.yaml diff --git a/manifests/c/coldhighsun/sloc/1.1.0/coldhighsun.sloc.installer.yaml b/manifests/c/coldhighsun/sloc/1.1.0/coldhighsun.sloc.installer.yaml new file mode 100644 index 0000000000000..a69e5825fa42a --- /dev/null +++ b/manifests/c/coldhighsun/sloc/1.1.0/coldhighsun.sloc.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: coldhighsun.sloc +PackageVersion: 1.1.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: sloc.exe + PortableCommandAlias: sloc +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/coldhighsun/Sloc/releases/download/v1.1.0/sloc-1.1.0-win-x64.zip + InstallerSha256: F14A7525FDD99E77383AA1B351C09AA72FEFC13E5BDBDC894DDE7C4DD8AE3052 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-07-20 diff --git a/manifests/c/coldhighsun/sloc/1.1.0/coldhighsun.sloc.locale.en-US.yaml b/manifests/c/coldhighsun/sloc/1.1.0/coldhighsun.sloc.locale.en-US.yaml new file mode 100644 index 0000000000000..04c29f9633c40 --- /dev/null +++ b/manifests/c/coldhighsun/sloc/1.1.0/coldhighsun.sloc.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: coldhighsun.sloc +PackageVersion: 1.1.0 +PackageLocale: en-US +Publisher: coldhighsun +PublisherUrl: https://github.com/coldhighsun +PublisherSupportUrl: https://github.com/coldhighsun/Sloc/issues +PackageName: sloc +PackageUrl: https://github.com/coldhighsun/Sloc +License: MIT License +ShortDescription: A command-line tool for counting lines of source code. It supports 23 auto-detected languages, three output formats (table, JSON, HTML), per-file detail view, and comment health indicators. +Tags: +- cli +- code-analysis +- code-metrics +- csharp +- developer-tools +- dotnet-tool +- lines-of-code +- sloc +- source-code-analysis +- static-analysis +ReleaseNotesUrl: https://github.com/coldhighsun/Sloc/releases/tag/v1.1.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/coldhighsun/sloc/1.1.0/coldhighsun.sloc.yaml b/manifests/c/coldhighsun/sloc/1.1.0/coldhighsun.sloc.yaml new file mode 100644 index 0000000000000..fcbd889e1f1d1 --- /dev/null +++ b/manifests/c/coldhighsun/sloc/1.1.0/coldhighsun.sloc.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: coldhighsun.sloc +PackageVersion: 1.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 02b4974bb48da67a28af6109ac5eb52353e38b67 Mon Sep 17 00:00:00 2001 From: Robert Nio <50460704+githubrobbi@users.noreply.github.com> Date: Sun, 19 Jul 2026 21:19:02 -0700 Subject: [PATCH 38/44] New version: SkyLLC.UFFS version 0.6.28 (#404681) --- .../UFFS/0.6.28/SkyLLC.UFFS.installer.yaml | 35 +++++ .../UFFS/0.6.28/SkyLLC.UFFS.locale.en-US.yaml | 125 ++++++++++++++++++ .../s/SkyLLC/UFFS/0.6.28/SkyLLC.UFFS.yaml | 8 ++ 3 files changed, 168 insertions(+) create mode 100644 manifests/s/SkyLLC/UFFS/0.6.28/SkyLLC.UFFS.installer.yaml create mode 100644 manifests/s/SkyLLC/UFFS/0.6.28/SkyLLC.UFFS.locale.en-US.yaml create mode 100644 manifests/s/SkyLLC/UFFS/0.6.28/SkyLLC.UFFS.yaml diff --git a/manifests/s/SkyLLC/UFFS/0.6.28/SkyLLC.UFFS.installer.yaml b/manifests/s/SkyLLC/UFFS/0.6.28/SkyLLC.UFFS.installer.yaml new file mode 100644 index 0000000000000..3e6c723a4d8f9 --- /dev/null +++ b/manifests/s/SkyLLC/UFFS/0.6.28/SkyLLC.UFFS.installer.yaml @@ -0,0 +1,35 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SkyLLC.UFFS +PackageVersion: 0.6.28 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.19041.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: uffs-windows-x64/uffs-broker.exe + PortableCommandAlias: uffs-broker +- RelativeFilePath: uffs-windows-x64/uffs-mft.exe + PortableCommandAlias: uffs-mft +- RelativeFilePath: uffs-windows-x64/uffs-tui.exe + PortableCommandAlias: uffs-tui +- RelativeFilePath: uffs-windows-x64/uffs-update.exe + PortableCommandAlias: uffs-update +- RelativeFilePath: uffs-windows-x64/uffs.exe + PortableCommandAlias: uffs +- RelativeFilePath: uffs-windows-x64/uffsd.exe + PortableCommandAlias: uffsd +- RelativeFilePath: uffs-windows-x64/uffsmcp.exe + PortableCommandAlias: uffsmcp +InstallModes: +- silent +- silentWithProgress +ReleaseDate: 2026-07-20 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/skyllc-ai/UltraFastFileSearch/releases/download/v0.6.28/uffs-windows-x64.zip + InstallerSha256: DB0D2D7B1B3F403E4A9FD25D9D1D62ECE1A6E87EA16594685100EF7C30115388 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SkyLLC/UFFS/0.6.28/SkyLLC.UFFS.locale.en-US.yaml b/manifests/s/SkyLLC/UFFS/0.6.28/SkyLLC.UFFS.locale.en-US.yaml new file mode 100644 index 0000000000000..d7209f9ea8854 --- /dev/null +++ b/manifests/s/SkyLLC/UFFS/0.6.28/SkyLLC.UFFS.locale.en-US.yaml @@ -0,0 +1,125 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SkyLLC.UFFS +PackageVersion: 0.6.28 +PackageLocale: en-US +Publisher: Sky, LLC +PublisherUrl: https://github.com/skyllc-ai +PublisherSupportUrl: https://github.com/skyllc-ai/UltraFastFileSearch/issues +PackageName: UFFS - Ultra Fast File Search +PackageUrl: https://github.com/skyllc-ai/UltraFastFileSearch +License: MPL-2.0 +LicenseUrl: https://github.com/skyllc-ai/UltraFastFileSearch/blob/HEAD/LICENSE +ShortDescription: Benchmark-driven NTFS search engine for Windows +Description: |- + UFFS reads the NTFS Master File Table directly, builds a compact persisted index, + and serves targeted queries in 0-3 ms daemon-side. One Rust engine for CLI, daemon, + TUI, and MCP agent workflows. Proven on 100M-record scale. +Tags: +- cli +- file-search +- mft +- ntfs +- rust +- search +- windows +ReleaseNotes: |- + UFFS v0.6.28 + 🚀 What's New + See the full changelog + and CHANGELOG.md in the repository for details. + 📦 Downloads + UFFS is a Windows-native NTFS search engine — live indexing of + the Master File Table requires Windows. The engine core is + cross-platform, so macOS and Linux builds are shipped for + offline MFT analysis from captured .mft / .bin snapshots. + Each platform ships as a one-download ZIP bundle in three + tiers — pick the one that matches how much you need: + ──────┬───────────┬───────────────────────────────────────────────────────────────────── + Tier │Zip suffix │Contents + ──────┼───────────┼───────────────────────────────────────────────────────────────────── + min │-min.zip │uffs + uffsd + uffs-tui demo. Lean engine for CI/scripting. + ──────┼───────────┼───────────────────────────────────────────────────────────────────── + normal│(no suffix)│min + uffsmcp + uffs-mft + docs + brand + packaging helper. + │ │Recommended. + ──────┼───────────┼───────────────────────────────────────────────────────────────────── + full │-full.zip │normal + the uffs-diag diagnostic tools. + ──────┴───────────┴───────────────────────────────────────────────────────────────────── + > 🖥️ Every tier bundles the free uffs-tui demo — the + > zero-setup front door. After unzipping, just run uffs-tui + > to browse your own drives in a UI (the daemon auto-starts). + > The demo has capped result counts and disabled exports; see + > DEMO-LICENSE.txt in the zip. Full TUI/GUI are commercial. + Individual binaries are also attached for automation that + wgets a single file. + 🟦 Windows x86_64 — primary live-indexing target + - uffs-windows-x64.zip — recommended (normal tier): CLI + + daemon + MCP + MFT tooling + uffs-tui demo + icon + docs. + The .exes ship with the UFFS icon and asInvoker manifest + embedded. Also: uffs-windows-x64-min.zip, + uffs-windows-x64-full.zip. + - Raw binaries: uffs-windows-x64.exe, uffsd-windows-x64.exe, + uffsmcp-windows-x64.exe, uffs-mft-windows-x64.exe, + uffs-broker-windows-x64.exe, uffs-update-windows-x64.exe. + 🍏 macOS Apple Silicon — offline MFT analysis + - uffs-macos-arm64.zip — recommended (normal tier): raw + binaries + uffs-tui demo + a ready-to-run UFFS.app bundle + - icns + docs + packaging/macos/bundle.sh for rebuilding. + Also: uffs-macos-arm64-min.zip, uffs-macos-arm64-full.zip. + - Raw binaries: uffs-macos-arm64, uffsd-macos-arm64, + uffsmcp-macos-arm64, uffs-mft-macos-arm64, uffs-update-macos-arm64. + - Intel Macs: run the arm64 build under Rosetta 2. + 🐧 Linux x86_64 — offline MFT analysis + - uffs-linux-x64.zip — recommended (normal tier): binaries + - uffs-tui demo + full hicolor icon tree + + packaging/linux/install.sh (drops the .desktop entry and + icons under /usr/local with one sudo invocation) + docs. + Also: uffs-linux-x64-min.zip, uffs-linux-x64-full.zip. + - Raw binaries: uffs-linux-x64, uffsd-linux-x64, + uffsmcp-linux-x64, uffs-mft-linux-x64, uffs-update-linux-x64. + - Use with --mft-file to analyse captured MFT snapshots on servers, forensics VMs, or in Docker. + 🔐 Verification + All binaries are accompanied by SHA256 checksums in CHECKSUMS.txt + (and SHA256SUMS, the conventionally-named copy the in-app + self-update helper fetches). Verify with: + sha256sum -c CHECKSUMS.txt + Additionally, every release asset carries a SLSA build- + provenance attestation signed with the workflow's Sigstore + OIDC identity. Verify with GitHub CLI: + gh attestation verify --owner skyllc-ai + A successful verification proves the bytes were produced by + this exact workflow run on this exact commit. + 📋 SBOM (Software Bill of Materials) + Each workspace crate ships a CycloneDX 1.5 SBOM alongside the + binaries: sbom-.cdx.json. The SBOMs are covered by + the same SLSA attestation as the binaries, so you can verify + the inventory with the same command above. Inspect with any + CycloneDX-aware tool, e.g.: + jq '.components[] | {name, version, purl}' sbom-uffs-cli.cdx.json + 📋 Installation + Recommended: ZIP bundle + 1. Download uffs-.zip for your platform. + 2. Unzip anywhere. + 3. Windows: the .exes are ready to run; place them on PATH. Icon + asInvoker manifest are already baked into the PE. + 4. macOS: double-click UFFS.app, or move the raw uffs binary into /usr/local/bin/. First launch: Gatekeeper warns because the bundle is unsigned — right-click → Open to confirm, or run xattr -dr com.apple.quarantine UFFS.app. + 5. Linux: run sudo packaging/linux/install.sh from the unzipped directory — installs the binary, the .desktop entry, and the full hicolor icon set. Override prefix with sudo PREFIX=/opt/uffs packaging/linux/install.sh. + Raw-binary path (automation) + - Download the individual binary, e.g. uffs-linux-x64. + - macOS / Linux: chmod +x uffs-* then optionally mv uffs-* /usr/local/bin/uffs. + - Windows: the .exe is ready to run; place it on PATH. + 🛠️ Build Information + - Triggered by: release-pr-merge-#564 + - Commit: 5c50616 + - Toolchain: pinned nightly from rust-toolchain.toml + - Profile: [profile.release] — LTO=fat, codegen-units=1, strip=symbols + - CPU baselines: x86_64 = x86-64-v3 (Haswell+/Zen+); macOS ARM64 = apple-m1 (M1+) + Full Changelog: https://github.com/skyllc-ai/UltraFastFileSearch/commits/v0.6.28 + What's Changed + - fix(test): deflake ensure_warm parallel-promote timing assertion by @githubrobbi in #562 + - feat(content): VSS-snapshot content-ingest pipeline for Docenta (UFI.0-UFI.6) by @githubrobbi in #563 + - chore: release v0.6.28 — ship pipeline auto-commit by @githubrobbi in #564 + Full Changelog: v0.6.27...v0.6.28 +ReleaseNotesUrl: https://github.com/skyllc-ai/UltraFastFileSearch/releases/tag/v0.6.28 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SkyLLC/UFFS/0.6.28/SkyLLC.UFFS.yaml b/manifests/s/SkyLLC/UFFS/0.6.28/SkyLLC.UFFS.yaml new file mode 100644 index 0000000000000..5b508d43b2233 --- /dev/null +++ b/manifests/s/SkyLLC/UFFS/0.6.28/SkyLLC.UFFS.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: SkyLLC.UFFS +PackageVersion: 0.6.28 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 2c671e882f49fafe5f87eb06e5f1d5370c59c693 Mon Sep 17 00:00:00 2001 From: Wilson Glasser Date: Mon, 20 Jul 2026 01:19:14 -0300 Subject: [PATCH 39/44] New version: WilsonGlasser.Oryxis version 0.10.0 (#404684) --- .../WilsonGlasser.Oryxis.installer.yaml | 20 ++++++ .../WilsonGlasser.Oryxis.locale.en-US.yaml | 61 +++++++++++++++++++ .../Oryxis/0.10.0/WilsonGlasser.Oryxis.yaml | 8 +++ 3 files changed, 89 insertions(+) create mode 100644 manifests/w/WilsonGlasser/Oryxis/0.10.0/WilsonGlasser.Oryxis.installer.yaml create mode 100644 manifests/w/WilsonGlasser/Oryxis/0.10.0/WilsonGlasser.Oryxis.locale.en-US.yaml create mode 100644 manifests/w/WilsonGlasser/Oryxis/0.10.0/WilsonGlasser.Oryxis.yaml diff --git a/manifests/w/WilsonGlasser/Oryxis/0.10.0/WilsonGlasser.Oryxis.installer.yaml b/manifests/w/WilsonGlasser/Oryxis/0.10.0/WilsonGlasser.Oryxis.installer.yaml new file mode 100644 index 0000000000000..99e1c55067426 --- /dev/null +++ b/manifests/w/WilsonGlasser/Oryxis/0.10.0/WilsonGlasser.Oryxis.installer.yaml @@ -0,0 +1,20 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: WilsonGlasser.Oryxis +PackageVersion: 0.10.0 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +ProductCode: Oryxis +ReleaseDate: 2026-07-20 +AppsAndFeaturesEntries: +- ProductCode: Oryxis +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Oryxis' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/wilsonglasser/oryxis/releases/download/v0.10.0/oryxis-setup-x86_64.exe + InstallerSha256: 1A24F65E5EABBE5F811176D8246E80BC9C81D411F87257EFD61541DEAC405FE7 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/WilsonGlasser/Oryxis/0.10.0/WilsonGlasser.Oryxis.locale.en-US.yaml b/manifests/w/WilsonGlasser/Oryxis/0.10.0/WilsonGlasser.Oryxis.locale.en-US.yaml new file mode 100644 index 0000000000000..397b411ed804f --- /dev/null +++ b/manifests/w/WilsonGlasser/Oryxis/0.10.0/WilsonGlasser.Oryxis.locale.en-US.yaml @@ -0,0 +1,61 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: WilsonGlasser.Oryxis +PackageVersion: 0.10.0 +PackageLocale: en-US +Publisher: Wilson Glasser +PublisherUrl: https://github.com/wilsonglasser +PublisherSupportUrl: https://github.com/wilsonglasser/oryxis/issues +Author: Wilson Glasser +PackageName: Oryxis +PackageUrl: https://github.com/wilsonglasser/oryxis +License: AGPL-3.0 +LicenseUrl: https://github.com/wilsonglasser/oryxis/blob/HEAD/LICENSE +Copyright: AGPL-3.0-or-later +ShortDescription: Modern SSH client built in Rust — terminal, SFTP, and host management. +Description: Modern SSH client built in Rust — terminal, SFTP, and host management. +Moniker: oryxis +Tags: +- rust +- sftp +- ssh +- terminal +ReleaseNotes: |- + Oryxis 0.10.0: an agent for the whole system, keys that live in hardware, and a terminal with more power under the hood + Disclosure: this release note was drafted with assistance from Claude (Anthropic's LLM) and edited by Wilson Glasser, the project author. The engineering decisions and the code are mine; the LLM helped turn the changelog into prose. + Oryxis is a Rust-native SSH client built on iced with a russh engine. Where 0.9.0 pushed outward (Telnet, serial, two more clouds, files in every tab), 0.10.0 pushes down into the parts that make an SSH client trustworthy: Oryxis now serves your keys to the rest of the system as a standard ssh-agent, authenticates with OpenSSH certificates and FIDO2 security keys, generates keys in-app, and tunes its own vault key derivation to your machine. The terminal grows the power features long-time users keep asking for, scrollback search, broadcast input, a command palette, clickable hyperlinks, and your session recordings finally play back and export as GIFs. Privacy Mode became a system you can tune. And underneath, the whole message and dispatch layer was rebuilt so the compiler proves every message is handled. + Your keys, available to everything (safely) + Oryxis now runs a standard ssh-agent (#54), so git, VS Code, WSL and anything else that speaks the agent protocol can authenticate with your vault keys, no exporting, no copying a private key to disk. The design is deliberately careful: vault keys are read-only over the wire and decrypted per signature, never held in memory for the whole unlocked window, and a per-key "Expose via agent" flag decides what the agent even offers. It works the other way too, opt-in: tools like KeePassXC can push keys in over the protocol, and those keys live in memory only, never touch the vault, and are swept the moment you lock, toggle off, or quit. Every signature can require a confirmation, and keys added with a CONFIRM constraint always prompt. + On Linux and macOS it listens on a unix socket; on Windows, a named pipe with a per-user DACL so only you can reach it, and an opt-in second name (\\.\pipe\openssh-ssh-agent) so tools with a hardcoded target like stock ssh.exe or KeePassXC in OpenSSH mode work with zero configuration. It has its own section in Settings. + Certificates and security keys + Two authentication methods that hardware-and-fleet shops depend on. Oryxis now offers OpenSSH user certificates during publickey auth, with a certificate-only method that never silently falls back to the bare key, a certificate editor and viewer in the keychain, a badge on keys that carry one, and an optional principal / host hint. And FIDO2 security keys (sk-ssh-ed25519, sk-ecdsa-sk) plus PKCS#11 / smartcard identities are usable through your system agent: import the public key, get a "Security key" badge, optionally pin it to a specific agent identity and host. The touch or PIN is handled by the platform, so the hardware-backed private material never enters a place Oryxis can read it. + Generate a key without leaving the app + The keychain grows a Generate flow next to Import: Ed25519, RSA (2048 / 3072 / 4096) or ECDSA (P-256 / P-384 / P-521), with an optional passphrase that also rides the portable export. No more dropping to ssh-keygen in a terminal to make a key you immediately import. + A vault that tunes itself + Key derivation is now calibrated to your machine. At vault creation, and whenever you change the master password, the Argon2id parameters are tuned to target roughly one second to unlock and stored next to the salt, so a fast laptop and a slow one both land near the same wall-clock cost without you touching a knob. Existing vaults keep their parameters until a rotation re-derives them; the sync and portable-export key derivations are deliberately frozen so unlocking on another device or importing on another machine never changes. + The terminal grows up + The features power users have been asking for, all landing together: + - Scrollback search (Ctrl+F): find-in-buffer with an amber highlight, an N / M counter and step forward / back. It hands the shortcut to full-screen apps, so vim, less and htop keep their own Ctrl+F. + - Broadcast input across split panes (Ctrl+Shift+U): arm a tab and every keystroke and paste fans out to all its panes at once, for driving a fleet from one prompt. Mute panes individually; a border marks an armed tab; secret sends stay single-pane. + - Command palette (Ctrl+Shift+P): fuzzy search over every action and every Settings section. + - OSC 8 hyperlinks: escape-sequence links are clickable now, with a scheme allowlist (javascript: and file: refused), a reveal chip so a link's real target can't be spoofed by its label, and an underline that follows a link wrapped across rows. + - Legacy keyboard modes: per-host backspace (^H / ^?), rxvt Home / End, function-key styles, and toggles to disable mouse reporting, remote resize, title changes or OSC 52 clipboard access, plus an SSH rekey limit, all in an "Advanced terminal" section. Defaults are byte-identical to before; this is for the network appliances that need the old encodings. + International keyboards, fixed + Composed input from AltGr (Windows / Linux) and Option (macOS) now produces the character your layout intends instead of being swallowed as a Meta chord. This fixes dead keys and symbols on bépo, German and other non-US layouts where, for example, AltGr+Space should send _. + One deliberate behavior change comes with it: on macOS, Option now composes by default (Option+n then n gives ñ), which is what the platform expects. If you relied on Option as Meta, a per-host "Option as Meta" quirk in the Advanced terminal editor brings it back, with four modes (both, left only, right only, off). + Your recordings, played and shared + The encrypted session recordings that 0.9.0 taught to capture timing now do something with it. An in-app player on the History screen replays a session on the real terminal engine, no second emulator, with play / pause (Space), restart, seek and speed control. It is read-only by construction: there is no path for a replay to type anything, and it stops and clears itself on vault lock. And GIF export renders any recording into a shareable GIF through an optional agg plugin, downloaded on first use through the same signed pipeline as the MCP server, so the encoder and its fonts stay out of the core binary. Colors come straight from the theme embedded in the recording. + Privacy Mode, now a system (#78) + Masking used to be a terminal-render trick. In 0.10.0 it is a system you configure. Labels redact everywhere they render, host cards, the tab strip and its drag ghosts, the tab-jump modal, the Ctrl+K picker, the status bar, and even the tray menu and Windows JumpList. A session override (Ctrl+Shift+M, with a chip) reveals for the current session only. Vault-derived terms plus explicit always / never mask lists decide what is masked, per-class gates turn each masking category on or off, and the visual is a span-level eye-slash with a one-time hint the first time something masks. A leak where a version-shaped dotted quad (1.2.3.4 in a banner) slipped past the IP mask is closed, it is now redacted with the same rules as an address. + Files, archives, and SFTP polish + The SFTP surface gains archive operations: compress and extract zip and tar.gz straight from the context menu, the remote side running tar / unzip / zip over the live connection with safe quoting on POSIX and Windows shells, the local side using native Rust codecs, and a zip's contents browsable in place over ranged reads without a full download. On top of that, the hybrid Files surface now remounts cleanly after a reconnect (#63, the "session closed" retry loop is gone), local listings are async so a cold folder no longer freezes the UI, drag-and-drop drops land reliably, and the row context menu opens with the Menu key and is fully keyboard-navigable (#52), with Windows-style type-ahead cycling. + Sync: re-pair required + Sync's wire protocol moved to v7. The certificate and security-key work added record shapes that an older peer literally cannot parse, and rather than let that cause silent divergence, the bump makes it a clean, loud version reject like every prior break. Both devices must run 0.10.0, and paired devices need to re-pair. Nothing is lost: the SFTP-snapshot format moves in lockstep but asymmetrically, so a 0.10.0 device still reads your existing snapshot blobs and writes the new format. In the same area, the hosted relay is no longer a default, fresh installs are LAN-only until you pick an internet backend, while existing users who were syncing through the old hosted URL are grandfathered onto it automatically, and a setup wizard now generates the compose / systemd / Caddy files for your own relay and adopts it after a health check. + Faster, safer transfers, and a nicer connect + ZMODEM transfers now stream instead of stop-and-wait windows, much faster on high-latency links, with download resume, multi-file upload and sz -e. Crucially, sz now returns to the shell after a successful send (#77), the final handshake is flushed and the prompt behind the "OO" sign-off is no longer swallowed. On Windows, closing the window no longer quits the app when close-to-tray is on (#74): every close verb routes through the tray handler, the icon appears when the window hides, and the stray background processes that could linger after exit are swept. + The connection screen was redesigned around a living vertical timeline: one animated disc per step (resolve, dial, proxy, jump, auth, channel), a centered title, Termius-style logs, and a single clean error line on failure instead of a dumped stack. + For mainland China +ReleaseNotesUrl: https://github.com/wilsonglasser/oryxis/releases/tag/v0.10.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WilsonGlasser/Oryxis/0.10.0/WilsonGlasser.Oryxis.yaml b/manifests/w/WilsonGlasser/Oryxis/0.10.0/WilsonGlasser.Oryxis.yaml new file mode 100644 index 0000000000000..20b76bb46ed30 --- /dev/null +++ b/manifests/w/WilsonGlasser/Oryxis/0.10.0/WilsonGlasser.Oryxis.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: WilsonGlasser.Oryxis +PackageVersion: 0.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 51905153959e9c132519e82766ce0f82d55f2d17 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Sun, 19 Jul 2026 21:19:25 -0700 Subject: [PATCH 40/44] Automatic deletion of PlayStation.PSPlus 12.6.0 (#404687) --- .../12.6.0/PlayStation.PSPlus.installer.yaml | 15 ----------- .../PlayStation.PSPlus.locale.en-US.yaml | 26 ------------------- .../PSPlus/12.6.0/PlayStation.PSPlus.yaml | 8 ------ 3 files changed, 49 deletions(-) delete mode 100644 manifests/p/PlayStation/PSPlus/12.6.0/PlayStation.PSPlus.installer.yaml delete mode 100644 manifests/p/PlayStation/PSPlus/12.6.0/PlayStation.PSPlus.locale.en-US.yaml delete mode 100644 manifests/p/PlayStation/PSPlus/12.6.0/PlayStation.PSPlus.yaml diff --git a/manifests/p/PlayStation/PSPlus/12.6.0/PlayStation.PSPlus.installer.yaml b/manifests/p/PlayStation/PSPlus/12.6.0/PlayStation.PSPlus.installer.yaml deleted file mode 100644 index 68b4b085aafa9..0000000000000 --- a/manifests/p/PlayStation/PSPlus/12.6.0/PlayStation.PSPlus.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically updated by the winget bot at 2026/May/07 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: PlayStation.PSPlus -PackageVersion: 12.6.0 -InstallerType: exe -InstallerSwitches: - Silent: /quiet - SilentWithProgress: /quiet -Installers: -- Architecture: x86 - InstallerUrl: https://download-psplus.playstation.com/downloads/psplus/pc/latest - InstallerSha256: BFF099C942B16AEEFA0A18146D06A9B32BC77FC5F9BA9119994906D78BAE0FD9 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/p/PlayStation/PSPlus/12.6.0/PlayStation.PSPlus.locale.en-US.yaml b/manifests/p/PlayStation/PSPlus/12.6.0/PlayStation.PSPlus.locale.en-US.yaml deleted file mode 100644 index 66cebb1d2d77e..0000000000000 --- a/manifests/p/PlayStation/PSPlus/12.6.0/PlayStation.PSPlus.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Automatically updated by the winget bot at 2026/May/07 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: PlayStation.PSPlus -PackageVersion: 12.6.0 -PackageLocale: en-US -Publisher: Sony Interactive Entertainment Inc. -PackageName: PlayStation Plus -License: Proprietary -Copyright: Copyright © 2025 Sony Interactive Entertainment Inc. -ShortDescription: Stream supported games to PC from the cloud with a PlayStation Plus Premium subscription. -Tags: -- sony -- games -- gaming -- cloud -- streaming -- ps5 -- ps4 -- ps3 -- ps2 -- ps1 -- psx -- psp -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/p/PlayStation/PSPlus/12.6.0/PlayStation.PSPlus.yaml b/manifests/p/PlayStation/PSPlus/12.6.0/PlayStation.PSPlus.yaml deleted file mode 100644 index a178735b28f10..0000000000000 --- a/manifests/p/PlayStation/PSPlus/12.6.0/PlayStation.PSPlus.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2026/May/07 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: PlayStation.PSPlus -PackageVersion: 12.6.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From ebd32d486c6e3667f34b40fa99007f6c9ab787d2 Mon Sep 17 00:00:00 2001 From: KarbitsCode <107671693+KarbitsCode@users.noreply.github.com> Date: Mon, 20 Jul 2026 12:19:38 +0800 Subject: [PATCH 41/44] Remove version: VovSoft.VovMusicPlayer version 12.5.0.0 (#404689) --- .../VovSoft.VovMusicPlayer.installer.yaml | 55 ------------------- .../VovSoft.VovMusicPlayer.locale.en-US.yaml | 49 ----------------- .../12.5.0.0/VovSoft.VovMusicPlayer.yaml | 8 --- 3 files changed, 112 deletions(-) delete mode 100644 manifests/v/VovSoft/VovMusicPlayer/12.5.0.0/VovSoft.VovMusicPlayer.installer.yaml delete mode 100644 manifests/v/VovSoft/VovMusicPlayer/12.5.0.0/VovSoft.VovMusicPlayer.locale.en-US.yaml delete mode 100644 manifests/v/VovSoft/VovMusicPlayer/12.5.0.0/VovSoft.VovMusicPlayer.yaml diff --git a/manifests/v/VovSoft/VovMusicPlayer/12.5.0.0/VovSoft.VovMusicPlayer.installer.yaml b/manifests/v/VovSoft/VovMusicPlayer/12.5.0.0/VovSoft.VovMusicPlayer.installer.yaml deleted file mode 100644 index b34c630138b54..0000000000000 --- a/manifests/v/VovSoft/VovMusicPlayer/12.5.0.0/VovSoft.VovMusicPlayer.installer.yaml +++ /dev/null @@ -1,55 +0,0 @@ -# Created using wingetcreate 1.12.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: VovSoft.VovMusicPlayer -PackageVersion: 12.5.0.0 -InstallerLocale: en-US -Installers: -- Architecture: x86 - InstallerType: inno - Scope: machine - InstallerUrl: https://files.vovsoft.com/vov-music-player.exe - InstallerSha256: 4DFCC70EE4423CB26E69838CB5DBDC1B6FD4C96CBB1921EBA25BF2FBF6B793CA - InstallModes: - - interactive - - silent - - silentWithProgress - UpgradeBehavior: install - FileExtensions: - - AAC - - AIFF - - FLAC - - M4A - - M4B - - MIDI - - MOD - - MP1 - - MP2 - - MP3 - - MP4 - - MPC - - OGG - - OPUS - - S3M - - WAV - - WEBM - - WMA - - WV - ProductCode: Vov Music Player_is1 - AppsAndFeaturesEntries: - - ProductCode: Vov Music Player_is1 - ElevationRequirement: elevatesSelf - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\VOVSOFT\Vov Music Player' -- Architecture: x86 - InstallerType: zip - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: vovmusic.exe - PortableCommandAlias: vovmusic - InstallerUrl: https://files.vovsoft.com/vov-music-player-portable.zip - InstallerSha256: 17F9253F75BEE5727BCAE82828993693C21AAC6BB0E4B203F7B8263026B77D0E - ArchiveBinariesDependOnPath: true -ManifestType: installer -ManifestVersion: 1.12.0 -ReleaseDate: 2026-04-22 diff --git a/manifests/v/VovSoft/VovMusicPlayer/12.5.0.0/VovSoft.VovMusicPlayer.locale.en-US.yaml b/manifests/v/VovSoft/VovMusicPlayer/12.5.0.0/VovSoft.VovMusicPlayer.locale.en-US.yaml deleted file mode 100644 index 8082c6b4e4800..0000000000000 --- a/manifests/v/VovSoft/VovMusicPlayer/12.5.0.0/VovSoft.VovMusicPlayer.locale.en-US.yaml +++ /dev/null @@ -1,49 +0,0 @@ -# Created using wingetcreate 1.12.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: VovSoft.VovMusicPlayer -PackageVersion: 12.5.0.0 -PackageLocale: en-US -Publisher: VOVSOFT -PublisherUrl: https://vovsoft.com/ -PublisherSupportUrl: https://vovsoft.com/contact/ -PrivacyUrl: https://vovsoft.com/privacy-policy/ -Author: VOVSOFT -PackageName: Vov Music Player -PackageUrl: https://vovsoft.com/software/vov-music-player/ -License: Freeware -LicenseUrl: https://vovsoft.com/eula/vov-music-player/ -Copyright: VOVSOFT.COM © 2015 - 2026 -ShortDescription: Vov Music Player is a lightweight, intuitive audio player designed for simplicity and functionality. -Description: |- - Vov Music Player is a lightweight, intuitive audio player designed for simplicity and functionality. It supports a wide range of audio formats, including FLAC, MP3, MP2, MP1, OGG, OPUS, WMA, M4A, M4B, AAC, WAV, WV (WavPack), MPC (Musepack), MIDI, MOD, S3M, MP4, WEBM, and AIFF. With the ability to play high-resolution audio at 24 bits and sampling rates up to 192 kHz, it delivers an exceptional listening experience. - - Enjoy music without complicated setups—just select your source directory and start playing. The player minimizes to the system tray for quick access, allowing you to control playback directly from the right-click context menu. - - Enhanced Playback Options: - - Minimalistic Interface: A clean, distraction-free design with multiple themes and an equalizer. - - DSP Effects: Immerse yourself with 3D rotation, echo, flanger. - - Customizable Playback: Adjust pitch, tempo, and frequency or choose sequential or random play modes. - - Fade In & Fade Out: Smooth transitions between songs with automatic fade in and fade out effects. - - Extra Features: - - Auto-Skip Loud Songs: Automatically skip songs exceeding a user-defined loudness threshold. - - Auto-Skip Old Files: Play only recent additions by setting a cutoff date for older tracks. - - Automatic Lyrics Support: Automatically download and display synchronized lyrics (LRC and JSON format) in real-time, perfect for karaoke or following along with your favorite songs. - - Peak Level Normalization: Automatically adjust volume levels for consistent sound clarity, even for silent or low-volume tracks. - - TTS DJ Announcements: Announce song filenames before playback using the built-in Microsoft SAPI Text-to-Speech engine. Customize the DJ voice or disable it for uninterrupted listening. - - Vov Music Player is designed to run smoothly without taxing your system resources. Whether you're working, browsing, or relaxing, it transforms your computer into the ultimate music companion. - - Rediscover your music collection with Vov Music Player—a feature-rich audio player that keeps things simple while delivering a premium listening experience. -Tags: -- Audio -- Media -- Music -- Player -ReleaseNotesUrl: https://vovsoft.com/version-history/vov-music-player/ -Documentations: -- DocumentLabel: Vov Music Player Help - DocumentUrl: https://vovsoft.com/help/vov-music-player/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/v/VovSoft/VovMusicPlayer/12.5.0.0/VovSoft.VovMusicPlayer.yaml b/manifests/v/VovSoft/VovMusicPlayer/12.5.0.0/VovSoft.VovMusicPlayer.yaml deleted file mode 100644 index 68042a905fa0c..0000000000000 --- a/manifests/v/VovSoft/VovMusicPlayer/12.5.0.0/VovSoft.VovMusicPlayer.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.12.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: VovSoft.VovMusicPlayer -PackageVersion: 12.5.0.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From d86a2f3c1810e35dd3d04a77d82aaae90b3348e7 Mon Sep 17 00:00:00 2001 From: Alex Gorischek Date: Sun, 19 Jul 2026 21:42:51 -0700 Subject: [PATCH 42/44] Update: DollarLint.DollarLint to 0.1.16 (#404682) Co-authored-by: dollarlint-release --- .../DollarLint.DollarLint.installer.yaml | 26 ++++++++++++++++ .../DollarLint.DollarLint.locale.en-US.yaml | 30 +++++++++++++++++++ .../0.1.16/DollarLint.DollarLint.yaml | 7 +++++ 3 files changed, 63 insertions(+) create mode 100644 manifests/d/DollarLint/DollarLint/0.1.16/DollarLint.DollarLint.installer.yaml create mode 100644 manifests/d/DollarLint/DollarLint/0.1.16/DollarLint.DollarLint.locale.en-US.yaml create mode 100644 manifests/d/DollarLint/DollarLint/0.1.16/DollarLint.DollarLint.yaml diff --git a/manifests/d/DollarLint/DollarLint/0.1.16/DollarLint.DollarLint.installer.yaml b/manifests/d/DollarLint/DollarLint/0.1.16/DollarLint.DollarLint.installer.yaml new file mode 100644 index 0000000000000..2f03849b0e9a6 --- /dev/null +++ b/manifests/d/DollarLint/DollarLint/0.1.16/DollarLint.DollarLint.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: DollarLint.DollarLint +PackageVersion: 0.1.16 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-07-20" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: dollarlint.exe + PortableCommandAlias: dollarlint + InstallerUrl: https://github.com/dollarlint/dollarlint/releases/download/v0.1.16/dollarlint_0.1.16_windows_arm64.zip + InstallerSha256: 2366df6637d6dc29506e682e8f3fb96277028762335cdd74cd71335dd04918e0 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: dollarlint.exe + PortableCommandAlias: dollarlint + InstallerUrl: https://github.com/dollarlint/dollarlint/releases/download/v0.1.16/dollarlint_0.1.16_windows_amd64.zip + InstallerSha256: c72c647fbd8de09c63728a1443542f9f95a80038f66cd275185461e366c37b51 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DollarLint/DollarLint/0.1.16/DollarLint.DollarLint.locale.en-US.yaml b/manifests/d/DollarLint/DollarLint/0.1.16/DollarLint.DollarLint.locale.en-US.yaml new file mode 100644 index 0000000000000..b00c76696deb3 --- /dev/null +++ b/manifests/d/DollarLint/DollarLint/0.1.16/DollarLint.DollarLint.locale.en-US.yaml @@ -0,0 +1,30 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: DollarLint.DollarLint +PackageVersion: 0.1.16 +PackageLocale: en-US +Publisher: DollarLint +PublisherUrl: https://github.com/dollarlint +PublisherSupportUrl: https://github.com/dollarlint/dollarlint/issues +PackageName: DollarLint +PackageUrl: https://github.com/dollarlint/dollarlint +License: MIT +LicenseUrl: https://github.com/dollarlint/dollarlint/blob/main/LICENSE +ShortDescription: Validate JSON-family, YAML, and TOML files against their declared JSON Schemas. +Description: DollarLint validates JSON, JSONC, JSON5, JSON Lines, YAML, and TOML files against JSON Schemas. +Moniker: DollarLint +Tags: + - cli + - json-schema + - json + - yaml + - toml + - validation +ReleaseNotes: | + ## Changelog + + ### Dependencies + - Bumped `prettier` from 3.8.3 to 3.9.5 in `/docs` (PR #89) +ReleaseNotesUrl: https://github.com/dollarlint/dollarlint/releases/tag/v0.1.16 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DollarLint/DollarLint/0.1.16/DollarLint.DollarLint.yaml b/manifests/d/DollarLint/DollarLint/0.1.16/DollarLint.DollarLint.yaml new file mode 100644 index 0000000000000..58e4ebd5f9436 --- /dev/null +++ b/manifests/d/DollarLint/DollarLint/0.1.16/DollarLint.DollarLint.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.12.0.schema.json +PackageIdentifier: DollarLint.DollarLint +PackageVersion: 0.1.16 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From f122f45b1846b927f21b275186cfc8a17831f2db Mon Sep 17 00:00:00 2001 From: UnownBot Date: Mon, 20 Jul 2026 00:43:04 -0400 Subject: [PATCH 43/44] New version: Microsoft.SafetyScanner version 1.455.230.0 (#404683) --- .../Microsoft.SafetyScanner.installer.yaml | 18 +++++++++++++++ .../Microsoft.SafetyScanner.locale.en-US.yaml | 23 +++++++++++++++++++ .../1.455.230.0/Microsoft.SafetyScanner.yaml | 8 +++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/m/Microsoft/SafetyScanner/1.455.230.0/Microsoft.SafetyScanner.installer.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.455.230.0/Microsoft.SafetyScanner.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.455.230.0/Microsoft.SafetyScanner.yaml diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.230.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.230.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 0000000000000..5eea300136973 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.230.0/Microsoft.SafetyScanner.installer.yaml @@ -0,0 +1,18 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.230.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-07-20 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.230.0&arch=x86 + InstallerSha256: 71F6FA78E59C007D1F19FCBC1AB45C2FC88033C219978A1B5B1D2927A2EB49D2 +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.455.230.0&arch=amd64 + InstallerSha256: D335248B65ACE4B311E9EB08E2697D548B888A055C10DA89785612B521F6DEAD +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.230.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.230.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 0000000000000..b7c07f3fd00ae --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.230.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.230.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft Safety Scanner +PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download +License: Proprietary +Copyright: © Microsoft Corporation. All rights reserved. +ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. +Description: |- + A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. + + The tool uses the same security intelligence update definitions as (among others) Microsoft Defender Antivirus. Safety Scanner does however not have an internal definition update checker, but does get app updates every 3-4 hours. Thus, the Winget package may lag some days behind Windows Update + Microsoft Defender Antivirus. +Tags: +- microsoft-defender-antivirus +- microsoft-safety-scanner +- msert +- windows-security +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.455.230.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.455.230.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 0000000000000..86bd663e1f628 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.455.230.0/Microsoft.SafetyScanner.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.455.230.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 2b09109cb75c2741eae33c5d0f8be8bbafb7e357 Mon Sep 17 00:00:00 2001 From: Ryan Wilson Date: Sun, 19 Jul 2026 21:43:15 -0700 Subject: [PATCH 44/44] New version: dune-admin 0.46.4 (#404685) Co-authored-by: goreleaserbot --- .../0.46.4/Icehunter.dune-admin.installer.yaml | 18 ++++++++++++++++++ .../Icehunter.dune-admin.locale.en-US.yaml | 17 +++++++++++++++++ .../0.46.4/Icehunter.dune-admin.yaml | 7 +++++++ 3 files changed, 42 insertions(+) create mode 100644 manifests/i/Icehunter/dune-admin/0.46.4/Icehunter.dune-admin.installer.yaml create mode 100644 manifests/i/Icehunter/dune-admin/0.46.4/Icehunter.dune-admin.locale.en-US.yaml create mode 100644 manifests/i/Icehunter/dune-admin/0.46.4/Icehunter.dune-admin.yaml diff --git a/manifests/i/Icehunter/dune-admin/0.46.4/Icehunter.dune-admin.installer.yaml b/manifests/i/Icehunter/dune-admin/0.46.4/Icehunter.dune-admin.installer.yaml new file mode 100644 index 0000000000000..175c7ad9c3bc4 --- /dev/null +++ b/manifests/i/Icehunter/dune-admin/0.46.4/Icehunter.dune-admin.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.12.0.schema.json +PackageIdentifier: Icehunter.dune-admin +PackageVersion: 0.46.4 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-07-20" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: dune-admin.exe + PortableCommandAlias: dune-admin + InstallerUrl: https://github.com/Icehunter/dune-admin/releases/download/v0.46.4/dune-admin_windows_amd64.zip + InstallerSha256: e327de8bcc0b530129cc1ed59396418a5ac329eb95c0d643ebde290b2452d733 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/Icehunter/dune-admin/0.46.4/Icehunter.dune-admin.locale.en-US.yaml b/manifests/i/Icehunter/dune-admin/0.46.4/Icehunter.dune-admin.locale.en-US.yaml new file mode 100644 index 0000000000000..063e7a99b624e --- /dev/null +++ b/manifests/i/Icehunter/dune-admin/0.46.4/Icehunter.dune-admin.locale.en-US.yaml @@ -0,0 +1,17 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: Icehunter.dune-admin +PackageVersion: 0.46.4 +PackageLocale: en-US +Publisher: Icehunter +PublisherUrl: https://github.com/Icehunter +PublisherSupportUrl: https://github.com/Icehunter/dune-admin/issues +PackageName: dune-admin +PackageUrl: https://github.com/Icehunter/dune-admin +License: MIT +LicenseUrl: https://github.com/Icehunter/dune-admin/blob/main/LICENSE +ShortDescription: Local-first, provider-aware terminal agent. +Description: dune-admin is a local-first, provider-aware terminal agent that maintains Claude Code wire compatibility while innovating on behavior and architecture. +Moniker: dune-admin +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/Icehunter/dune-admin/0.46.4/Icehunter.dune-admin.yaml b/manifests/i/Icehunter/dune-admin/0.46.4/Icehunter.dune-admin.yaml new file mode 100644 index 0000000000000..5a4a254706790 --- /dev/null +++ b/manifests/i/Icehunter/dune-admin/0.46.4/Icehunter.dune-admin.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.12.0.schema.json +PackageIdentifier: Icehunter.dune-admin +PackageVersion: 0.46.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0