Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Created with WinGet Updater using komac v2.14.0
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json

PackageIdentifier: alexpasmantier.television
PackageVersion: 0.14.3
InstallerType: zip
NestedInstallerType: portable
NestedInstallerFiles:
- RelativeFilePath: tv.exe
UpgradeBehavior: install
Dependencies:
PackageDependencies:
- PackageIdentifier: Microsoft.VCRedist.2015+.x64
ReleaseDate: 2025-12-28
Installers:
- Architecture: x64
InstallerUrl: https://github.com/alexpasmantier/television/releases/download/0.14.3/tv-0.14.3-x86_64-pc-windows-msvc.zip
InstallerSha256: 61227410C5893F09CD85C3AA189A809D1F360F0F36A09CF92EDEE4022041A366
ManifestType: installer
ManifestVersion: 1.10.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Created with WinGet Updater using komac v2.14.0
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json

PackageIdentifier: alexpasmantier.television
PackageVersion: 0.14.3
PackageLocale: en-US
Publisher: alexpasmantier
PublisherUrl: https://github.com/alexpasmantier
PublisherSupportUrl: https://github.com/alexpasmantier/television/issues
PackageName: Television
PackageUrl: https://github.com/alexpasmantier/television
License: MIT
LicenseUrl: https://github.com/alexpasmantier/television/blob/HEAD/LICENSE
Copyright: Copyright (c) Alexandre Pasmantier <[email protected]>
CopyrightUrl: https://github.com/alexpasmantier/television/blob/main/LICENSE
ShortDescription: A cross-platform, fast and extensible general purpose fuzzy finder TUI.
Tags:
- cli
- command-line-tool
- fuzzy
- fuzzy-matching
- fuzzy-search
- rust
- terminal
- tui
ReleaseNotes: |-
0.14.3 - 2025-12-28
🚜 Refactor
- c4aaa16 (previews) Preview caching is now an opt-out feature by @alexpasmantier
- 903d034 (zsh) Use the dedicated channel for the zsh history shell integration by @alexpasmantier in #830
📚 Documentation
- 8c15b9b (cli) Update tv --help output (auto) by @github-actions[bot] in #827
- aa2b210 (cli) Update tv --help output (auto) by @github-actions[bot] in #825
- 976d83f (uncategorized) Fix command option in README for tv preview by @driftcell in #828
⚡ Performance
- 78acbc7 (preview) Caching strategy improvements by @alexpasmantier in #826
⚙️ Miscellaneous Tasks
- f994ff7 (changelog) Update changelog (auto) by @github-actions[bot] in #824
- 5379d40 (uncategorized) Release version 0.14.3 by @alexpasmantier
New Contributors
- @driftcell made their first contribution in #828
Full Changelog: 0.14.2...0.14.3
ReleaseNotesUrl: https://github.com/alexpasmantier/television/releases/tag/0.14.3
ManifestType: defaultLocale
ManifestVersion: 1.10.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Created with WinGet Updater using komac v2.14.0
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json

PackageIdentifier: alexpasmantier.television
PackageVersion: 0.14.3
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.10.0
16 changes: 16 additions & 0 deletions manifests/d/dprint/dprint/0.51.0/dprint.dprint.installer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Created with komac v2.14.0
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json

PackageIdentifier: dprint.dprint
PackageVersion: 0.51.0
InstallerType: zip
NestedInstallerType: portable
NestedInstallerFiles:
- RelativeFilePath: dprint.exe
ReleaseDate: 2025-12-28
Installers:
- Architecture: x64
InstallerUrl: https://github.com/dprint/dprint/releases/download/0.51.0/dprint-x86_64-pc-windows-msvc.zip
InstallerSha256: FE6C0BE73C4FA8A77672BF4271B019D767FABDD0B8CC10DF2FD9842399E19E7E
ManifestType: installer
ManifestVersion: 1.10.0
92 changes: 92 additions & 0 deletions manifests/d/dprint/dprint/0.51.0/dprint.dprint.locale.en-US.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
# Created with komac v2.14.0
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json

PackageIdentifier: dprint.dprint
PackageVersion: 0.51.0
PackageLocale: en-US
Publisher: dsherret
PublisherUrl: https://github.com/dprint
PublisherSupportUrl: https://github.com/dprint/dprint/issues
PackageName: dprint
PackageUrl: https://github.com/dprint/dprint
License: MIT
LicenseUrl: https://github.com/dprint/dprint/blob/HEAD/LICENSE
ShortDescription: Pluggable and configurable code formatting platform written in Rust.
Tags:
- formatter
ReleaseNotes: |-
Features
Global Configuration File
dprint now supports a global configuration file that can be used when not in a project. (#1040)
Initialize a global config:
dprint init --global
# or
dprint config init --global
The global config location is customizable via the DPRINT_CONFIG_DIR environment variable, but by default is stored in:
- Linux/Mac: ~/.config/dprint/dprint.json (or $XDG_CONFIG_HOME/dprint/dprint.json)
- Windows: %APPDATA%\dprint\dprint.json
Note: You can edit the config by running dprint config edit --global
Use global config for formatting:
Once setup, the global configuration will be used by default when there's no dprint configuration file in the current directory tree; however, to prevent accidentally formatting such directories, a prompt is shown when calling dprint fmt:
> dprint fmt
Warning You're not in a dprint project. Format '/home/david' anyway? (Y/n) █
Hint: Specify the directory to bypass this prompt in the future (ex. `dprint fmt .`)
As the hint states, you can bypass the confirmation prompt by providing the current directory:
> dprint fmt .
Formatted 1 file.
To format files using only the global configuration and ignore local configuration files use:
dprint fmt --config-discovery=global
Manage global config:
# Add plugins to global config
dprint config add --global
# Update global config
dprint config update --global
# Edit global config
dprint config edit --global
Full docs: https://dprint.dev/global-config/
Improved dprint check Output
When files are not formatted, dprint check now suggests running dprint fmt to fix them, making it clearer for new users contributing to your projects what to do next. (#1056)
Found 3 not formatted files. Run dprint fmt to fix.
dprint check --fail-fast
Stops checking files and exit on the first file that isn't formatted. This is useful when you want even faster feedback. (#1054)
dprint check --fail-fast
Note: When using --log-level=silent, --fail-fast is now enabled by default.
Breaking Changes
- dprint config update is now non-recursive by default - The command now only updates the configuration file in the current directory by default, rather than updating all config files in descendant directories. Use --recursive (or -r) to update configuration files recursively. (#1053)
# Update only the current config (new default)
dprint config update
# Update current config and all descendant configs
dprint config update --recursive
Other Changes
- Added updateUrl to editor-info command output (#1027)
Install
Run dprint upgrade or see https://dprint.dev/install/
Checksums
───────────────────────────────────────────┬────────────────────────────────────────────────────────────────
Artifact │SHA-256 Checksum
───────────────────────────────────────────┼────────────────────────────────────────────────────────────────
dprint-x86_64-apple-darwin.zip │1fa152f36a4aa519fa9f233f49f2fb54cc063c77d40ba9f4fc54ea77a4068e0b
───────────────────────────────────────────┼────────────────────────────────────────────────────────────────
dprint-aarch64-apple-darwin.zip │f3fb85da6b10011835f3b5a14faf11d03594b4b3b32602ae2b45418794c5039b
───────────────────────────────────────────┼────────────────────────────────────────────────────────────────
dprint-x86_64-pc-windows-msvc.zip │fe6c0be73c4fa8a77672bf4271b019d767fabdd0b8cc10df2fd9842399e19e7e
───────────────────────────────────────────┼────────────────────────────────────────────────────────────────
dprint-x86_64-pc-windows-msvc-installer.exe│8bbb3a89960f12c6f9e2f53de44cee7ae72ccc89e90ff1213e6b5f8bb49c3ca1
───────────────────────────────────────────┼────────────────────────────────────────────────────────────────
dprint-x86_64-unknown-linux-gnu.zip │ee5ff0865c461ef6d3023a491f2ee5c1c63c833a15fb3c42fdb2ef835b1c7072
───────────────────────────────────────────┼────────────────────────────────────────────────────────────────
dprint-x86_64-unknown-linux-musl.zip │9a8b8ad3429a1ae5733e2c237b313c8650626cc48cf972927e7c3fc651eb6ba2
───────────────────────────────────────────┼────────────────────────────────────────────────────────────────
dprint-aarch64-unknown-linux-gnu.zip │5169106061f04805aa089cdd0a73fb913cfda3bc70038546abf4283992db19bd
───────────────────────────────────────────┼────────────────────────────────────────────────────────────────
dprint-aarch64-unknown-linux-musl.zip │bb56d7ac441c905c33f77114c450337e54a263a0ce449da23a0f03b2778368d8
───────────────────────────────────────────┼────────────────────────────────────────────────────────────────
dprint-riscv64gc-unknown-linux-gnu.zip │5d20460a263e858bd28b61be2ddec12277863c8f29ddc4591c18105ec3d2ab0c
───────────────────────────────────────────┼────────────────────────────────────────────────────────────────
dprint-loongarch64-unknown-linux-gnu.zip │5f7c6fbdf735231c5319298c9302c93931b14c824f25837505308ac5e53f2573
───────────────────────────────────────────┼────────────────────────────────────────────────────────────────
dprint-loongarch64-unknown-linux-musl.zip │516e712f47ba2fcb9a1f389176d32334d0dce86a26e207002ec4dddc2f10ddf8
───────────────────────────────────────────┴────────────────────────────────────────────────────────────────
ReleaseNotesUrl: https://github.com/dprint/dprint/releases/tag/0.51.0
ManifestType: defaultLocale
ManifestVersion: 1.10.0
8 changes: 8 additions & 0 deletions manifests/d/dprint/dprint/0.51.0/dprint.dprint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Created with komac v2.14.0
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json

PackageIdentifier: dprint.dprint
PackageVersion: 0.51.0
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.10.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Created using wingetcreate 1.10.3.0
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json

PackageIdentifier: GiulioSorrentino.WinDateFrom
PackageVersion: 6.0.0.1
InstallerType: wix
Dependencies:
PackageDependencies:
- PackageIdentifier: Microsoft.DotNet.DesktopRuntime.10
ProductCode: '{A2941143-09E9-45AD-8017-0DB4298D80D4}'
Installers:
- Architecture: x64
InstallerUrl: https://github.com/GiulianoSpaghetti/WinDateFrom.avalonia/releases/download/6.0/WinDateFrom.Avalonia-6.0.0.1-amd64.msi
InstallerSha256: FC3F86F342B8B8687A591AF41C363FD45B492EFD2FCE30EC891ACEB6AE1EF28C
- Architecture: arm64
InstallerUrl: https://github.com/GiulianoSpaghetti/WinDateFrom.avalonia/releases/download/6.0/WinDateFrom.Avalonia-6.0.0.1-arm64.msi
InstallerSha256: 2BE75DCF392DC03317F52E919FEEAE89FEE5281E86096A48E057E29CC6D59618
ManifestType: installer
ManifestVersion: 1.10.0
ReleaseDate: 2025-11-20
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Created using wingetcreate 1.10.3.0
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json

PackageIdentifier: GiulioSorrentino.WinDateFrom
PackageVersion: 6.0.0.1
PackageLocale: en-US
Publisher: Giulio Sorrentino
PublisherUrl: https://numerone.altervista.org
PublisherSupportUrl: https://github.com/numerunix/WinDateFrom.avalonia/issues
Author: Giulio Sorrentino
PackageName: WinDateFrom
PackageUrl: https://github.com/numerunix/WinDateFrom.avalonia/releases/download/4.6/WinDateFrom.Avalonia-4.6-amd64.msi
License: GPLv3+
LicenseUrl: https://github.com/numerunix/WinDateFrom.avalonia/blob/master/LICENSE.txt
Copyright: 2023 Giulio Sorrentino
ShortDescription: An app for calculating how mutch time passed from an event
Description: Questa app mostra quanto tempo è passato da una data ben definita che dovrebbe rappresentare un evento, tipo l'incontro con una persona amata, e mostra quanto tempo è passato da quella data. Se volete approcciare le madame e non le p... vi serve qualcosa in più. Le madame amano essere pensate e ci tengono agli anniversari, ma il logorio della vita moderna fa sì che si scordino il nome delle persone con cui si vogliono vedere col vestito da sposa. Per cui io ho creato un software per appuntare la data ed il nome, poi quano vedete una madama vi segnate la data e poi la seconda volta che la reincontrate, con molta probabilità, molto casualmente le dite "noi due ci siamo già visti il..., mi dici il tuo nome? Oh che bel nome ce lo prendiamo un caffé insieme?" e vedete che è un grandissimo aiuto per fare conquiste. Se avete un computer con NPU potete augurare direttamente col microfono i mesiverari e gli anniversari o corteggiare ricordando il numero di giorni dal primo incontro non dalla prima... con l'IA.
ReleaseNotesUrl: https://github.com/GiulianoSpaghetti/WinDateFrom.avalonia/releases/tag/6.0
Documentations:
- DocumentLabel: Wiki
DocumentUrl: https://github.com/GiulianoSpaghetti/WinDateFrom.avalonia/wiki
ManifestType: defaultLocale
ManifestVersion: 1.10.0
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Created using wingetcreate 1.10.3.0
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json

PackageIdentifier: GiulioSorrentino.WinDateFrom
PackageVersion: 6.0.0.1
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.10.0
18 changes: 18 additions & 0 deletions manifests/z/zTools/zTools/1.2.2/zTools.zTools.installer.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Created with YamlCreate.ps1 Dumplings Mod
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json

PackageIdentifier: zTools.zTools
PackageVersion: 1.2.2
InstallerType: nullsoft
Scope: user
InstallerSwitches:
Upgrade: --updated
UpgradeBehavior: install
ProductCode: b7f771d0-2e39-509d-9099-3f63c1554aca
ReleaseDate: 2025-12-28
Installers:
- Architecture: x64
InstallerUrl: https://github.com/ZToolsCenter/ZTools/releases/download/v1.2.2/ZTools-1.2.2-x64-setup.exe
InstallerSha256: A2AC52C3E7045CBE23D56180DD80244FAE8A44181CB75BCA6746E9FB410F0CC1
ManifestType: installer
ManifestVersion: 1.10.0
34 changes: 34 additions & 0 deletions manifests/z/zTools/zTools/1.2.2/zTools.zTools.locale.en-US.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Created with YamlCreate.ps1 Dumplings Mod
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json

PackageIdentifier: zTools.zTools
PackageVersion: 1.2.2
PackageLocale: en-US
ShortDescription: A high-performance, scalable application launcher and plugin platform
Description: |-
A high-performance, scalable application launcher and plugin platform
✨ Features
- 🚀 Fast Launch - Pinyin search, regex matching, history, and pinned apps
- 🧩 Plugin System - Supports UI and headless plugins, with full API support
- 📋 Clipboard Manager - History, search, image support, cross-platform native implementation
- 🎨 Theme Customization - System/light/dark modes, 6 theme colors available
- ⚡ High Performance - LMDB database, WebContentsView architecture, instant response
- 🌍 Cross-Platform - Native support for macOS and Windows, unified experience
- 🔒 Data Isolation - Plugins store data independently, secure and reliable
- 🛠️ Developer-Friendly - Full TypeScript type support, hot reload development
- ⚙️ Latest Tech Stack - Electron 38.5 + Node 22.20 + Chrome 140
Tags:
- add-on
- addon
- app
- application
- extension
- find
- launcher
- plugin
- productivity
- search
- tool
- utility
ManifestType: locale
ManifestVersion: 1.10.0
40 changes: 40 additions & 0 deletions manifests/z/zTools/zTools/1.2.2/zTools.zTools.locale.zh-CN.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Created with YamlCreate.ps1 Dumplings Mod
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json

PackageIdentifier: zTools.zTools
PackageVersion: 1.2.2
PackageLocale: zh-CN
Publisher: lzx8589561
PublisherUrl: https://github.com/ZToolsCenter
PublisherSupportUrl: https://github.com/ZToolsCenter/ZTools/issues
PackageName: zTools
PackageUrl: https://github.com/ZToolsCenter/ZTools
License: MIT
LicenseUrl: https://github.com/ZToolsCenter/ZTools/blob/HEAD/LICENSE
Copyright: Copyright (c) 2025 lzx8589561
ShortDescription: 一个高性能、可扩展的应用启动器和插件平台
Description: |-
一个高性能、可扩展的应用启动器和插件平台
✨ 特性
- 🚀 快速启动 - 拼音搜索、正则匹配、历史记录、固定应用
- 🧩 插件系统 - 支持 UI 插件和无界面插件,完整的 API 支持
- 📋 剪贴板管理 - 历史记录、搜索、图片支持、跨平台原生实现
- 🎨 主题定制 - 系统/亮色/暗色模式,6 种主题色可选
- ⚡ 高性能 - LMDB 数据库、WebContentsView 架构、极速响应
- 🌍 跨平台 - 原生支持 macOS 和 Windows,统一体验
- 🔒 数据隔离 - 插件数据独立存储,安全可靠
- 🛠️ 开发友好 - 完整的 TypeScript 类型支持,热重载开发
- ⚙️ 最新技术栈 - Electron 38.5 + Node 22.20 + Chrome 140
Tags:
- 启动器
- 工具
- 应用
- 扩展
- 插件
- 搜索
- 效率
- 查找
- 生产力
ReleaseNotesUrl: https://github.com/ZToolsCenter/ZTools/releases/tag/v1.2.2
ManifestType: defaultLocale
ManifestVersion: 1.10.0
Loading
Loading