From 38030ef9ff63be99e788fb9812d67eed16e41aaf Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 7 Dec 2024 02:35:09 +0800 Subject: [PATCH 01/58] New version: Ollama.Ollama version 0.5.0 (#196778) --- .../Ollama/0.5.0/Ollama.Ollama.installer.yaml | 18 +++ .../0.5.0/Ollama.Ollama.locale.en-US.yaml | 113 ++++++++++++++++++ .../0.5.0/Ollama.Ollama.locale.zh-CN.yaml | 27 +++++ .../o/Ollama/Ollama/0.5.0/Ollama.Ollama.yaml | 8 ++ 4 files changed, 166 insertions(+) create mode 100644 manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.installer.yaml create mode 100644 manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.locale.en-US.yaml create mode 100644 manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.locale.zh-CN.yaml create mode 100644 manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.yaml diff --git a/manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.installer.yaml b/manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.installer.yaml new file mode 100644 index 0000000000000..4728f34345a5e --- /dev/null +++ b/manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Ollama.Ollama +PackageVersion: 0.5.0 +InstallerType: inno +Scope: user +UpgradeBehavior: install +Commands: +- ollama +ProductCode: '{44E83376-CE68-45EB-8FC1-393500EB558C}_is1' +ReleaseDate: 2024-12-04 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ollama/ollama/releases/download/v0.5.0/OllamaSetup.exe + InstallerSha256: 44C155354F85E6A6910EFA2443D4FB3AA32C9ABA0F77FE081B641D3C53E4CFF0 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.locale.en-US.yaml b/manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.locale.en-US.yaml new file mode 100644 index 0000000000000..29be7fad813a7 --- /dev/null +++ b/manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.locale.en-US.yaml @@ -0,0 +1,113 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Ollama.Ollama +PackageVersion: 0.5.0 +PackageLocale: en-US +Publisher: Ollama +PublisherUrl: https://ollama.com/ +PublisherSupportUrl: https://github.com/ollama/ollama/issues +PackageName: Ollama +PackageUrl: https://ollama.com/ +License: MIT +LicenseUrl: https://github.com/ollama/ollama/blob/main/LICENSE +Copyright: Copyright (c) Ollama +ShortDescription: Get up and running with large language models locally. +Tags: +- llama +- llama2 +- llm +- llms +- mistral +ReleaseNotes: |- + Structured outputs + Ollama now supports structured outputs, making it possible to constrain a model's output to a specific format defined by a JSON schema. The Ollama Python and JavaScript libraries have been updated to support structured outputs, together with Ollama's OpenAI-compatible API endpoints. + REST API + To use structured outputs in Ollama's generate or chat APIs, provide a JSON schema object in the format parameter: + curl -X POST http://localhost:11434/api/chat -H "Content-Type: application/json" -d '{ + "model": "llama3.1", + "messages": [{"role": "user", "content": "Tell me about Canada."}], + "stream": false, + "format": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "capital": { + "type": "string" + }, + "languages": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "required": [ + "name", + "capital", + "languages" + ] + } + }' + Python library + Using the Ollama Python library, pass in the schema as a JSON object to the format parameter as either dict or use Pydantic (recommended) to serialize the schema using model_json_schema(). + from ollama import chat + from pydantic import BaseModel + + class Country(BaseModel): + name: str + capital: str + languages: list[str] + + response = chat( + messages=[ + { + 'role': 'user', + 'content': 'Tell me about Canada.', + } + ], + model='llama3.1', + format=Country.model_json_schema(), + ) + + country = Country.model_validate_json(response.message.content) + print(country) + JavaScript library + Using the Ollama JavaScript library, pass in the schema as a JSON object to the format parameter as either object or use Zod (recommended) to serialize the schema using zodToJsonSchema(): + import ollama from 'ollama'; + import { z } from 'zod'; + import { zodToJsonSchema } from 'zod-to-json-schema'; + + const Country = z.object({ + name: z.string(), + capital: z.string(), + languages: z.array(z.string()), + }); + + const response = await ollama.chat({ + model: 'llama3.1', + messages: [{ role: 'user', content: 'Tell me about Canada.' }], + format: zodToJsonSchema(Country), + }); + + const country = Country.parse(JSON.parse(response.message.content)); + console.log(country); + What's Changed + - Fixed error importing model vocabulary files + - Experimental: new flag to set KV cache quantization to 4-bit (q4_0), 8-bit (q8_0) or 16-bit (f16). This reduces VRAM requirements for longer context windows. + - To enable for all models, use OLLAMA_FLASH_ATTENTION=1 OLLAMA_KV_CACHE_TYPE=q4_0 ollama serve + - Note: in the future flash attention will be enabled by default where available, with kv cache quantization available on a per-model basis + - Thank you @sammcj for the contribution in in https://github.com/ollama/ollama/pull/7926 + New Contributors + - @dmayboroda made their first contribution in https://github.com/ollama/ollama/pull/7906 + - @Geometrein made their first contribution in https://github.com/ollama/ollama/pull/7908 + - @owboson made their first contribution in https://github.com/ollama/ollama/pull/7693 + Full Changelog: https://github.com/ollama/ollama/compare/v0.4.7...v0.5.0 +ReleaseNotesUrl: https://github.com/ollama/ollama/releases/tag/v0.5.0 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://github.com/ollama/ollama/tree/main/docs +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.locale.zh-CN.yaml b/manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2bc18efa31c5e --- /dev/null +++ b/manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.locale.zh-CN.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: Ollama.Ollama +PackageVersion: 0.5.0 +PackageLocale: zh-CN +Publisher: Ollama +PublisherUrl: https://ollama.com/ +PublisherSupportUrl: https://github.com/ollama/ollama/issues +PackageName: Ollama +PackageUrl: https://ollama.com/ +License: MIT +LicenseUrl: https://github.com/ollama/ollama/blob/main/LICENSE +Copyright: Copyright (c) Ollama +ShortDescription: 在本地启动并运行大型语言模型 +Tags: +- llama +- llama2 +- llm +- llms +- mistral +ReleaseNotesUrl: https://github.com/ollama/ollama/releases/tag/v0.5.0 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://github.com/ollama/ollama/tree/main/docs +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.yaml b/manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.yaml new file mode 100644 index 0000000000000..4ceb02245083c --- /dev/null +++ b/manifests/o/Ollama/Ollama/0.5.0/Ollama.Ollama.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Ollama.Ollama +PackageVersion: 0.5.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 8e9e042ae7d2a9052a9141f182f11f2d1fb0b653 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 7 Dec 2024 02:37:36 +0800 Subject: [PATCH 02/58] New version: Unity.Unity.2022 version 2022.3.54f1 (#196500) --- .../Unity.Unity.2022.installer.yaml | 19 +++++ .../Unity.Unity.2022.locale.en-US.yaml | 83 +++++++++++++++++++ .../Unity.Unity.2022.locale.zh-CN.yaml | 31 +++++++ .../2022/2022.3.54f1/Unity.Unity.2022.yaml | 8 ++ 4 files changed, 141 insertions(+) create mode 100644 manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.installer.yaml create mode 100644 manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.locale.en-US.yaml create mode 100644 manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.locale.zh-CN.yaml create mode 100644 manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.yaml diff --git a/manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.installer.yaml b/manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.installer.yaml new file mode 100644 index 0000000000000..3a86c36c6c763 --- /dev/null +++ b/manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Unity.Unity.2022 +PackageVersion: 2022.3.54f1 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +ProductCode: Unity 2022.3.54f1 +ReleaseDate: 2024-12-04 +Installers: +- Architecture: x64 + InstallerUrl: https://download.unity3d.com/download_unity/129125d4e700/Windows64EditorInstaller/UnitySetup64-2022.3.54f1.exe + InstallerSha256: 530425C0BD8EEDEA986ACD730BE3DBBF02CC793C6DE410BA08D859A35A2DFBD7 + FileExtensions: + - unity + - unitypackage +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.locale.en-US.yaml b/manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.locale.en-US.yaml new file mode 100644 index 0000000000000..a8646a02ffcda --- /dev/null +++ b/manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.locale.en-US.yaml @@ -0,0 +1,83 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Unity.Unity.2022 +PackageVersion: 2022.3.54f1 +PackageLocale: en-US +Publisher: Unity Technologies ApS +PublisherUrl: https://unity.com +PublisherSupportUrl: https://support.unity.com +PrivacyUrl: https://unity.com/legal/privacy-policy +Author: Unity Technologies ApS +PackageName: Unity 2022 +PackageUrl: https://unity.com/download +License: Proprietary +LicenseUrl: https://unity.com/legal/terms-of-service +Copyright: © 2024 Unity Technologies ApS. All rights reserved. +CopyrightUrl: https://unity.com/legal/trademarks +ShortDescription: The world’s leading platform for real-time content creation +Description: |- + Unity is the ultimate game development platform. + Use Unity to build high-quality 3D and 2D games, deploy them across mobile, desktop, VR/AR, consoles or the Web, and connect with loyal and enthusiastic players and customers. +Tags: +- develop +- development +- game +- unity +- unity3d +ReleaseNotes: |- + Known Issues in 2022.3.54f1 + - Asset - Database: Crash on GetAssetCachedInfoV2 when opening a project (UUM-14959) + - DirectX12: Allocated graphics memory does not get released when the Editor is out of focus while using D3D12 graphics API (UUM-86354) + - DirectX12: Crash on GfxDeviceD3D12Base::DrawBuffersCommon when opening a project after changing the Graphics API to DirectX12 (UUM-77757) + - DirectX12: The Camera does not render correctly when the Camera.Rect() is changed and HDR is enabled and DX12 graphics API is selected (UUM-86917) + - Input: Crash on InputDeviceIOCTL when closing Unity editor (UUM-10774) + - Packman: Switching Project when importing complete project does not import all assets and project opens incomplete (UUM-88051) + - Text: Editor hangs when rendering TMP Text Component with Left and Right Margins set in the Extra Settings (UUM-84379) + - Vulkan: [Android] Particles not rendered in the Player on some Android devices with Android 14 (UUM-68080) + 2022.3.54f1 Release Notes + Improvements + - Core: Added the ability to configure the number of asset garbage collector helper threads via command line (-gc-helper-count N) and via boot.config file (gc-helper-count=N). + - Graphics: Added documentation for how shadow matte interacts with stencil and ray traced shadows for Unlit Shader Graph. (UUM-72348) + - Tests: Replaced the RecipeEngine.Modules.UnityCI dependency with UnityCI.Common. + Changes + - Tests: Enabled VideoPlayerPause test and added WebGL to supported platforms. (UUM-16194) + Fixes + - 2D: Fixed incorrect sampling for TextMesh when used with Pixel Perfect Camera. (UUM-51358) + - 2D: Fixed Sprite broken Sprite references in TextureImporter when SpriteRect are defined outside of it's texture. (UUM-84276) + - Cache Server: Fixed the crash while importing the Assets from Accelerator when it is disconnected. (UUM-76355) + - Editor: Added Arm64 Simulator architecture option to plugin importer for iOS/tvOS. (UUM-70551) + - Editor: Added Arm64 Simulator support for iOS/tvOS platforms. (UUM-2238) + - Editor: Fixed an issue where it was no longer possible to hide GameView's toolbar via editor mode. (UUM-85706) + - Editor: Fixed for Linux crash on right click in the middle of a window drag. (UUM-82814) + - Editor: Fixed null ref exception when trying to maximize a pop-up window. (UUM-76218) + - Editor: GPU crash guard in case of wrong custom shader. (UUM-87774) + - Editor: The Linux editor will now reduce CPU usage when moved to the background, respecting the "Interaction Mode" setting. (UUM-79514) + - Graphics: Fixed a problem with Texture Streaming where a material could remain blurry and not streamed in for an undefined amount of time. (UUM-73384) + - Graphics: Fixed an issue where "glClientWaitSync: Expected application to have kicked everything until job" error is spammed when disabling Raw Image. (UUM-35986) + - Graphics: Fixed cases where drawing line primitives would draw triangles instead. (UUM-66524) + - IL2CPP: Reduced internal memory overhead. (UUM-83219) + - iOS: Don't throw an exception when frameworks file is missing. (UUM-63104) + - Linux: Backport of runtime initialization in Linux Standalone 2022 LTS. (UUM-87612) + - Mono: Fixed crash when loading a class which contains fields at the end of the metadata table with a table size 65535. (UUM-78961) + - Mono: Fixed GC heap reporting to report reserved (free) sections. (UUM-53413) + - Package Manager: Fixed the issue where quick start button does not link to the document page for the current unity version. (UUM-78210) + - Shadergraph: Fixed so that pasting an empty group positions it based on the cursor's location. (UUM-76254) + - Shaders: Fixed a bug where incorrect line numbers are reported in preprocessor errors after block comments. (UUM-87896) + - Shaders: Fixed a rare crash in the Editor. (UUM-87927) + - Shaders: Fixed a rare error involving incompatible keyword states. (UUM-87539) + - Shaders: SHADER_TARGET macro is now available during shader import. (UUM-87423) + - UI Toolkit: Fixed popup fields not handling pointer up events. (UUM-85620) + - UI Toolkit: UI Builder can now be open during a package reimport. (UUM-77727) + - URP: Fixed the CameraDepthAttachment turning black for DX11. (UUM-64316) + - Windows: Corrected explicit mention of x64 for WindowsStandalone BuildTarget, it used for all 64 bit Windows Standalone targets. (UUM-87185) + Package changes in 2022.3.54f1 + Packages updated + - com.unity.splines: 2.7.1 to 2.7.2 +ReleaseNotesUrl: https://unity.com/releases/editor/whats-new/2022.3.54 +PurchaseUrl: https://store.unity.com/ +Documentations: +- DocumentLabel: Unity User Manual + DocumentUrl: https://docs.unity3d.com/2022.3/Documentation/Manual/ +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.locale.zh-CN.yaml b/manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b295d11b13f2d --- /dev/null +++ b/manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: Unity.Unity.2022 +PackageVersion: 2022.3.54f1 +PackageLocale: zh-CN +Publisher: Unity Technologies ApS +PublisherUrl: https://unity.com/cn +PublisherSupportUrl: https://support.unity.com +PrivacyUrl: https://unity.com/cn/legal/privacy-policy +Author: Unity Technologies ApS +PackageName: Unity 2022 +PackageUrl: https://unity.com/cn/download +License: 专有软件 +LicenseUrl: https://unity.com/cn/legal/terms-of-service +Copyright: © 2024 Unity Technologies ApS. All rights reserved. +CopyrightUrl: https://unity.com/cn/legal/trademarks +ShortDescription: 全球领先的实时内容创作平台 +Description: Unity 是旗舰游戏开发平台。使用 Unity 构建高质量的 3D 和 2D 游戏,将其部署至手机、桌面、VR/AR、游戏机或网页,并连接忠实热情的玩家与客户。 +Tags: +- unity +- unity3d +- 开发 +- 游戏 +ReleaseNotesUrl: https://unity.com/releases/editor/whats-new/2022.3.54 +PurchaseUrl: https://store.unity.com/cn +Documentations: +- DocumentLabel: Unity 用户手册 + DocumentUrl: https://docs.unity3d.com/cn/2022.3/Manual/ +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.yaml b/manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.yaml new file mode 100644 index 0000000000000..5a948738892bc --- /dev/null +++ b/manifests/u/Unity/Unity/2022/2022.3.54f1/Unity.Unity.2022.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Unity.Unity.2022 +PackageVersion: 2022.3.54f1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 1f2de8e8bd025de776104d2f2b9214614be1b013 Mon Sep 17 00:00:00 2001 From: Dvd-Znf <101937630+Dvd-Znf@users.noreply.github.com> Date: Fri, 6 Dec 2024 18:38:14 +0000 Subject: [PATCH 03/58] New version: yt-dlp.yt-dlp.nightly version 2024.12.06.161513 (#196782) --- .../yt-dlp.yt-dlp.nightly.installer.yaml | 21 +++++++ .../yt-dlp.yt-dlp.nightly.locale.en-US.yaml | 56 +++++++++++++++++++ .../yt-dlp.yt-dlp.nightly.yaml | 8 +++ 3 files changed, 85 insertions(+) create mode 100644 manifests/y/yt-dlp/yt-dlp/nightly/2024.12.06.161513/yt-dlp.yt-dlp.nightly.installer.yaml create mode 100644 manifests/y/yt-dlp/yt-dlp/nightly/2024.12.06.161513/yt-dlp.yt-dlp.nightly.locale.en-US.yaml create mode 100644 manifests/y/yt-dlp/yt-dlp/nightly/2024.12.06.161513/yt-dlp.yt-dlp.nightly.yaml diff --git a/manifests/y/yt-dlp/yt-dlp/nightly/2024.12.06.161513/yt-dlp.yt-dlp.nightly.installer.yaml b/manifests/y/yt-dlp/yt-dlp/nightly/2024.12.06.161513/yt-dlp.yt-dlp.nightly.installer.yaml new file mode 100644 index 0000000000000..d68366397e86b --- /dev/null +++ b/manifests/y/yt-dlp/yt-dlp/nightly/2024.12.06.161513/yt-dlp.yt-dlp.nightly.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: yt-dlp.yt-dlp.nightly +PackageVersion: 2024.12.06.161513 +InstallerType: portable +Commands: +- yt-dlp +ReleaseDate: 2024-12-06 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/download/2024.12.06.161513/yt-dlp_x86.exe + InstallerSha256: A80EE36DF39A7B1623C98261753C2D8B38C9FF5E55585F4850292A21AF50BB64 +- Architecture: x64 + InstallerUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/download/2024.12.06.161513/yt-dlp.exe + InstallerSha256: AA64A9A3AB99CC41DA51583670AF74671A1027FFE5D642C1A281312D23C53861 + Dependencies: + PackageDependencies: + - PackageIdentifier: Gyan.FFmpeg +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/y/yt-dlp/yt-dlp/nightly/2024.12.06.161513/yt-dlp.yt-dlp.nightly.locale.en-US.yaml b/manifests/y/yt-dlp/yt-dlp/nightly/2024.12.06.161513/yt-dlp.yt-dlp.nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..561052e071f7d --- /dev/null +++ b/manifests/y/yt-dlp/yt-dlp/nightly/2024.12.06.161513/yt-dlp.yt-dlp.nightly.locale.en-US.yaml @@ -0,0 +1,56 @@ +# Created with komac v2.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: yt-dlp.yt-dlp.nightly +PackageVersion: 2024.12.06.161513 +PackageLocale: en-US +Publisher: yt-dlp +PublisherUrl: https://github.com/yt-dlp +PublisherSupportUrl: https://github.com/yt-dlp/yt-dlp/issues +PackageName: yt-dlp-nightly +PackageUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds +License: Unlicense +LicenseUrl: https://github.com/yt-dlp/yt-dlp/blob/master/LICENSE +Copyright: pukkandan.ytdlp@gmail.com | UNLICENSE +ShortDescription: A feature-rich command-line audio/video downloader. +Description: |- + The yt-dlp nightly channel builds. + yt-dlp is a feature-rich command-line audio/video downloader with support for thousands of sites. + The project is a fork of youtube-dl based on the now inactive youtube-dlc. +Moniker: yt-dlp-nightly +Tags: +- audio +- audio-downloader +- download +- downloader +- media +- media-downloader +- nightly +- video +- video-downloader +- youtube +- youtube-dl +- youtube-dlp +- ytdlp +ReleaseNotes: |- + Generated from: Installation instructionsInstallation DiscordDiscord DonateDonate DocumentationDocumentationA description of the various files is in the README + + Core changes + - cookies: Add --cookies-from-browser support for MS Store Firefox (#11731) by wesson09 + Extractor changes + - bilibili: Fix HD formats extraction (#11734) by grqz + - soundcloud: Fix formats extraction (#11742) by bashonly + - youtube + - Fix n sig extraction for player 3bb1f723 (#11750) by bashonly (With fixes in 4bd2655) + - Fix signature function extraction (#11751) by bashonly + - Player client maintenance (#11724) by bashonly +ReleaseNotesUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/tag/2024.12.06.161513 +Documentations: +- DocumentLabel: Discord + DocumentUrl: https://discord.gg/H5MNcFW63r +- DocumentLabel: Update Channels + DocumentUrl: https://github.com/yt-dlp/yt-dlp#update-channels +- DocumentLabel: Wiki + DocumentUrl: https://github.com/yt-dlp/yt-dlp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/y/yt-dlp/yt-dlp/nightly/2024.12.06.161513/yt-dlp.yt-dlp.nightly.yaml b/manifests/y/yt-dlp/yt-dlp/nightly/2024.12.06.161513/yt-dlp.yt-dlp.nightly.yaml new file mode 100644 index 0000000000000..128400cf415ca --- /dev/null +++ b/manifests/y/yt-dlp/yt-dlp/nightly/2024.12.06.161513/yt-dlp.yt-dlp.nightly.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: yt-dlp.yt-dlp.nightly +PackageVersion: 2024.12.06.161513 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 7c9d0071c844e5b6dcc5639f2a27e59300fb4839 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 7 Dec 2024 02:49:52 +0800 Subject: [PATCH 04/58] New version: Sony.XperiaCompanion version 24.12.1.202411131539 (#193673) --- .../Sony.XperiaCompanion.installer.yaml | 8 ++++---- .../Sony.XperiaCompanion.locale.en-US.yaml | 10 ++-------- .../Sony.XperiaCompanion.locale.zh-CN.yaml | 10 ++-------- .../Sony.XperiaCompanion.yaml | 4 ++-- 4 files changed, 10 insertions(+), 22 deletions(-) rename manifests/s/Sony/XperiaCompanion/{24.11.1.202410161222 => 24.12.1.202411131539}/Sony.XperiaCompanion.installer.yaml (60%) rename manifests/s/Sony/XperiaCompanion/{24.11.1.202410161222 => 24.12.1.202411131539}/Sony.XperiaCompanion.locale.en-US.yaml (87%) rename manifests/s/Sony/XperiaCompanion/{24.11.1.202410161222 => 24.12.1.202411131539}/Sony.XperiaCompanion.locale.zh-CN.yaml (86%) rename manifests/s/Sony/XperiaCompanion/{24.11.1.202410161222 => 24.12.1.202411131539}/Sony.XperiaCompanion.yaml (60%) diff --git a/manifests/s/Sony/XperiaCompanion/24.11.1.202410161222/Sony.XperiaCompanion.installer.yaml b/manifests/s/Sony/XperiaCompanion/24.12.1.202411131539/Sony.XperiaCompanion.installer.yaml similarity index 60% rename from manifests/s/Sony/XperiaCompanion/24.11.1.202410161222/Sony.XperiaCompanion.installer.yaml rename to manifests/s/Sony/XperiaCompanion/24.12.1.202411131539/Sony.XperiaCompanion.installer.yaml index 6584e5b8a2100..4ee404f94cba8 100644 --- a/manifests/s/Sony/XperiaCompanion/24.11.1.202410161222/Sony.XperiaCompanion.installer.yaml +++ b/manifests/s/Sony/XperiaCompanion/24.12.1.202411131539/Sony.XperiaCompanion.installer.yaml @@ -1,15 +1,15 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-5.Win32NT +# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json PackageIdentifier: Sony.XperiaCompanion -PackageVersion: 24.11.1.202410161222 +PackageVersion: 24.12.1.202411131539 InstallerType: nullsoft Scope: user UpgradeBehavior: install +ProductCode: Xperia Companion Installers: - Architecture: x64 InstallerUrl: https://app.swup.update.sony.net/xperia-companion/installers/latest/Xperia_Companion.exe - InstallerSha256: 1FAE9C01BB4A48013E57EFFD0DBE60702AEE68BD150F8240ADD1F66C3E2D192D - ProductCode: Xperia Companion + InstallerSha256: F7BFE3D3E257CABA82DBA1D8507216BB2701616756A10BC5402459B6336808E9 ManifestType: installer ManifestVersion: 1.6.0 diff --git a/manifests/s/Sony/XperiaCompanion/24.11.1.202410161222/Sony.XperiaCompanion.locale.en-US.yaml b/manifests/s/Sony/XperiaCompanion/24.12.1.202411131539/Sony.XperiaCompanion.locale.en-US.yaml similarity index 87% rename from manifests/s/Sony/XperiaCompanion/24.11.1.202410161222/Sony.XperiaCompanion.locale.en-US.yaml rename to manifests/s/Sony/XperiaCompanion/24.12.1.202411131539/Sony.XperiaCompanion.locale.en-US.yaml index a62683594e118..c786feefced16 100644 --- a/manifests/s/Sony/XperiaCompanion/24.11.1.202410161222/Sony.XperiaCompanion.locale.en-US.yaml +++ b/manifests/s/Sony/XperiaCompanion/24.12.1.202411131539/Sony.XperiaCompanion.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-5.Win32NT +# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json PackageIdentifier: Sony.XperiaCompanion -PackageVersion: 24.11.1.202410161222 +PackageVersion: 24.12.1.202411131539 PackageLocale: en-US Publisher: Sony Corporation PublisherUrl: https://www.sony.com/ @@ -24,7 +24,6 @@ Description: |- It is strongly recommended to keep your computer plugged into a power source while repairing. Your device should be connected to the computer during the repair. You will not be able to use your phone during the repair, not even for emergency calls. -# Moniker: Tags: - android - backup @@ -36,10 +35,5 @@ Tags: - smartphone - sony - xperia -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: ManifestType: defaultLocale ManifestVersion: 1.6.0 diff --git a/manifests/s/Sony/XperiaCompanion/24.11.1.202410161222/Sony.XperiaCompanion.locale.zh-CN.yaml b/manifests/s/Sony/XperiaCompanion/24.12.1.202411131539/Sony.XperiaCompanion.locale.zh-CN.yaml similarity index 86% rename from manifests/s/Sony/XperiaCompanion/24.11.1.202410161222/Sony.XperiaCompanion.locale.zh-CN.yaml rename to manifests/s/Sony/XperiaCompanion/24.12.1.202411131539/Sony.XperiaCompanion.locale.zh-CN.yaml index 8861215d2e430..ac3439539e3a1 100644 --- a/manifests/s/Sony/XperiaCompanion/24.11.1.202410161222/Sony.XperiaCompanion.locale.zh-CN.yaml +++ b/manifests/s/Sony/XperiaCompanion/24.12.1.202411131539/Sony.XperiaCompanion.locale.zh-CN.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-5.Win32NT +# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json PackageIdentifier: Sony.XperiaCompanion -PackageVersion: 24.11.1.202410161222 +PackageVersion: 24.12.1.202411131539 PackageLocale: zh-CN Publisher: Sony Corporation PublisherUrl: https://www.sony.com.cn/ @@ -24,7 +24,6 @@ Description: |- 强烈建议您在修复时将计算机插上电源。 修复期间,应将您的设备连接到计算机。 修复期间,您将无法使用设备,即使有紧急电话。 -# Moniker: Tags: - xperia - 传输 @@ -36,10 +35,5 @@ Tags: - 智能手机 - 索尼 - 还原 -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: ManifestType: locale ManifestVersion: 1.6.0 diff --git a/manifests/s/Sony/XperiaCompanion/24.11.1.202410161222/Sony.XperiaCompanion.yaml b/manifests/s/Sony/XperiaCompanion/24.12.1.202411131539/Sony.XperiaCompanion.yaml similarity index 60% rename from manifests/s/Sony/XperiaCompanion/24.11.1.202410161222/Sony.XperiaCompanion.yaml rename to manifests/s/Sony/XperiaCompanion/24.12.1.202411131539/Sony.XperiaCompanion.yaml index 16469cbb9d1bc..99aa57be26a7a 100644 --- a/manifests/s/Sony/XperiaCompanion/24.11.1.202410161222/Sony.XperiaCompanion.yaml +++ b/manifests/s/Sony/XperiaCompanion/24.12.1.202411131539/Sony.XperiaCompanion.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-5.Win32NT +# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json PackageIdentifier: Sony.XperiaCompanion -PackageVersion: 24.11.1.202410161222 +PackageVersion: 24.12.1.202411131539 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.6.0 From 908d323360cbf305f394faca831c24f0c8d23f68 Mon Sep 17 00:00:00 2001 From: maforget <11904426+maforget@users.noreply.github.com> Date: Fri, 6 Dec 2024 13:56:00 -0500 Subject: [PATCH 05/58] Remove version: maforget.ComicRackCE.Nightly version nightly-fda75fd (#196788) --- ...aforget.ComicRackCE.Nightly.installer.yaml | 27 ------------------- ...rget.ComicRackCE.Nightly.locale.en-US.yaml | 20 -------------- .../maforget.ComicRackCE.Nightly.yaml | 8 ------ 3 files changed, 55 deletions(-) delete mode 100644 manifests/m/maforget/ComicRackCE/Nightly/nightly-fda75fd/maforget.ComicRackCE.Nightly.installer.yaml delete mode 100644 manifests/m/maforget/ComicRackCE/Nightly/nightly-fda75fd/maforget.ComicRackCE.Nightly.locale.en-US.yaml delete mode 100644 manifests/m/maforget/ComicRackCE/Nightly/nightly-fda75fd/maforget.ComicRackCE.Nightly.yaml diff --git a/manifests/m/maforget/ComicRackCE/Nightly/nightly-fda75fd/maforget.ComicRackCE.Nightly.installer.yaml b/manifests/m/maforget/ComicRackCE/Nightly/nightly-fda75fd/maforget.ComicRackCE.Nightly.installer.yaml deleted file mode 100644 index 788fb1ac0e170..0000000000000 --- a/manifests/m/maforget/ComicRackCE/Nightly/nightly-fda75fd/maforget.ComicRackCE.Nightly.installer.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with WinGet Releaser using komac v2.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: maforget.ComicRackCE.Nightly -PackageVersion: nightly-fda75fd -InstallerLocale: en-US -InstallerType: inno -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ProductCode: '{0FA63C63-846C-49B7-9A4B-553EF8EBEF0B}_is1' -ReleaseDate: 2024-12-02 -AppsAndFeaturesEntries: -- DisplayName: ComicRack Community Edition - Publisher: ComicRack Community - ProductCode: '{0FA63C63-846C-49B7-9A4B-553EF8EBEF0B}_is1' -ElevationRequirement: elevatesSelf -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\ComicRack Community Edition' -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/maforget/ComicRackCE/releases/download/nightly/ComicRackCESetup_nightly.exe - InstallerSha256: 03958CE57D6F7C0DC42B03C78DF933A371C344FC3AEF5764C278B77710545ED7 -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/m/maforget/ComicRackCE/Nightly/nightly-fda75fd/maforget.ComicRackCE.Nightly.locale.en-US.yaml b/manifests/m/maforget/ComicRackCE/Nightly/nightly-fda75fd/maforget.ComicRackCE.Nightly.locale.en-US.yaml deleted file mode 100644 index 7f5f8a4764b13..0000000000000 --- a/manifests/m/maforget/ComicRackCE/Nightly/nightly-fda75fd/maforget.ComicRackCE.Nightly.locale.en-US.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with WinGet Releaser using komac v2.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: maforget.ComicRackCE.Nightly -PackageVersion: nightly-fda75fd -PackageLocale: en-US -Publisher: maforget -PublisherUrl: https://github.com/maforget -PublisherSupportUrl: https://github.com/maforget/ComicRackCE/issues -PackageName: ComicRack Community Edition -PackageUrl: https://github.com/maforget/ComicRackCE -License: GPL-2.0 -LicenseUrl: https://github.com/maforget/ComicRackCE/blob/HEAD/LICENSE.txt -ShortDescription: 'A Community Edition for the legendary Comic Book Manager ComicRack. ComicRack is back from the dead. ' -Moniker: comicrackce -Tags: -- comicrack -ReleaseNotesUrl: https://github.com/maforget/ComicRackCE/releases/tag/nightly -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/m/maforget/ComicRackCE/Nightly/nightly-fda75fd/maforget.ComicRackCE.Nightly.yaml b/manifests/m/maforget/ComicRackCE/Nightly/nightly-fda75fd/maforget.ComicRackCE.Nightly.yaml deleted file mode 100644 index 7ed35e7eecb61..0000000000000 --- a/manifests/m/maforget/ComicRackCE/Nightly/nightly-fda75fd/maforget.ComicRackCE.Nightly.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: maforget.ComicRackCE.Nightly -PackageVersion: nightly-fda75fd -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 From 47b023032be1576b304e9d43f9d28b54132e019f Mon Sep 17 00:00:00 2001 From: DaMn good B0t <143536629+damn-good-b0t@users.noreply.github.com> Date: Fri, 6 Dec 2024 20:14:44 +0100 Subject: [PATCH 06/58] Update version: MongoDB.Shell version 2.3.4 (#194620) --- .../Shell/2.3.4/MongoDB.Shell.installer.yaml | 20 +++++++++++++ .../2.3.4/MongoDB.Shell.locale.en-US.yaml | 30 +++++++++++++++++++ .../m/MongoDB/Shell/2.3.4/MongoDB.Shell.yaml | 8 +++++ 3 files changed, 58 insertions(+) create mode 100644 manifests/m/MongoDB/Shell/2.3.4/MongoDB.Shell.installer.yaml create mode 100644 manifests/m/MongoDB/Shell/2.3.4/MongoDB.Shell.locale.en-US.yaml create mode 100644 manifests/m/MongoDB/Shell/2.3.4/MongoDB.Shell.yaml diff --git a/manifests/m/MongoDB/Shell/2.3.4/MongoDB.Shell.installer.yaml b/manifests/m/MongoDB/Shell/2.3.4/MongoDB.Shell.installer.yaml new file mode 100644 index 0000000000000..c62d3c7d8b157 --- /dev/null +++ b/manifests/m/MongoDB/Shell/2.3.4/MongoDB.Shell.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: MongoDB.Shell +PackageVersion: 2.3.4 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +Scope: machine +UpgradeBehavior: install +Commands: +- mongo +ProductCode: '{9FB8C728-BBEA-4310-8685-7DD4F07CA079}' +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.mongodb.com/compass/mongosh-2.3.4-x64.msi + InstallerSha256: 3478084EBE6219A6E9CEBED45ED7A53FE7B0C125532870DAC94A8C6C7A3B8B0D +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/MongoDB/Shell/2.3.4/MongoDB.Shell.locale.en-US.yaml b/manifests/m/MongoDB/Shell/2.3.4/MongoDB.Shell.locale.en-US.yaml new file mode 100644 index 0000000000000..9d53314e05c06 --- /dev/null +++ b/manifests/m/MongoDB/Shell/2.3.4/MongoDB.Shell.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: MongoDB.Shell +PackageVersion: 2.3.4 +PackageLocale: en-US +Publisher: MongoDB Inc. +PublisherUrl: https://www.mongodb.com +PublisherSupportUrl: https://www.mongodb.com/contact +PrivacyUrl: https://www.mongodb.com/legal/privacy-policy +Author: MongoDB Inc. +PackageName: MongoDB Shell +PackageUrl: https://www.mongodb.com/products/shell +License: Apache License 2.0 +LicenseUrl: https://github.com/mongodb-js/mongosh/raw/main/LICENSE +Copyright: Copyright 2023 MongoDB Inc. +CopyrightUrl: https://www.mongodb.com/customer-agreement +ShortDescription: The mongo shell is an interactive JavaScript interface to MongoDB. +Description: The mongo shell is an interactive JavaScript interface to MongoDB. You can use the mongo shell to query and update data as well as perform administrative operations. +Moniker: mongodb-shell +Tags: +- db +- mongo +- mongodb +- shell +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.mongodb.com/mongodb-shell/ +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/MongoDB/Shell/2.3.4/MongoDB.Shell.yaml b/manifests/m/MongoDB/Shell/2.3.4/MongoDB.Shell.yaml new file mode 100644 index 0000000000000..6a7415d938cc8 --- /dev/null +++ b/manifests/m/MongoDB/Shell/2.3.4/MongoDB.Shell.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: MongoDB.Shell +PackageVersion: 2.3.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From a5660531d2e311571cfdb1d2b2b242e7034b2f69 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 7 Dec 2024 03:30:16 +0800 Subject: [PATCH 07/58] New version: Discord.Discord.Canary version 1.0.496 (#196784) --- .../Discord.Discord.Canary.installer.yaml | 20 +++++++++++ .../Discord.Discord.Canary.locale.en-US.yaml | 33 +++++++++++++++++++ .../Discord.Discord.Canary.locale.zh-CN.yaml | 29 ++++++++++++++++ .../1.0.496/Discord.Discord.Canary.yaml | 8 +++++ 4 files changed, 90 insertions(+) create mode 100644 manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.installer.yaml create mode 100644 manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.locale.en-US.yaml create mode 100644 manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.locale.zh-CN.yaml create mode 100644 manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.yaml diff --git a/manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..57d23c595466b --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.496 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordCanary +Installers: +- Architecture: x64 + InstallerUrl: https://canary.dl2.discordapp.net/distro/app/canary/win/x64/1.0.496/DiscordCanarySetup.exe + InstallerSha256: 09E578634C0A0A849E205A787FB6AFE3FB8C1BBEA22054AB141C3EBB700574AD +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..b628ceb9858bc --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.496 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2024 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-canary +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..255c104c6778e --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.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.9.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.496 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2024 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..f106e548315c9 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.496/Discord.Discord.Canary.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.496 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From e87a0aec424dd172b2e61e01935e41246740cde4 Mon Sep 17 00:00:00 2001 From: DaMn good B0t <143536629+damn-good-b0t@users.noreply.github.com> Date: Fri, 6 Dec 2024 20:34:52 +0100 Subject: [PATCH 08/58] New version: AdGuard.dnsproxy version 0.73.4 (#195116) --- .../0.73.4/AdGuard.dnsproxy.installer.yaml | 26 +++++++++++++++++ .../0.73.4/AdGuard.dnsproxy.locale.en-US.yaml | 29 +++++++++++++++++++ .../dnsproxy/0.73.4/AdGuard.dnsproxy.yaml | 8 +++++ 3 files changed, 63 insertions(+) create mode 100644 manifests/a/AdGuard/dnsproxy/0.73.4/AdGuard.dnsproxy.installer.yaml create mode 100644 manifests/a/AdGuard/dnsproxy/0.73.4/AdGuard.dnsproxy.locale.en-US.yaml create mode 100644 manifests/a/AdGuard/dnsproxy/0.73.4/AdGuard.dnsproxy.yaml diff --git a/manifests/a/AdGuard/dnsproxy/0.73.4/AdGuard.dnsproxy.installer.yaml b/manifests/a/AdGuard/dnsproxy/0.73.4/AdGuard.dnsproxy.installer.yaml new file mode 100644 index 0000000000000..f8e1f8db2a3a9 --- /dev/null +++ b/manifests/a/AdGuard/dnsproxy/0.73.4/AdGuard.dnsproxy.installer.yaml @@ -0,0 +1,26 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: AdGuard.dnsproxy +PackageVersion: 0.73.4 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2024-11-29 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: windows-386/dnsproxy.exe + InstallerUrl: https://github.com/AdguardTeam/dnsproxy/releases/download/v0.73.4/dnsproxy-windows-386-v0.73.4.zip + InstallerSha256: A9EFE292E35ECDC0DB62FF40EEFECF28027EC57DB233A5158B02F8009B48BB90 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: windows-amd64/dnsproxy.exe + InstallerUrl: https://github.com/AdguardTeam/dnsproxy/releases/download/v0.73.4/dnsproxy-windows-amd64-v0.73.4.zip + InstallerSha256: F0373A90D710DAC486221871E381DDAC5ED8A1317D3E99663B387E8C2B3188E6 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: windows-arm64/dnsproxy.exe + InstallerUrl: https://github.com/AdguardTeam/dnsproxy/releases/download/v0.73.4/dnsproxy-windows-arm64-v0.73.4.zip + InstallerSha256: 13F2A5A20B22B36C90A9540CDAA81FB1FFF08FD0A6DD3A7FA491ED22B7882E0C +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/a/AdGuard/dnsproxy/0.73.4/AdGuard.dnsproxy.locale.en-US.yaml b/manifests/a/AdGuard/dnsproxy/0.73.4/AdGuard.dnsproxy.locale.en-US.yaml new file mode 100644 index 0000000000000..c04a1cea85f45 --- /dev/null +++ b/manifests/a/AdGuard/dnsproxy/0.73.4/AdGuard.dnsproxy.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: AdGuard.dnsproxy +PackageVersion: 0.73.4 +PackageLocale: en-US +Publisher: AdGuard +PublisherUrl: https://adguard.com/ +PublisherSupportUrl: https://github.com/AdguardTeam/dnsproxy/issues +PackageName: DNS Proxy +PackageUrl: https://github.com/AdguardTeam/dnsproxy +License: Apache-2.0 +LicenseUrl: https://github.com/AdguardTeam/dnsproxy/blob/HEAD/LICENSE +ShortDescription: Simple DNS proxy with DoH, DoT, DoQ and DNSCrypt support +Tags: +- dns +- dns-over-https +- dns-over-quic +- dns-over-tls +- dnscrypt +- golang +- open-source +- proxy +ReleaseNotes: |- + Changed + - Improved resource consumption (AdguardTeam/AdGuardHome#7357). +ReleaseNotesUrl: https://github.com/AdguardTeam/dnsproxy/releases/tag/v0.73.4 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/a/AdGuard/dnsproxy/0.73.4/AdGuard.dnsproxy.yaml b/manifests/a/AdGuard/dnsproxy/0.73.4/AdGuard.dnsproxy.yaml new file mode 100644 index 0000000000000..a2e7ef8fd40b4 --- /dev/null +++ b/manifests/a/AdGuard/dnsproxy/0.73.4/AdGuard.dnsproxy.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: AdGuard.dnsproxy +PackageVersion: 0.73.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 49e1462f80ac9ebcd9d5badaa10ea6b0f1d21464 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 7 Dec 2024 03:40:13 +0800 Subject: [PATCH 09/58] New version: Blushyes.Sofast version 0.3.6 (#196738) --- .../0.3.6/Blushyes.Sofast.installer.yaml | 16 ++++++++++ .../0.3.6/Blushyes.Sofast.locale.en-US.yaml | 29 +++++++++++++++++++ .../0.3.6/Blushyes.Sofast.locale.zh-CN.yaml | 26 +++++++++++++++++ .../Sofast/0.3.6/Blushyes.Sofast.yaml | 8 +++++ 4 files changed, 79 insertions(+) create mode 100644 manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.installer.yaml create mode 100644 manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.locale.en-US.yaml create mode 100644 manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.locale.zh-CN.yaml create mode 100644 manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.yaml diff --git a/manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.installer.yaml b/manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.installer.yaml new file mode 100644 index 0000000000000..6f58e4088bad3 --- /dev/null +++ b/manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Blushyes.Sofast +PackageVersion: 0.3.6 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: sofast +ReleaseDate: 2024-12-06 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Blushyes/sofast-release/releases/download/v0.3.6/sofast_windows_v0.3.6_setup.exe + InstallerSha256: C407E59A56FC2CDFB4A9FBFF4316E889E4B5ED310F238B300CFCA72EAAA94865 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.locale.en-US.yaml b/manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.locale.en-US.yaml new file mode 100644 index 0000000000000..d3c6283205069 --- /dev/null +++ b/manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Blushyes.Sofast +PackageVersion: 0.3.6 +PackageLocale: en-US +Publisher: sofast +PublisherUrl: https://github.com/Blushyes +PublisherSupportUrl: https://github.com/Blushyes/sofast-release/issues +PackageName: sofast +PackageUrl: https://www.sofast.fun/ +License: Freeware +ShortDescription: Quick Launcher | Boost Productivity +Tags: +- add-on +- addon +- app +- application +- extension +- find +- launcher +- plugin +- productivity +- search +- tool +- utility +ReleaseNotesUrl: https://github.com/Blushyes/sofast-release/releases/tag/v0.3.6 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.locale.zh-CN.yaml b/manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.locale.zh-CN.yaml new file mode 100644 index 0000000000000..da3e1f0e6b171 --- /dev/null +++ b/manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: Blushyes.Sofast +PackageVersion: 0.3.6 +PackageLocale: zh-CN +Publisher: sofast +PublisherUrl: https://github.com/Blushyes +PublisherSupportUrl: https://github.com/Blushyes/sofast-release/issues +PackageName: sofast +PackageUrl: https://www.sofast.fun/ +License: 免费软件 +ShortDescription: 快速启动器 | 提升生产力 +Tags: +- 启动器 +- 工具 +- 应用 +- 扩展 +- 插件 +- 搜索 +- 效率 +- 查找 +- 生产力 +ReleaseNotesUrl: https://github.com/Blushyes/sofast-release/releases/tag/v0.3.6 +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.yaml b/manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.yaml new file mode 100644 index 0000000000000..7d7b8ab181cb6 --- /dev/null +++ b/manifests/b/Blushyes/Sofast/0.3.6/Blushyes.Sofast.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Blushyes.Sofast +PackageVersion: 0.3.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 97c03bd95f306a3def1926ff7cd0f0413bf047a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=B8=AD=E9=B8=AD=E3=80=8C=E3=82=AB=E3=83=A2=E3=80=8D?= Date: Sat, 7 Dec 2024 03:41:15 +0800 Subject: [PATCH 10/58] New version: DuckStudio.ChineseGit version 2.10 (#194603) --- .../2.10/DuckStudio.ChineseGit.installer.yaml | 34 +++++++++ .../DuckStudio.ChineseGit.locale.zh-CN.yaml | 70 +++++++++++++++++++ .../2.10/DuckStudio.ChineseGit.yaml | 8 +++ 3 files changed, 112 insertions(+) create mode 100644 manifests/d/DuckStudio/ChineseGit/2.10/DuckStudio.ChineseGit.installer.yaml create mode 100644 manifests/d/DuckStudio/ChineseGit/2.10/DuckStudio.ChineseGit.locale.zh-CN.yaml create mode 100644 manifests/d/DuckStudio/ChineseGit/2.10/DuckStudio.ChineseGit.yaml diff --git a/manifests/d/DuckStudio/ChineseGit/2.10/DuckStudio.ChineseGit.installer.yaml b/manifests/d/DuckStudio/ChineseGit/2.10/DuckStudio.ChineseGit.installer.yaml new file mode 100644 index 0000000000000..a75c4993aa1c7 --- /dev/null +++ b/manifests/d/DuckStudio/ChineseGit/2.10/DuckStudio.ChineseGit.installer.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: DuckStudio.ChineseGit +PackageVersion: "2.10" +InstallerLocale: zh-CN +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /verysilent /suppressmsgboxes + SilentWithProgress: /verysilent +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Git.Git +Commands: +- cngit +Protocols: +- http +- https +ReleaseDate: 2024-11-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DuckDuckStudio/Chinese_git/releases/download/v2.10/Chinese_git_Setup_v2.10.exe + InstallerSha256: 28DD79D1DCD3B718B0645FC9CB03827E4DB0817067355362C64E3CB7EF842C9E +- Architecture: x86 + InstallerUrl: https://github.com/DuckDuckStudio/Chinese_git/releases/download/v2.10/Chinese_git_Setup_v2.10.exe + InstallerSha256: 28DD79D1DCD3B718B0645FC9CB03827E4DB0817067355362C64E3CB7EF842C9E +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/d/DuckStudio/ChineseGit/2.10/DuckStudio.ChineseGit.locale.zh-CN.yaml b/manifests/d/DuckStudio/ChineseGit/2.10/DuckStudio.ChineseGit.locale.zh-CN.yaml new file mode 100644 index 0000000000000..93425f458b2c7 --- /dev/null +++ b/manifests/d/DuckStudio/ChineseGit/2.10/DuckStudio.ChineseGit.locale.zh-CN.yaml @@ -0,0 +1,70 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: DuckStudio.ChineseGit +PackageVersion: "2.10" +PackageLocale: zh-CN +Publisher: DuckStudio +PublisherUrl: https://duckduckstudio.github.io/yazicbs.github.io/zh_cn/index.html +PublisherSupportUrl: https://github.com/DuckDuckStudio/Chinese_git/issues +# PrivacyUrl: +Author: 鸭鸭「カモ」 +PackageName: 中文Git +PackageUrl: https://duckduckstudio.github.io/yazicbs.github.io/Tools/chinese_git/ +License: GNU General Public License v2.0 +LicenseUrl: https://github.com/DuckDuckStudio/Chinese_git/blob/main/LICENSE +Copyright: Copyright (c) DuckStudio 鸭鸭「カモ」 +# CopyrightUrl: +ShortDescription: 使用中文命令操作 Git 的简单工具 +Description: 让你可以使用中文命令操作 Git 的简单工具,旨在使不熟悉英文的用户更轻松地使用 Git。 +Moniker: cngit +Tags: +- chinese +- chinese-simplified +- git +ReleaseNotes: |- + 目前我自己用似乎只有这些[已知问题](https://github.com/DuckDuckStudio/Chinese_git/issues),如遇到问题请一定要提交 Issues 让我修,感谢! + + > 特别感谢 [nobodxbodon](https://github.com/nobodxbodon) 提出的相关建议! + + ## 本版本修改内容 + + ### 优化 + - pref: 优化公告显示 ( 739f6e0ef53737811ce6fb4bb673ea7c862a69a1 ) + - 获取公告等级等信息时如果某个贡献者写的公告不符合规范也不会直接 `IndexError` 和 `ValueError` + - 降低了一般公告的明显度,**仅强制性公告会自动显示** + - pref: 为打包版更新程序添加了错误代码 ( d18ce901d1ec34df02351fa1afdabed06da5da79 ) + + ### 修复 + - fix: 修复部分情况下输出意外内容的情况 ( 9609a6f524a0de57feec5fdbda7d2d782f66e063 ) + - fix: 修复打包版退出代码变量错误 ( d31f3b08d2ff85ff8b3a3842146bf5301ae2ca83 ) + - fix: 修正打包版的一处判断错误 ( ef465e22113f78f006cf41b0ba7a0f136b3b6080 ) + - fix: 修正相关参数传递的一些问题 + + ### 开发 + + #### 打包 + - pref: 优化打包文件生成形式 ( 018999e192df0c36ac286e27da8a08b75fea4e1a ) + - pref: 修改了版本显示的执行方法,避免额外的参数 ( 739f6e0ef53737811ce6fb4bb673ea7c862a69a1 ) + + #### 仓库 + - feat: 添加拉取请求与议题模板 ( d18ce901d1ec34df02351fa1afdabed06da5da79 ) + - feat: `Dependabot.yml` ( 1969eafcf61bad8531631688f1e6698348ec1222 ) + + ## 如何更新 + 自 v2.4 起,中文Git附带更新指令,你可以运行`中文git 更新`来更新中文Git。 + py版自 v1.7 起,可使用`中文git 更新`命令更新。 + + ## 本版本完整可用命令 + 请参阅[用户手册](https://github.com/DuckDuckStudio/Chinese_git/blob/v2.10/USER_HANDBOOK.md#可用命令)。 + + > [!TIP] + > 关于如何执行代码,请参阅[用户手册](https://github.com/DuckDuckStudio/Chinese_git/blob/main/USER_HANDBOOK.md#优化)。 + + **Full Changelog**: https://github.com/DuckDuckStudio/Chinese_git/compare/v2.9...v2.10 +ReleaseNotesUrl: https://github.com/DuckDuckStudio/Chinese_git/releases/tag/v2.10 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/d/DuckStudio/ChineseGit/2.10/DuckStudio.ChineseGit.yaml b/manifests/d/DuckStudio/ChineseGit/2.10/DuckStudio.ChineseGit.yaml new file mode 100644 index 0000000000000..e4b4d449d7d54 --- /dev/null +++ b/manifests/d/DuckStudio/ChineseGit/2.10/DuckStudio.ChineseGit.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.1 $debug=NVS1.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: DuckStudio.ChineseGit +PackageVersion: "2.10" +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.6.0 From 381ca7a8d51619152aa8a437ae446d7193eddd3c Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 7 Dec 2024 03:43:23 +0800 Subject: [PATCH 11/58] New version: LibreWolf.LibreWolf version 133.0-3 (#196785) --- .../LibreWolf.LibreWolf.installer.yaml | 33 +++++++++++++++++ .../LibreWolf.LibreWolf.locale.en-US.yaml | 35 +++++++++++++++++++ .../LibreWolf.LibreWolf.locale.zh-CN.yaml | 33 +++++++++++++++++ .../133.0-3/LibreWolf.LibreWolf.yaml | 8 +++++ 4 files changed, 109 insertions(+) create mode 100644 manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.installer.yaml create mode 100644 manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.locale.en-US.yaml create mode 100644 manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.locale.zh-CN.yaml create mode 100644 manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.yaml diff --git a/manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.installer.yaml b/manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.installer.yaml new file mode 100644 index 0000000000000..501b0969eba17 --- /dev/null +++ b/manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.installer.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: LibreWolf.LibreWolf +PackageVersion: 133.0-3 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: LibreWolf LibreWolf +ReleaseDate: 2024-12-06 +Installers: +- Architecture: x86 + InstallerUrl: https://gitlab.com/api/v4/projects/44042130/packages/generic/librewolf/133.0-3/librewolf-133.0-3-windows-i686-setup.exe + InstallerSha256: 220D38ED37B5AF17B8C36EF7BCA6C4E62E7A8A62ACC84C76C38EE0876E2A612A +- Architecture: x64 + InstallerUrl: https://gitlab.com/api/v4/projects/44042130/packages/generic/librewolf/133.0-3/librewolf-133.0-3-windows-x86_64-setup.exe + InstallerSha256: C3FB16397F1009D48E131DF051931ABF046BADA13353AB2C664CA3C399122E31 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.locale.en-US.yaml b/manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.locale.en-US.yaml new file mode 100644 index 0000000000000..58894a99ada14 --- /dev/null +++ b/manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: LibreWolf.LibreWolf +PackageVersion: 133.0-3 +PackageLocale: en-US +Publisher: LibreWolf +PublisherUrl: https://librewolf.net/ +PublisherSupportUrl: https://librewolf.net/#questions +PrivacyUrl: https://librewolf.net/privacy-policy/ +PackageName: LibreWolf +PackageUrl: https://librewolf.net/ +License: MPL-2.0 +LicenseUrl: https://librewolf.net/license-disclaimers/ +ShortDescription: A custom version of Firefox, focused on privacy, security and freedom. +Description: |- + This project is a custom and independent version of Firefox, with the primary goals of privacy, security and user freedom. + LibreWolf is designed to increase protection against tracking and fingerprinting techniques, while also including a few security improvements. This is achieved through our privacy and security oriented settings and patches. LibreWolf also aims to remove all the telemetry, data collection and annoyances, as well as disabling anti-freedom features like DRM. +Moniker: librewolf +Tags: +- browser +- firefox +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://gitlab.com/librewolf-community/browser/bsys6/-/releases/133.0-3 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://librewolf.net/docs/faq/ +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.locale.zh-CN.yaml b/manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9a72031a5c8d7 --- /dev/null +++ b/manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: LibreWolf.LibreWolf +PackageVersion: 133.0-3 +PackageLocale: zh-CN +Publisher: LibreWolf +PublisherUrl: https://librewolf.net/ +PublisherSupportUrl: https://librewolf.net/#questions +PrivacyUrl: https://librewolf.net/privacy-policy/ +PackageName: LibreWolf +PackageUrl: https://librewolf.net/ +License: MPL-2.0 +LicenseUrl: https://librewolf.net/license-disclaimers/ +ShortDescription: 火狐浏览器的定制版本,注重隐私、安全和自由。 +Description: |- + 该项目是火狐浏览器的一个独立定制版本,主要目标是保护隐私、确保安全和用户自由。 + LibreWolf 旨在加强对抗跟踪和指纹技术,同时还包括一些安全方面的改进。这些都是通过我们以隐私和安全为导向的设置和补丁实现的。LibreWolf 还旨在移除所有遥测、数据收集和干扰,以及禁用 DRM 等反自由功能。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://gitlab.com/librewolf-community/browser/bsys6/-/releases/133.0-3 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://librewolf.net/docs/faq/ +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.yaml b/manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.yaml new file mode 100644 index 0000000000000..f2c6e1cf0b7db --- /dev/null +++ b/manifests/l/LibreWolf/LibreWolf/133.0-3/LibreWolf.LibreWolf.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: LibreWolf.LibreWolf +PackageVersion: 133.0-3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 8f5e3e6f8f602c30bc91bae4f1d1703f6df89c66 Mon Sep 17 00:00:00 2001 From: Rodrigo Borges de Oliveira Date: Fri, 6 Dec 2024 16:49:46 -0300 Subject: [PATCH 12/58] New version: Bruno.Bruno version 1.35.0 (#192930) --- .../Bruno/1.35.0/Bruno.Bruno.installer.yaml | 18 ++++ .../1.35.0/Bruno.Bruno.locale.en-US.yaml | 82 +++++++++++++++++++ .../b/Bruno/Bruno/1.35.0/Bruno.Bruno.yaml | 8 ++ 3 files changed, 108 insertions(+) create mode 100644 manifests/b/Bruno/Bruno/1.35.0/Bruno.Bruno.installer.yaml create mode 100644 manifests/b/Bruno/Bruno/1.35.0/Bruno.Bruno.locale.en-US.yaml create mode 100644 manifests/b/Bruno/Bruno/1.35.0/Bruno.Bruno.yaml diff --git a/manifests/b/Bruno/Bruno/1.35.0/Bruno.Bruno.installer.yaml b/manifests/b/Bruno/Bruno/1.35.0/Bruno.Bruno.installer.yaml new file mode 100644 index 0000000000000..6fdcf087b21df --- /dev/null +++ b/manifests/b/Bruno/Bruno/1.35.0/Bruno.Bruno.installer.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Bruno.Bruno +PackageVersion: 1.35.0 +InstallerLocale: en-US +InstallerType: nullsoft +InstallerSwitches: + Silent: /S + SilentWithProgress: -silent +UpgradeBehavior: install +ReleaseDate: 2024-11-21 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/usebruno/bruno/releases/download/v1.35.0/bruno_1.35.0_x64_win.exe + InstallerSha256: BA695DC8EB56FF502A9A90B6DBF71E0C739FED9B2D0CA8C8407748C9E581BF11 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/b/Bruno/Bruno/1.35.0/Bruno.Bruno.locale.en-US.yaml b/manifests/b/Bruno/Bruno/1.35.0/Bruno.Bruno.locale.en-US.yaml new file mode 100644 index 0000000000000..832ac8fc4a2eb --- /dev/null +++ b/manifests/b/Bruno/Bruno/1.35.0/Bruno.Bruno.locale.en-US.yaml @@ -0,0 +1,82 @@ +# Created with komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Bruno.Bruno +PackageVersion: 1.35.0 +PackageLocale: en-US +Publisher: Anoop M D +PublisherUrl: https://www.usebruno.com/ +PublisherSupportUrl: https://www.usebruno.com/support +PrivacyUrl: https://www.usebruno.com/privacy-policy +Author: Anoop M D, Anusree P S and Contributors +PackageName: Bruno +PackageUrl: https://www.usebruno.com/ +License: MIT +LicenseUrl: https://github.com/usebruno/bruno/blob/HEAD/license.md +Copyright: Copyright (c) 2022 Anoop M D, Anusree P S and Contributors +CopyrightUrl: https://github.com/usebruno/bruno/blob/main/license.md +ShortDescription: Re-Inventing the API Client +Description: |- + Bruno is a Fast and Git-Friendly Opensource API client, aimed at revolutionizing the status quo + represented by Postman, Insomnia and similar tools out there. + + Bruno stores your collections directly in a folder on your filesystem. + We use a plain text markup + language, Bru, to save information about API requests. + + You can use git or any version control of your choice to collaborate over your API collections. + + Bruno is offline-only. + There are no plans to add cloud-sync to Bruno, ever. +Moniker: bruno +Tags: +- api +- development +- openapi +ReleaseNotes: |- + What's Changed + Features + - feat: displaying variable hints as secrets by @Pragadesh-45 in #3268 + - feat: deleteEnvVar safe mode shim by @lohxt1 in #3515 + - feat: cookie support to CLI requests by @matthewdickinson in #2820 + - feat: add --client-cert-config option for secure connections in CLI run command by @Pragadesh-45 in #3504 + - feat: add option to skip headers in CLI run command output by @Pragadesh-45 in #3467 + Fixes + - fix: cli run-summary count fix for requests with ECONNREFUSED error by @lohxt1 in #3451 + - fix: server_rendered logic for newer versions of nextjs by @lohxt1 in #3509 + - fix: posthog api key - process env var by @lohxt1 in #3490 + - fix: checkov CKV2_GHA_1 warning by @lohxt1 in #3488 + - fix: checkov CKV_GHA_7 warning by @lohxt1 in #3489 + - refactor/ bruno-testbench updates by @Pragadesh-45 in #3483 + - fix: incorrect dispatch fn calls -- global env slice by @lohxt1 in #3452 + - fix: exclude Meta, Alt, Home and End key press for autocomplete trigger by @lohxt1 in #3441 + - fix: codemirror styling fixes, post library upgrade by @lohxt1 in #3439 + - fix: import openapi -- baseUrl env value should not include trailing slash by @lohxt1 in #3440 + - Now based on the request type appropriate views are shown. by @sanjai0py in #3340 + - bugfix / Update video preview functionality by @sanjai0py in #3433 + - Feat/import translation for deprecated pm import by @Pragadesh-45 in #3388 + - fix: enhance path normalization for WSL compatibility in watcher (fix #1928) by @Pragadesh-45 in #3482 + - fix: improve masking logic in MaskedEditor for large content handling (fixes #2842) by @Pragadesh-45 in #3472 + - fix: add validation to prevent duplicate global environment names (fixes: #3449) by @Pragadesh-45 in #3450 + - Fix/add missing translations by @Pragadesh-45 in #3352 + - fix/ Script execution is prevented by line comments by @sanjai0py in #3462 + - bugfix / remove error logging for missing global environment by @sanjai0py in #3447 + - Fix: (#3383) openapi yaml req body not importing by @arshan1019 in #3459 + - fix: server_rendered codemirror logic for newer versions of nextjs by @lohxt1 in #3516 + - fix: video preview comp memo import by @lohxt1 in #3517 + - fix: codemirror editors background styling fix by @lohxt1 in #3523 + Others + - Add a proper example for using the usebruno query library in the READ… by @ganesh-bruno in #3464 + - chore: node version bump -- v22.11.0 by @lohxt1 in #3508 + New Contributors + - @ganesh-bruno made their first contribution in #3464 + - @arshan1019 made their first contribution in #3459 + - @matthewdickinson made their first contribution in #2820 + Full Changelog: https://github.com/usebruno/bruno/compare/v1.34.2...v1.35.0 +ReleaseNotesUrl: https://github.com/usebruno/bruno/releases/tag/v1.35.0 +PurchaseUrl: https://www.usebruno.com/pricing +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.usebruno.com/ +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/b/Bruno/Bruno/1.35.0/Bruno.Bruno.yaml b/manifests/b/Bruno/Bruno/1.35.0/Bruno.Bruno.yaml new file mode 100644 index 0000000000000..7d61856a5859d --- /dev/null +++ b/manifests/b/Bruno/Bruno/1.35.0/Bruno.Bruno.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Bruno.Bruno +PackageVersion: 1.35.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From cbf6a1bd29f39fdb3fda07d498a7f5fa981d345c Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sat, 7 Dec 2024 03:53:35 +0800 Subject: [PATCH 13/58] Move deltachat.deltachat 1.20.3 to DeltaChat.DeltaChat 1.20.3 (#195893) --- .../1.20.3/DeltaChat.DeltaChat.installer.yaml | 12 ++++++++++++ .../1.20.3/DeltaChat.DeltaChat.locale.en-US.yaml | 12 ++++++++++++ .../DeltaChat/1.20.3/DeltaChat.DeltaChat.yaml | 8 ++++++++ 3 files changed, 32 insertions(+) create mode 100644 manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.installer.yaml create mode 100644 manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.locale.en-US.yaml create mode 100644 manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.yaml diff --git a/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.installer.yaml b/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.installer.yaml new file mode 100644 index 0000000000000..9168719f6daa1 --- /dev/null +++ b/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 0.2.0.29 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: DeltaChat.DeltaChat +PackageVersion: 1.20.3 +Installers: +- Architecture: x64 + InstallerType: nullsoft + InstallerUrl: https://download.delta.chat/desktop/v1.20.3/DeltaChat%20Setup%201.20.3.exe + InstallerSha256: 3000577FCBE5EA5CE4C6B066967A6CADE367C8F043097BDEA745E79495301949 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.locale.en-US.yaml b/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.locale.en-US.yaml new file mode 100644 index 0000000000000..1f7f687862bec --- /dev/null +++ b/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 0.2.0.29 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: DeltaChat.DeltaChat +PackageVersion: 1.20.3 +PackageLocale: en-US +Publisher: DeltaChat Developers +PackageName: DeltaChat +License: GPLv3 +ShortDescription: Email-based instant messaging for Desktop +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.yaml b/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.yaml new file mode 100644 index 0000000000000..3b2f3d89ada41 --- /dev/null +++ b/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 0.2.0.29 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: DeltaChat.DeltaChat +PackageVersion: 1.20.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 19a7713460462cc7bdff5d8b2d1aec5abc6ad27c Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sat, 7 Dec 2024 03:55:51 +0800 Subject: [PATCH 14/58] Move deltachat.deltachat 1.22.2 to DeltaChat.DeltaChat 1.22.2 (#195895) --- .../1.22.2/DeltaChat.DeltaChat.installer.yaml | 12 ++++++++++++ .../1.22.2/DeltaChat.DeltaChat.locale.en-US.yaml | 12 ++++++++++++ .../DeltaChat/1.22.2/DeltaChat.DeltaChat.yaml | 8 ++++++++ 3 files changed, 32 insertions(+) create mode 100644 manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.installer.yaml create mode 100644 manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.locale.en-US.yaml create mode 100644 manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.yaml diff --git a/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.installer.yaml b/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.installer.yaml new file mode 100644 index 0000000000000..7ac4f5ecf82dd --- /dev/null +++ b/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 0.4.1.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: DeltaChat.DeltaChat +PackageVersion: 1.22.2 +Installers: +- Architecture: x64 + InstallerType: nullsoft + InstallerUrl: https://download.delta.chat/desktop/v1.22.2/DeltaChat%20Setup%201.22.2.exe + InstallerSha256: BEB0DD42F49CCC94FB5DE65D9954E6B6FA59D7F759460770B98A5456F2445CC1 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.locale.en-US.yaml b/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.locale.en-US.yaml new file mode 100644 index 0000000000000..e79583db7fa17 --- /dev/null +++ b/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 0.4.1.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: DeltaChat.DeltaChat +PackageVersion: 1.22.2 +PackageLocale: en-US +Publisher: DeltaChat Developers +PackageName: DeltaChat +License: GPLv3 +ShortDescription: Email-based instant messaging for Desktop +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.yaml b/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.yaml new file mode 100644 index 0000000000000..d8510272a989f --- /dev/null +++ b/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 0.4.1.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: DeltaChat.DeltaChat +PackageVersion: 1.22.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From e954097cda4fc999a84d0846aa0b8c3802b63da0 Mon Sep 17 00:00:00 2001 From: maforget <11904426+maforget@users.noreply.github.com> Date: Fri, 6 Dec 2024 15:02:49 -0500 Subject: [PATCH 15/58] Remove version: maforget.ComicRackCE.Nightly version nightly-f851f15 (#195576) --- ...aforget.ComicRackCE.Nightly.installer.yaml | 25 ------------------- ...rget.ComicRackCE.Nightly.locale.en-US.yaml | 20 --------------- .../maforget.ComicRackCE.Nightly.yaml | 8 ------ 3 files changed, 53 deletions(-) delete mode 100644 manifests/m/maforget/ComicRackCE/Nightly/nightly-f851f15/maforget.ComicRackCE.Nightly.installer.yaml delete mode 100644 manifests/m/maforget/ComicRackCE/Nightly/nightly-f851f15/maforget.ComicRackCE.Nightly.locale.en-US.yaml delete mode 100644 manifests/m/maforget/ComicRackCE/Nightly/nightly-f851f15/maforget.ComicRackCE.Nightly.yaml diff --git a/manifests/m/maforget/ComicRackCE/Nightly/nightly-f851f15/maforget.ComicRackCE.Nightly.installer.yaml b/manifests/m/maforget/ComicRackCE/Nightly/nightly-f851f15/maforget.ComicRackCE.Nightly.installer.yaml deleted file mode 100644 index ccd8793aba2f3..0000000000000 --- a/manifests/m/maforget/ComicRackCE/Nightly/nightly-f851f15/maforget.ComicRackCE.Nightly.installer.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with WinGet Releaser using komac v2.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: maforget.ComicRackCE.Nightly -PackageVersion: nightly-f851f15 -InstallerLocale: en-US -InstallerType: inno -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ProductCode: '{0FA63C63-846C-49B7-9A4B-553EF8EBEF0B}_is1' -ReleaseDate: 2024-11-21 -AppsAndFeaturesEntries: -- DisplayName: ComicRack Community Edition - Publisher: ComicRack Community - ProductCode: '{0FA63C63-846C-49B7-9A4B-553EF8EBEF0B}_is1' -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/maforget/ComicRackCE/releases/download/nightly/ComicRackCESetup_nightly.exe - InstallerSha256: 0A164D4C823A5352EB069AECE7E7A79315BE17713BF70431788E728C27A90B0E -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/m/maforget/ComicRackCE/Nightly/nightly-f851f15/maforget.ComicRackCE.Nightly.locale.en-US.yaml b/manifests/m/maforget/ComicRackCE/Nightly/nightly-f851f15/maforget.ComicRackCE.Nightly.locale.en-US.yaml deleted file mode 100644 index f31f5749c7625..0000000000000 --- a/manifests/m/maforget/ComicRackCE/Nightly/nightly-f851f15/maforget.ComicRackCE.Nightly.locale.en-US.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with WinGet Releaser using komac v2.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: maforget.ComicRackCE.Nightly -PackageVersion: nightly-f851f15 -PackageLocale: en-US -Publisher: maforget -PublisherUrl: https://github.com/maforget -PublisherSupportUrl: https://github.com/maforget/ComicRackCE/issues -PackageName: ComicRack Community Edition -PackageUrl: https://github.com/maforget/ComicRackCE -License: GPL-2.0 -LicenseUrl: https://github.com/maforget/ComicRackCE/blob/HEAD/LICENSE.txt -ShortDescription: 'A Community Edition for the legendary Comic Book Manager ComicRack. ComicRack is back from the dead. ' -Moniker: comicrackce -Tags: -- comicrack -ReleaseNotesUrl: https://github.com/maforget/ComicRackCE/releases/tag/nightly -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/m/maforget/ComicRackCE/Nightly/nightly-f851f15/maforget.ComicRackCE.Nightly.yaml b/manifests/m/maforget/ComicRackCE/Nightly/nightly-f851f15/maforget.ComicRackCE.Nightly.yaml deleted file mode 100644 index 8dcc9f5df0724..0000000000000 --- a/manifests/m/maforget/ComicRackCE/Nightly/nightly-f851f15/maforget.ComicRackCE.Nightly.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.6.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: maforget.ComicRackCE.Nightly -PackageVersion: nightly-f851f15 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 From 33e4b1bf88576335c1c80beb1116e3fde7b0d244 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 7 Dec 2024 04:09:33 +0800 Subject: [PATCH 16/58] New version: Unity.Unity.CN.2022 version 2022.3.50f1c1 (#195959) --- .../Unity.Unity.CN.2022.installer.yaml | 18 +++++ .../Unity.Unity.CN.2022.locale.en-US.yaml | 67 +++++++++++++++++++ .../Unity.Unity.CN.2022.locale.zh-CN.yaml | 31 +++++++++ .../2022.3.50f1c1/Unity.Unity.CN.2022.yaml | 8 +++ 4 files changed, 124 insertions(+) create mode 100644 manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.installer.yaml create mode 100644 manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.locale.en-US.yaml create mode 100644 manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.locale.zh-CN.yaml create mode 100644 manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.yaml diff --git a/manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.installer.yaml b/manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.installer.yaml new file mode 100644 index 0000000000000..bd3af260604c0 --- /dev/null +++ b/manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Unity.Unity.CN.2022 +PackageVersion: 2022.3.50f1c1 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +FileExtensions: +- unity +- unitypackage +ProductCode: Unity 2022.3.50f1c1 +Installers: +- Architecture: x64 + InstallerUrl: https://download.unitychina.cn/download_unity/11690e56caf9/Windows64EditorInstaller/UnitySetup64-2022.3.50f1c1.exe + InstallerSha256: 0944A2E1AD7054497E3BE0CB91E053C6412A859E25C59D7E4A2BB0B0549ECAEB +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.locale.en-US.yaml b/manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.locale.en-US.yaml new file mode 100644 index 0000000000000..98d788d6abb33 --- /dev/null +++ b/manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.locale.en-US.yaml @@ -0,0 +1,67 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Unity.Unity.CN.2022 +PackageVersion: 2022.3.50f1c1 +PackageLocale: en-US +Publisher: Unity Technologies ApS +PublisherUrl: https://unity.cn/ +PublisherSupportUrl: https://developer.unity.cn/ +PrivacyUrl: https://unity.cn/legal/privacy-policy +Author: Yousandi Technology (Shanghai) Co., Ltd. +PackageName: Unity 2022 (CN Version) +PackageUrl: https://unity.cn/releases +License: Proprietary +LicenseUrl: https://unity.cn/legal/terms-of-service +Copyright: © 2024 Unity Technologies ApS. All rights reserved. +CopyrightUrl: https://unity.cn/legal/branding-trademarks +ShortDescription: The world’s leading platform for real-time content creation +Description: |- + Unity is the ultimate game development platform. + Use Unity to build high-quality 3D and 2D games, deploy them across mobile, desktop, VR/AR, consoles or the Web, and connect with loyal and enthusiastic players and customers. +Tags: +- develop +- development +- game +- unity +- unity3d +ReleaseNotes: |- + Known Issues in 2022.3.50f1 + - Asset - Database: "Missing Prefab Asset" error in a SubScene after Domain Reload (UUM-82547) + - Asset - Database: Crash on GetAssetCachedInfoV2 when opening a project (UUM-14959) + - DirectX12: Crash on GfxDeviceD3D12Base::DrawBuffersCommon when opening a project after changing the Graphics API to DirectX12 (UUM-77757) + - Editor Platform: [Linux] Crash on MenuController::ExecuteMenuItem when selecting recent scene (UUM-82381) + - Environment Effects: A pink line of the size of the Tree is drawn in the Hierarchy when opening any dropdown in the Inspector (UUM-82801) + - Hybrid Renderer: [Linux] Crash on ScriptableBatchRenderer::GenerateBuiltInCBuffer when adding "PerObjectData.ReflectionProbes" (UUM-79332) + - IAP: [Android] Build fails with Error "A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable" when using In-App Purchasing and Facebook SDK (UUM-76723) + - Input: Crash on InputDeviceIOCTL when closing Unity editor (UUM-10774) + - OpenGL: [Linux][URP][OpenGL] Scene View has a red texture overlay when the project is using URP and OpenGLCore Graphics API (UUM-44222) + - Shader System: Crash when selecting a certain material (UUM-73507) + - Vulkan: [Android] Particles not rendered in the Player on some Android devices with Android 14 (UUM-68080) + 2022.3.50f1 Release Notes + Improvements + - Shaders: Improved shader compilation logging in the player. (UUM-79781) + API Changes + - iOS: Added: Added iPhone 16 device generation enums and screen cutouts. + Fixes + - Asset Bundles: Improved performance of AssetBundle.UnloadAsync. In certain large bundles with many scenes, the async unloading could take an excessively long time. + - Audio: Fixed a bug that would cause the editor to throw a null reference exception when selecting a clip with auto play turned on. (UUM-71823) + - Editor: Fixed crash when a Material Variant was missing its grandparent. (UUM-77741) + - Editor: Fixed the texture's alpha appears as opaque white when the texture format is set to BC7. (UUM-77153) + - Editor: Linux Editor no longer crashes when attempting to drag from the Project window to the Scene View. (UUM-79812) + - HDRP: This PR fixes the artifact of non-physical DOF if it's used with TAA and dynamic resolution; The artifacts appear for a frame after the screen resolution changes. (UUM-70751) + - Linux: Fixed Linux New Input System (Editor and Runtime) not detecting certain keys in Non-US Layouts. (UUM-73613) + - Physics: Fixed an issue with cloth self collision where setting and clearing self collision indices would cause simulation artifacts unless self collision distance was set to 0.0f prior to clearing. Now when clearing self collision indices distance/stiffness no longer play a role in the simulation of the cloth component. (UUM-78851) + - Universal RP: Fixed Depth Buffer flickering during screen recording in Android Application. (UUM-77428) + - Version Control: Fixed token renewal issue: Can't obtain a new token (Message: Invalid Refresh Token., Code: 132.104). + Package changes in 2022.3.50f1 + Packages updated + - com.unity.collab-proxy: 2.5.1 to 2.5.2 + - com.unity.memoryprofiler: 1.1.0 to 1.1.1 +ReleaseNotesUrl: https://unity.com/releases/editor/whats-new/2022.3.50 +PurchaseUrl: https://store.unity.cn/licenses +Documentations: +- DocumentLabel: Unity User Manual + DocumentUrl: https://docs.unity3d.com/2022.3/Documentation/Manual/ +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.locale.zh-CN.yaml b/manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8dfa107209166 --- /dev/null +++ b/manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json + +PackageIdentifier: Unity.Unity.CN.2022 +PackageVersion: 2022.3.50f1c1 +PackageLocale: zh-CN +Publisher: Unity Technologies ApS +PublisherUrl: https://unity.cn/ +PublisherSupportUrl: https://developer.unity.cn/ +PrivacyUrl: https://unity.cn/legal/china-privacy-policy +Author: 优三缔科技(上海)有限公司 +PackageName: Unity 2022 (中国版) +PackageUrl: https://unity.cn/releases +License: 专有软件 +LicenseUrl: https://unity.cn/legal-cn/service +Copyright: © 2024 Unity Technologies ApS. All rights reserved. +CopyrightUrl: https://unity.cn/legal/branding-trademarks +ShortDescription: 全球领先的实时内容创作平台 +Description: Unity 是旗舰游戏开发平台。使用 Unity 构建高质量的 3D 和 2D 游戏,将其部署至手机、桌面、VR/AR、游戏机或网页,并连接忠实热情的玩家与客户。 +Tags: +- unity +- unity3d +- 开发 +- 游戏 +ReleaseNotesUrl: https://unity.com/releases/editor/whats-new/2022.3.50 +PurchaseUrl: https://store.unity.cn/licenses +Documentations: +- DocumentLabel: Unity 用户手册 + DocumentUrl: https://docs.unity3d.com/2022.3/Documentation/Manual/ +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.yaml b/manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.yaml new file mode 100644 index 0000000000000..01b0a49fea2b1 --- /dev/null +++ b/manifests/u/Unity/Unity/CN/2022/2022.3.50f1c1/Unity.Unity.CN.2022.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Unity.Unity.CN.2022 +PackageVersion: 2022.3.50f1c1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 27348aa882704092014acfda0a4385be0cf69450 Mon Sep 17 00:00:00 2001 From: Alberto Ponces Date: Fri, 6 Dec 2024 20:19:45 +0000 Subject: [PATCH 17/58] New version: Google.PlatformTools version 35.0.2 (#190804) Co-authored-by: Anthony Swierkosz --- .../Google.PlatformTools.installer.yaml | 21 ++++++++++ .../Google.PlatformTools.locale.en-US.yaml | 40 +++++++++++++++++++ .../35.0.2/Google.PlatformTools.yaml | 8 ++++ 3 files changed, 69 insertions(+) create mode 100644 manifests/g/Google/PlatformTools/35.0.2/Google.PlatformTools.installer.yaml create mode 100644 manifests/g/Google/PlatformTools/35.0.2/Google.PlatformTools.locale.en-US.yaml create mode 100644 manifests/g/Google/PlatformTools/35.0.2/Google.PlatformTools.yaml diff --git a/manifests/g/Google/PlatformTools/35.0.2/Google.PlatformTools.installer.yaml b/manifests/g/Google/PlatformTools/35.0.2/Google.PlatformTools.installer.yaml new file mode 100644 index 0000000000000..bca5e1197b805 --- /dev/null +++ b/manifests/g/Google/PlatformTools/35.0.2/Google.PlatformTools.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Google.PlatformTools +PackageVersion: 35.0.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: platform-tools\adb.exe + PortableCommandAlias: adb +- RelativeFilePath: platform-tools\fastboot.exe + PortableCommandAlias: fastboot +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2024-07-26 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.google.com/android/repository/platform-tools_r35.0.2-win.zip + InstallerSha256: 2975A3EAC0B19182748D64195375AD056986561D994FFFBDC64332A516300BB9 + ArchiveBinariesDependOnPath: true +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/g/Google/PlatformTools/35.0.2/Google.PlatformTools.locale.en-US.yaml b/manifests/g/Google/PlatformTools/35.0.2/Google.PlatformTools.locale.en-US.yaml new file mode 100644 index 0000000000000..24ae140d28a06 --- /dev/null +++ b/manifests/g/Google/PlatformTools/35.0.2/Google.PlatformTools.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Google.PlatformTools +PackageVersion: 35.0.2 +PackageLocale: en-US +Publisher: Google LLC +PublisherUrl: https://developer.android.com/ +PublisherSupportUrl: https://developer.android.com/tools#tools-platform +PrivacyUrl: https://policies.google.com/privacy +PackageName: Android SDK Platform-Tools +PackageUrl: https://developer.android.com/tools/releases/platform-tools +License: Apache License +LicenseUrl: https://android.googlesource.com/platform/packages/modules/adb/+/refs/tags/platform-tools-35.0.2/NOTICE +Copyright: Copyright (c) 2006-2009, The Android Open Source Project; Copyright 2006, Brian Swetland +CopyrightUrl: https://android.googlesource.com/platform/packages/modules/adb/+/refs/tags/platform-tools-35.0.2/NOTICE +ShortDescription: |- + Android SDK Platform-Tools is a component for the Android SDK. + It includes tools that interface with the Android platform, primarily adb and fastboot. +Tags: +- adb +- android +- debug +- development +- fastboot +- flash +- platform-tools +ReleaseNotes: |- + adb + - Fix openscreen mDNS backend bug bringing down server on truncated query issue #294120933. + - Make openscreen mDNS backend work on macOS. + - Make openscreen mDNS backend default on all platforms. + - Support to detect USB SuperSpeed+ (current and negotiated speeds) for diagnostic purposes. + - Graceful shutdown: Release all USB interfaces on shutdown (all OSes). +ReleaseNotesUrl: https://developer.android.com/tools/releases/platform-tools#3502_july_2024 +Documentations: +- DocumentLabel: Android Debug Bridge (adb) + DocumentUrl: https://developer.android.com/tools/adb +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/Google/PlatformTools/35.0.2/Google.PlatformTools.yaml b/manifests/g/Google/PlatformTools/35.0.2/Google.PlatformTools.yaml new file mode 100644 index 0000000000000..687eb43d02647 --- /dev/null +++ b/manifests/g/Google/PlatformTools/35.0.2/Google.PlatformTools.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Google.PlatformTools +PackageVersion: 35.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 17a6b31aadfdf028493a3445ce3f34177b29fda3 Mon Sep 17 00:00:00 2001 From: "Dr. Robert van Engelen" Date: Fri, 6 Dec 2024 15:48:00 -0500 Subject: [PATCH 18/58] New version: Genivia.ugrep version 7.1.1 (#195342) --- .../ugrep/7.1.1/Genivia.ugrep.installer.yaml | 17 +++++++ .../7.1.1/Genivia.ugrep.locale.en-US.yaml | 45 +++++++++++++++++++ .../g/Genivia/ugrep/7.1.1/Genivia.ugrep.yaml | 8 ++++ 3 files changed, 70 insertions(+) create mode 100644 manifests/g/Genivia/ugrep/7.1.1/Genivia.ugrep.installer.yaml create mode 100644 manifests/g/Genivia/ugrep/7.1.1/Genivia.ugrep.locale.en-US.yaml create mode 100644 manifests/g/Genivia/ugrep/7.1.1/Genivia.ugrep.yaml diff --git a/manifests/g/Genivia/ugrep/7.1.1/Genivia.ugrep.installer.yaml b/manifests/g/Genivia/ugrep/7.1.1/Genivia.ugrep.installer.yaml new file mode 100644 index 0000000000000..1cab373d49b7f --- /dev/null +++ b/manifests/g/Genivia/ugrep/7.1.1/Genivia.ugrep.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Releaser using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Genivia.ugrep +PackageVersion: 7.1.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ug.exe +- RelativeFilePath: ugrep.exe +ReleaseDate: 2024-11-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Genivia/ugrep/releases/download/v7.1.1/ugrep-windows-x64.zip + InstallerSha256: 362E2CD64EDDF2E4EA9B118DA4534D434C5689D3566E13261B6B976FA84A4A2B +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/g/Genivia/ugrep/7.1.1/Genivia.ugrep.locale.en-US.yaml b/manifests/g/Genivia/ugrep/7.1.1/Genivia.ugrep.locale.en-US.yaml new file mode 100644 index 0000000000000..4a906df83732c --- /dev/null +++ b/manifests/g/Genivia/ugrep/7.1.1/Genivia.ugrep.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with WinGet Releaser using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Genivia.ugrep +PackageVersion: 7.1.1 +PackageLocale: en-US +Publisher: Genivia Inc. +PublisherUrl: https://www.genivia.com/ +PublisherSupportUrl: https://github.com/Genivia/ugrep/issues +Author: Robert van Engelen +PackageName: ugrep +PackageUrl: https://github.com/Genivia/ugrep +License: BSD-3-Clause +LicenseUrl: https://github.com/Genivia/ugrep/blob/HEAD/LICENSE.txt +Copyright: Copyright (c) 2023, Robert van Engelen, Genivia Inc. +CopyrightUrl: https://github.com/Genivia/ugrep/blob/master/LICENSE.txt +ShortDescription: An ultra-fast, user-friendly, and compatible grep replacement +Description: |- + An ultra-fast, user-friendly grep replacement. + Ugrep combines the best features of other grep, adds new things, and surpasses their search speeds. + Includes a TUI, boolean queries (AND/OR/NOT), fuzzy search, hexdumps, searches nested archives (cpio/tar/pax/zip), compressed files (zip/gz/Z/bz2/lzma/xz/lz4/zstd), pdfs, docs, and more +Tags: +- code-search +- file-indexing +- file-search +- fuzzy-search +- grep +- hexdump +- interactive +- recursively-search +- regex +- ripgrep +- search +- silver-searcher +- tar +- tui +- unicode +- zip +ReleaseNotes: |- + What's new? + - fix negative character classes when option -i or --ignore-case is used and make ugrep closely emulate GNU grep's character class behavior when options -i and -P are used #445 + - appease -Wshadow warnings when building the RE/flex library, the TUI, and indexer (some warnings remain in ugrep.cpp) +ReleaseNotesUrl: https://github.com/Genivia/ugrep/releases/tag/v7.1.1 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/g/Genivia/ugrep/7.1.1/Genivia.ugrep.yaml b/manifests/g/Genivia/ugrep/7.1.1/Genivia.ugrep.yaml new file mode 100644 index 0000000000000..5277554961589 --- /dev/null +++ b/manifests/g/Genivia/ugrep/7.1.1/Genivia.ugrep.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Genivia.ugrep +PackageVersion: 7.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From f9ae38fe195e11f1f043b42bd03380bd7861faa3 Mon Sep 17 00:00:00 2001 From: Alberto Ponces Date: Fri, 6 Dec 2024 20:48:31 +0000 Subject: [PATCH 19/58] New version: Genymobile.scrcpy version 3.0 (#196164) --- .../3.0/Genymobile.scrcpy.installer.yaml | 25 ++++++++ .../3.0/Genymobile.scrcpy.locale.en-US.yaml | 61 +++++++++++++++++++ .../scrcpy/3.0/Genymobile.scrcpy.yaml | 8 +++ 3 files changed, 94 insertions(+) create mode 100644 manifests/g/Genymobile/scrcpy/3.0/Genymobile.scrcpy.installer.yaml create mode 100644 manifests/g/Genymobile/scrcpy/3.0/Genymobile.scrcpy.locale.en-US.yaml create mode 100644 manifests/g/Genymobile/scrcpy/3.0/Genymobile.scrcpy.yaml diff --git a/manifests/g/Genymobile/scrcpy/3.0/Genymobile.scrcpy.installer.yaml b/manifests/g/Genymobile/scrcpy/3.0/Genymobile.scrcpy.installer.yaml new file mode 100644 index 0000000000000..e34a7cbdda74a --- /dev/null +++ b/manifests/g/Genymobile/scrcpy/3.0/Genymobile.scrcpy.installer.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Genymobile.scrcpy +PackageVersion: "3.0" +InstallerType: zip +NestedInstallerType: portable +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: scrcpy-win32-v3.0\scrcpy.exe + PortableCommandAlias: scrcpy + InstallerUrl: https://github.com/Genymobile/scrcpy/releases/download/v3.0/scrcpy-win32-v3.0.zip + InstallerSha256: 7CBF8D7A6EBFDCA7B3B161E29A481C11088305F3E0A89D28E8E62F70C7BD0028 + ArchiveBinariesDependOnPath: true +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: scrcpy-win64-v3.0\scrcpy.exe + PortableCommandAlias: scrcpy + InstallerUrl: https://github.com/Genymobile/scrcpy/releases/download/v3.0/scrcpy-win64-v3.0.zip + InstallerSha256: DFBE8A8FEF6535197ACC506936BFD59D0AA0427E9B44FB2E5C550EAE642F72BE + ArchiveBinariesDependOnPath: true +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2024-11-24 diff --git a/manifests/g/Genymobile/scrcpy/3.0/Genymobile.scrcpy.locale.en-US.yaml b/manifests/g/Genymobile/scrcpy/3.0/Genymobile.scrcpy.locale.en-US.yaml new file mode 100644 index 0000000000000..065639a97a57a --- /dev/null +++ b/manifests/g/Genymobile/scrcpy/3.0/Genymobile.scrcpy.locale.en-US.yaml @@ -0,0 +1,61 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Genymobile.scrcpy +PackageVersion: "3.0" +PackageLocale: en-US +Publisher: Genymobile +PublisherUrl: https://github.com/Genymobile +PublisherSupportUrl: https://github.com/Genymobile/scrcpy/issues +Author: Genymobile +PackageName: scrcpy +PackageUrl: https://github.com/Genymobile/scrcpy +License: Apache-2.0 +LicenseUrl: https://github.com/Genymobile/scrcpy/blob/HEAD/LICENSE +Copyright: Apache License Version 2.0 +CopyrightUrl: https://raw.githubusercontent.com/Genymobile/scrcpy/master/LICENSE +ShortDescription: Display and control your Android device +Description: |- + This application provides display and control of Android devices connected via USB or over TCP/IP. + It does not require any root access. +Moniker: scrcpy +Tags: +- android +- control +- device +- display +ReleaseNotes: |- + - Add virtual display feature (#5370, #5506, #1887, #4528, #5137) + - Launch Android app on start (#5370) + - Add OpenGL filters (#5455) + - Add --capture-orientation to replace --lock-video-orientation + - (which was broken on Android 14) (#4011, #4426, #5455) + - Fix --crop on Android 14 (#4162, #5387, #5455) + - Handle virtual display rotation (#5428, #5455) + - Add --angle to apply a custom rotation (#4135, #4345, #4658, #5455) + - Add --screen-off-timeout (#5447) + - Adapt "turn screen off" for Android 15 (#3927, #5418) + - Add shortcut Ctrl+Shift+click-and-move for horizontal tilt (#5317) + - Add shortcut MOD+Shift+r to reset video capture/encoding (#5432) + - Forward Alt and Super with SDK Keyboard (#5318, #5322) + - Add more details to --list-encoders output (#5416) + - Add option to disable virtual display system decorations (#5494) + - Fix --time-limit overflow on Windows (#5355) + - Fix "does not match caller's uid 2000" error (#4639, #5476) + - Accept filenames containing ':' when recording (#5487, #5499) + - Disable mouse by default if no video playback (#5410) + - Rename --display-buffer to --video-buffer (#5403, #5420) + - Listen to display changed events (#5415, #161, #1918, #4152, #5362) + - Adapt server debugging for Android >= 11 (#5346, #5466) + - Upgrade FFmpeg to 7.1 (#5332) + - Upgrade SDL to 2.30.9 + - Upgrade platform-tools (adb) to 35.0.2 + - Build releases via GitHub Actions (#5306, #4490) + - Release static builds for Linux and macOS (#5515, #1733, #3235, #4489, #5327) + - Various technical fixes +ReleaseNotesUrl: https://github.com/Genymobile/scrcpy/releases/tag/v3.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Genymobile/scrcpy/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/g/Genymobile/scrcpy/3.0/Genymobile.scrcpy.yaml b/manifests/g/Genymobile/scrcpy/3.0/Genymobile.scrcpy.yaml new file mode 100644 index 0000000000000..c6742c13f163c --- /dev/null +++ b/manifests/g/Genymobile/scrcpy/3.0/Genymobile.scrcpy.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Genymobile.scrcpy +PackageVersion: "3.0" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From eccbb133cb43e5726bb5aafdef1dcdb9cbbe7833 Mon Sep 17 00:00:00 2001 From: Giulio Sorrentino Date: Fri, 6 Dec 2024 21:48:43 +0100 Subject: [PATCH 20/58] New version: GiulioSorrentino.numeronesfortuneinavalonia version 2.0.4.3 (#196225) --- ....numeronesfortuneinavalonia.installer.yaml | 19 +++++++++++++++ ...meronesfortuneinavalonia.locale.en-US.yaml | 24 +++++++++++++++++++ ...Sorrentino.numeronesfortuneinavalonia.yaml | 8 +++++++ 3 files changed, 51 insertions(+) create mode 100644 manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.3/GiulioSorrentino.numeronesfortuneinavalonia.installer.yaml create mode 100644 manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.3/GiulioSorrentino.numeronesfortuneinavalonia.locale.en-US.yaml create mode 100644 manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.3/GiulioSorrentino.numeronesfortuneinavalonia.yaml diff --git a/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.3/GiulioSorrentino.numeronesfortuneinavalonia.installer.yaml b/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.3/GiulioSorrentino.numeronesfortuneinavalonia.installer.yaml new file mode 100644 index 0000000000000..0e6c9631b87f2 --- /dev/null +++ b/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.3/GiulioSorrentino.numeronesfortuneinavalonia.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: GiulioSorrentino.numeronesfortuneinavalonia +PackageVersion: 2.0.4.3 +InstallerType: wix +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.9 +ProductCode: '{90D24925-7418-48AD-9950-676C4F83DB24}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GiulianoSpaghetti/numfortune.avalonia.new/releases/download/2.0.4/numfortune.Avalonia-2.0.4.3-amd64.msi + InstallerSha256: 626BDE6B07D81E16A6A58918C3D904217E58C038609D952A0F84482CBC3A29B1 +- Architecture: arm64 + InstallerUrl: https://github.com/GiulianoSpaghetti/numfortune.avalonia.new/releases/download/2.0.4/numfortune.Avalonia-2.0.4.3-arm64.msi + InstallerSha256: 639750831E33E8EB1EFF62A16F6B45DE7EB3083B73242B9CB865B78EA2759AD3 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.3/GiulioSorrentino.numeronesfortuneinavalonia.locale.en-US.yaml b/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.3/GiulioSorrentino.numeronesfortuneinavalonia.locale.en-US.yaml new file mode 100644 index 0000000000000..6dd9a031d81cc --- /dev/null +++ b/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.3/GiulioSorrentino.numeronesfortuneinavalonia.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: GiulioSorrentino.numeronesfortuneinavalonia +PackageVersion: 2.0.4.3 +PackageLocale: en-US +Publisher: Giulio Sorrentino +PublisherUrl: https://numerone.altervista.org +PublisherSupportUrl: https://github.com/numerunix/numfortune.avalonia.new/issues +Author: Giulio Sorrentino +PackageName: numerone's fortune in avalonia +PackageUrl: https://github.com/numerunix/numfortune.avalonia.new/releases/download/2.0/numfortune-2.0-x64.exe +License: GPLv3+ +LicenseUrl: https://github.com/numerunix/numfortune.avalonia.new/blob/master/LICENSE +Copyright: 2023 Giulio Sorrentino +ShortDescription: A clone of fortune linux program in avalonia +Description: A clone for windows and android of the fortune linux program, written in Avalonia. +Tags: +- fortune +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/GiulianoSpaghetti/numfortune.avalonia.new/wiki +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.3/GiulioSorrentino.numeronesfortuneinavalonia.yaml b/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.3/GiulioSorrentino.numeronesfortuneinavalonia.yaml new file mode 100644 index 0000000000000..0680d96442f7b --- /dev/null +++ b/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.3/GiulioSorrentino.numeronesfortuneinavalonia.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: GiulioSorrentino.numeronesfortuneinavalonia +PackageVersion: 2.0.4.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From fce66f2fb4b29c87d8e6a6cff1d221d0ed2f97ac Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 7 Dec 2024 04:58:26 +0800 Subject: [PATCH 21/58] New version: Redisant.IEC104ServerSimulator version 1.1.9.8 (#196721) --- ...isant.IEC104ServerSimulator.installer.yaml | 27 +++++++++++++++++++ ...nt.IEC104ServerSimulator.locale.en-US.yaml | 26 ++++++++++++++++++ ...nt.IEC104ServerSimulator.locale.zh-CN.yaml | 26 ++++++++++++++++++ .../Redisant.IEC104ServerSimulator.yaml | 8 ++++++ 4 files changed, 87 insertions(+) create mode 100644 manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.installer.yaml create mode 100644 manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.locale.en-US.yaml create mode 100644 manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.locale.zh-CN.yaml create mode 100644 manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.yaml diff --git a/manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.installer.yaml b/manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.installer.yaml new file mode 100644 index 0000000000000..273179acbf3bb --- /dev/null +++ b/manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Redisant.IEC104ServerSimulator +PackageVersion: 1.1.9.8 +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: IEC104ServerSimulator-1.1.9.8-windows\IEC104ServerSimulator.exe +UpgradeBehavior: install +ProductCode: '{C32B3733-761E-BEC2-6A76-83C7880C176B}_is1' +ReleaseDate: 2024-12-06 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/chenjing1294/IEC104ServerSimulator-release/releases/download/v1.1.9.8/IEC104ServerSimulator-1.1.9.8-windows.zip + InstallerSha256: 8FD12810D6E0BD2400C3DB47CD88B49057D7B4E3D9EC97ED43D10D58C000FE8C + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/chenjing1294/IEC104ServerSimulator-release/releases/download/v1.1.9.8/IEC104ServerSimulator-1.1.9.8-windows.zip + InstallerSha256: 8FD12810D6E0BD2400C3DB47CD88B49057D7B4E3D9EC97ED43D10D58C000FE8C + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.locale.en-US.yaml b/manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.locale.en-US.yaml new file mode 100644 index 0000000000000..470d292ea81b1 --- /dev/null +++ b/manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Redisant.IEC104ServerSimulator +PackageVersion: 1.1.9.8 +PackageLocale: en-US +Publisher: Redisant, Inc. +PublisherUrl: https://www.redisant.com/ +PublisherSupportUrl: https://www.redisant.com/iec104server/contact +PrivacyUrl: https://www.redisant.com/iec104server/privacy +PackageName: IEC104 Server Simulator +PackageUrl: https://www.redisant.com/iec104server +License: Proprietary +LicenseUrl: https://www.redisant.com/iec104server/end_user_license_agreement +Copyright: Copyright © 2024 Redisant +ShortDescription: Fully supports the IEC104 protocol, creates multiple connections at the same time, simulates multiple slave stations, and quickly builds your test platform. +Tags: +- iec101 +- iec104 +ReleaseNotes: |- + - [Fixed] Clean up open tabs when deleting a connection + - [Improved] Reliability updates +ReleaseNotesUrl: https://www.redisant.com/iec104server/download +PurchaseUrl: https://www.redisant.com/iec104server/buy +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.locale.zh-CN.yaml b/manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cb7061b21613c --- /dev/null +++ b/manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: Redisant.IEC104ServerSimulator +PackageVersion: 1.1.9.8 +PackageLocale: zh-CN +Publisher: Redisant, Inc. +PublisherUrl: https://www.redisant.cn/ +PublisherSupportUrl: https://www.redisant.cn/iec104server/contact +PrivacyUrl: https://www.redisant.cn/iec104server/privacy +PackageName: IEC104 Server Simulator +PackageUrl: https://www.redisant.cn/iec104server +License: 专有软件 +LicenseUrl: https://www.redisant.cn/iec104server/end_user_license_agreement +Copyright: Copyright © 2024 Redisant +ShortDescription: 完整支持 IEC104 规约,同时创建多个连接,模拟多个从站,快速搭建您的测试平台。 +Tags: +- iec101 +- iec104 +ReleaseNotes: |- + - [Fixed] 删除连接时清理打开的标签页 + - [Improved] 可靠性更新 +ReleaseNotesUrl: https://www.redisant.cn/iec104server/download +PurchaseUrl: https://www.redisant.cn/iec104server/buy +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.yaml b/manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.yaml new file mode 100644 index 0000000000000..8f34ca4ddb53f --- /dev/null +++ b/manifests/r/Redisant/IEC104ServerSimulator/1.1.9.8/Redisant.IEC104ServerSimulator.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Redisant.IEC104ServerSimulator +PackageVersion: 1.1.9.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From a589ffe13bfd9b5f9ab417abdafc35160978bbc6 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Fri, 6 Dec 2024 13:00:54 -0800 Subject: [PATCH 22/58] Automatic deletion of AdGuard.AdGuardVPN.Nightly 2.4.1613.0 (#196790) --- .../AdGuard.AdGuardVPN.Nightly.installer.yaml | 20 ------------------- ...Guard.AdGuardVPN.Nightly.locale.en-US.yaml | 13 ------------ .../AdGuard.AdGuardVPN.Nightly.yaml | 8 -------- 3 files changed, 41 deletions(-) delete mode 100644 manifests/a/AdGuard/AdGuardVPN/Nightly/2.4.1613.0/AdGuard.AdGuardVPN.Nightly.installer.yaml delete mode 100644 manifests/a/AdGuard/AdGuardVPN/Nightly/2.4.1613.0/AdGuard.AdGuardVPN.Nightly.locale.en-US.yaml delete mode 100644 manifests/a/AdGuard/AdGuardVPN/Nightly/2.4.1613.0/AdGuard.AdGuardVPN.Nightly.yaml diff --git a/manifests/a/AdGuard/AdGuardVPN/Nightly/2.4.1613.0/AdGuard.AdGuardVPN.Nightly.installer.yaml b/manifests/a/AdGuard/AdGuardVPN/Nightly/2.4.1613.0/AdGuard.AdGuardVPN.Nightly.installer.yaml deleted file mode 100644 index 4aa8befc1dd9e..0000000000000 --- a/manifests/a/AdGuard/AdGuardVPN/Nightly/2.4.1613.0/AdGuard.AdGuardVPN.Nightly.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Automatically updated by the winget bot at 2024/Nov/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: AdGuard.AdGuardVPN.Nightly -PackageVersion: 2.4.1613.0 -InstallerType: burn -Scope: machine -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: -quiet - SilentWithProgress: -quiet -UpgradeBehavior: install -Installers: -- Architecture: x86 - InstallerUrl: https://agrd.io/windows_vpn_nightly - InstallerSha256: E40C4EDEDC8BE8A5D69707B0F4E061D1BA91E13411117ED6D2DB6627D798E734 -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/a/AdGuard/AdGuardVPN/Nightly/2.4.1613.0/AdGuard.AdGuardVPN.Nightly.locale.en-US.yaml b/manifests/a/AdGuard/AdGuardVPN/Nightly/2.4.1613.0/AdGuard.AdGuardVPN.Nightly.locale.en-US.yaml deleted file mode 100644 index 82b0deaad8f39..0000000000000 --- a/manifests/a/AdGuard/AdGuardVPN/Nightly/2.4.1613.0/AdGuard.AdGuardVPN.Nightly.locale.en-US.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically updated by the winget bot at 2024/Nov/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: AdGuard.AdGuardVPN.Nightly -PackageVersion: 2.4.1613.0 -PackageLocale: en-US -Publisher: Adguard Software Limited -PackageName: AdGuardVPN -License: Proprietary -Copyright: (c) All rights reserved -ShortDescription: AdGuardVPN -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/a/AdGuard/AdGuardVPN/Nightly/2.4.1613.0/AdGuard.AdGuardVPN.Nightly.yaml b/manifests/a/AdGuard/AdGuardVPN/Nightly/2.4.1613.0/AdGuard.AdGuardVPN.Nightly.yaml deleted file mode 100644 index ae30ec60ff6c4..0000000000000 --- a/manifests/a/AdGuard/AdGuardVPN/Nightly/2.4.1613.0/AdGuard.AdGuardVPN.Nightly.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2024/Nov/27 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: AdGuard.AdGuardVPN.Nightly -PackageVersion: 2.4.1613.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 From c9cbe2977f9a2acd1b9a9d4f60c85083390b4a94 Mon Sep 17 00:00:00 2001 From: Vedant Mohan Goyal <83997633+vedantmgoyal9@users.noreply.github.com> Date: Sat, 7 Dec 2024 02:31:25 +0530 Subject: [PATCH 23/58] New version: Wetransform.HaleStudio version 5.4.0 (#196768) --- .../Wetransform.HaleStudio.installer.yaml | 18 +++++++++ .../Wetransform.HaleStudio.locale.en-US.yaml | 38 +++++++++++++++++++ .../5.4.0/Wetransform.HaleStudio.yaml | 8 ++++ 3 files changed, 64 insertions(+) create mode 100644 manifests/w/Wetransform/HaleStudio/5.4.0/Wetransform.HaleStudio.installer.yaml create mode 100644 manifests/w/Wetransform/HaleStudio/5.4.0/Wetransform.HaleStudio.locale.en-US.yaml create mode 100644 manifests/w/Wetransform/HaleStudio/5.4.0/Wetransform.HaleStudio.yaml diff --git a/manifests/w/Wetransform/HaleStudio/5.4.0/Wetransform.HaleStudio.installer.yaml b/manifests/w/Wetransform/HaleStudio/5.4.0/Wetransform.HaleStudio.installer.yaml new file mode 100644 index 0000000000000..cfe2376ce0e0a --- /dev/null +++ b/manifests/w/Wetransform/HaleStudio/5.4.0/Wetransform.HaleStudio.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.9.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Wetransform.HaleStudio +PackageVersion: 5.4.0 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{6E7C410C-6727-4622-906A-4A468416BF7B}' +AppsAndFeaturesEntries: +- DisplayName: hale»studio 5.4.0 + UpgradeCode: '{6B6151C0-E3F9-11DE-8A39-0800200C9A66}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/halestudio/hale/releases/download/v5.4.0/HALE-5.4.0-en-x64.msi + InstallerSha256: 844AF457B089350315041A65D2259563B714451343032E6BB1A7BF0EBB671847 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2024-12-06 diff --git a/manifests/w/Wetransform/HaleStudio/5.4.0/Wetransform.HaleStudio.locale.en-US.yaml b/manifests/w/Wetransform/HaleStudio/5.4.0/Wetransform.HaleStudio.locale.en-US.yaml new file mode 100644 index 0000000000000..3c178bfa39d79 --- /dev/null +++ b/manifests/w/Wetransform/HaleStudio/5.4.0/Wetransform.HaleStudio.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created using wingetcreate 1.9.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Wetransform.HaleStudio +PackageVersion: 5.4.0 +PackageLocale: en-US +Publisher: wetransform GmbH +PublisherUrl: https://www.wetransform.to +PublisherSupportUrl: https://www.wetransform.to/about/contact +PrivacyUrl: https://www.wetransform.to/privacy +PackageName: hale studio +PackageUrl: https://github.com/halestudio/hale +License: GNU Lesser General Public License, Version 3 +ShortDescription: (Spatial) data harmonisation with hale studio (formerly HUMBOLDT Alignment Editor) +Description: hale studio is a desktop and server environment to analyse, transform and validate complex data sets. +Tags: +- data-harmonisation +- database +- eclipse-rcp +- etl +- etl-framework +- geospatial-data +- gml +- groovy +- hale +- hale-studio +- humboldt-alignment-editor +- inspire +- java +- scala +- transformation +- xml +ReleaseNotesUrl: https://github.com/halestudio/hale/releases/tag/v5.4.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/halestudio/hale/wiki +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/w/Wetransform/HaleStudio/5.4.0/Wetransform.HaleStudio.yaml b/manifests/w/Wetransform/HaleStudio/5.4.0/Wetransform.HaleStudio.yaml new file mode 100644 index 0000000000000..09bba2b86f1a8 --- /dev/null +++ b/manifests/w/Wetransform/HaleStudio/5.4.0/Wetransform.HaleStudio.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Wetransform.HaleStudio +PackageVersion: 5.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 9d5a48d6730bb916c672c0fa54f8e7acbdb57e95 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 7 Dec 2024 05:06:38 +0800 Subject: [PATCH 24/58] New version: Redisant.IEC104ClientSimulator version 1.1.9.8 (#196723) --- ...isant.IEC104ClientSimulator.installer.yaml | 27 +++++++++++++++++++ ...nt.IEC104ClientSimulator.locale.en-US.yaml | 24 +++++++++++++++++ ...nt.IEC104ClientSimulator.locale.zh-CN.yaml | 24 +++++++++++++++++ .../Redisant.IEC104ClientSimulator.yaml | 8 ++++++ 4 files changed, 83 insertions(+) create mode 100644 manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.installer.yaml create mode 100644 manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.locale.en-US.yaml create mode 100644 manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.locale.zh-CN.yaml create mode 100644 manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.yaml diff --git a/manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.installer.yaml b/manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.installer.yaml new file mode 100644 index 0000000000000..205cc545589ea --- /dev/null +++ b/manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Redisant.IEC104ClientSimulator +PackageVersion: 1.1.9.8 +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: IEC104ClientSimulator-1.1.9.8-windows\IEC104ClientSimulator.exe +UpgradeBehavior: install +ProductCode: '{7F0943F4-3C93-4B1B-8C4F-67281ECF845A}_is1' +ReleaseDate: 2024-12-06 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/chenjing1294/IEC104ClientSimulator-release/releases/download/v1.1.9.8/IEC104ClientSimulator-1.1.9.8-windows.zip + InstallerSha256: 277510AEC1CE49374E89F59618F7AF3E2A8603013215540460C934E57A3B2AA6 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/chenjing1294/IEC104ClientSimulator-release/releases/download/v1.1.9.8/IEC104ClientSimulator-1.1.9.8-windows.zip + InstallerSha256: 277510AEC1CE49374E89F59618F7AF3E2A8603013215540460C934E57A3B2AA6 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.locale.en-US.yaml b/manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.locale.en-US.yaml new file mode 100644 index 0000000000000..2244e776e437f --- /dev/null +++ b/manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Redisant.IEC104ClientSimulator +PackageVersion: 1.1.9.8 +PackageLocale: en-US +Publisher: Redisant, Inc. +PublisherUrl: https://www.redisant.com/ +PublisherSupportUrl: https://www.redisant.com/iec104client/contact +PrivacyUrl: https://www.redisant.com/iec104client/privacy +PackageName: IEC104 Client Simulator +PackageUrl: https://www.redisant.com/iec104client +License: Proprietary +LicenseUrl: https://www.redisant.com/iec104client/end_user_license_agreement +Copyright: Copyright © 2024 Redisant +ShortDescription: Fully supports IEC104 protocol, creates multiple connections at the same time, monitors multiple slave stations. +Tags: +- iec101 +- iec104 +ReleaseNotes: '- [Fixed] Fixed some issues' +ReleaseNotesUrl: https://www.redisant.com/iec104client/download +PurchaseUrl: https://www.redisant.com/iec104client/buy +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.locale.zh-CN.yaml b/manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.locale.zh-CN.yaml new file mode 100644 index 0000000000000..eeeddb4446254 --- /dev/null +++ b/manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: Redisant.IEC104ClientSimulator +PackageVersion: 1.1.9.8 +PackageLocale: zh-CN +Publisher: Redisant, Inc. +PublisherUrl: https://www.redisant.cn/ +PublisherSupportUrl: https://www.redisant.cn/iec104client/contact +PrivacyUrl: https://www.redisant.cn/iec104client/privacy +PackageName: IEC104 Client Simulator +PackageUrl: https://www.redisant.cn/iec104client +License: 专有软件 +LicenseUrl: https://www.redisant.cn/iec104client/end_user_license_agreement +Copyright: Copyright © 2024 Redisant +ShortDescription: 完整支持 IEC104 规约,同时创建多个连接,监控多个从站,快速调试您的从站设备。 +Tags: +- iec101 +- iec104 +ReleaseNotes: '- [Fixed] 修复一些问题' +ReleaseNotesUrl: https://www.redisant.cn/iec104client/download +PurchaseUrl: https://www.redisant.cn/iec104client/buy +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.yaml b/manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.yaml new file mode 100644 index 0000000000000..b0a7d919d4095 --- /dev/null +++ b/manifests/r/Redisant/IEC104ClientSimulator/1.1.9.8/Redisant.IEC104ClientSimulator.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Redisant.IEC104ClientSimulator +PackageVersion: 1.1.9.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From eeee2d74486bab6dbbb49936910e553dcb9f9df4 Mon Sep 17 00:00:00 2001 From: Enilton Nascimento Date: Fri, 6 Dec 2024 18:08:05 -0300 Subject: [PATCH 25/58] New version: DinamoNetworks.HSMDinamo version 4.14.0 (#196769) --- .../DinamoNetworks.HSMDinamo.installer.yaml | 14 ++++++++++ ...DinamoNetworks.HSMDinamo.locale.pt-BR.yaml | 26 +++++++++++++++++++ .../4.14.0/DinamoNetworks.HSMDinamo.yaml | 8 ++++++ 3 files changed, 48 insertions(+) create mode 100644 manifests/d/DinamoNetworks/HSMDinamo/4.14.0/DinamoNetworks.HSMDinamo.installer.yaml create mode 100644 manifests/d/DinamoNetworks/HSMDinamo/4.14.0/DinamoNetworks.HSMDinamo.locale.pt-BR.yaml create mode 100644 manifests/d/DinamoNetworks/HSMDinamo/4.14.0/DinamoNetworks.HSMDinamo.yaml diff --git a/manifests/d/DinamoNetworks/HSMDinamo/4.14.0/DinamoNetworks.HSMDinamo.installer.yaml b/manifests/d/DinamoNetworks/HSMDinamo/4.14.0/DinamoNetworks.HSMDinamo.installer.yaml new file mode 100644 index 0000000000000..79589cce0394b --- /dev/null +++ b/manifests/d/DinamoNetworks/HSMDinamo/4.14.0/DinamoNetworks.HSMDinamo.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.9.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: DinamoNetworks.HSMDinamo +PackageVersion: 4.14.0 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{B7A35484-0D79-4F02-9761-5E40E8BCB0CF}' +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.dinamonetworks.io/bin/client/windows/x64/4.14.0/dinamo-4.14.0-x64-setup.msi + InstallerSha256: C4640A23FDDDC1F259187E3558098DC43208CB8D9A5E52D65D8093124E42CF56 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/d/DinamoNetworks/HSMDinamo/4.14.0/DinamoNetworks.HSMDinamo.locale.pt-BR.yaml b/manifests/d/DinamoNetworks/HSMDinamo/4.14.0/DinamoNetworks.HSMDinamo.locale.pt-BR.yaml new file mode 100644 index 0000000000000..3dc993a4a2ce4 --- /dev/null +++ b/manifests/d/DinamoNetworks/HSMDinamo/4.14.0/DinamoNetworks.HSMDinamo.locale.pt-BR.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.9.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: DinamoNetworks.HSMDinamo +PackageVersion: 4.14.0 +PackageLocale: pt-BR +Publisher: Dinamo Networks +PublisherUrl: https://www.dinamonetworks.com +PublisherSupportUrl: https://docs.dinamonetworks.io/support/wk/ +PrivacyUrl: https://docs.dinamonetworks.io/support/wk/ +Author: Dinamo Networks +PackageName: HSM Dinamo +PackageUrl: https://docs.dinamonetworks.io/hsm/soft_client/installation/windows/ +License: MIT +ShortDescription: Software para os HSMs (Hardware Secure Module) Dinamo Networks. +Moniker: HSM +Tags: +- hsm +- dinamo +- segurança +- dinamo networks +- criptografia +- msc +- fips +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/d/DinamoNetworks/HSMDinamo/4.14.0/DinamoNetworks.HSMDinamo.yaml b/manifests/d/DinamoNetworks/HSMDinamo/4.14.0/DinamoNetworks.HSMDinamo.yaml new file mode 100644 index 0000000000000..83fc7ce7f0e48 --- /dev/null +++ b/manifests/d/DinamoNetworks/HSMDinamo/4.14.0/DinamoNetworks.HSMDinamo.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: DinamoNetworks.HSMDinamo +PackageVersion: 4.14.0 +DefaultLocale: pt-BR +ManifestType: version +ManifestVersion: 1.9.0 From 142255374d5d61d797c1ad817e2ddd46ca0df1f0 Mon Sep 17 00:00:00 2001 From: Vedant Mohan Goyal <83997633+vedantmgoyal9@users.noreply.github.com> Date: Sat, 7 Dec 2024 02:38:31 +0530 Subject: [PATCH 26/58] New version: alagrede.znote version 2.7.0 (#196775) --- .../znote/2.7.0/alagrede.znote.installer.yaml | 14 ++++++++++ .../2.7.0/alagrede.znote.locale.en-US.yaml | 28 +++++++++++++++++++ .../alagrede/znote/2.7.0/alagrede.znote.yaml | 8 ++++++ 3 files changed, 50 insertions(+) create mode 100644 manifests/a/alagrede/znote/2.7.0/alagrede.znote.installer.yaml create mode 100644 manifests/a/alagrede/znote/2.7.0/alagrede.znote.locale.en-US.yaml create mode 100644 manifests/a/alagrede/znote/2.7.0/alagrede.znote.yaml diff --git a/manifests/a/alagrede/znote/2.7.0/alagrede.znote.installer.yaml b/manifests/a/alagrede/znote/2.7.0/alagrede.znote.installer.yaml new file mode 100644 index 0000000000000..a6be17a0fddec --- /dev/null +++ b/manifests/a/alagrede/znote/2.7.0/alagrede.znote.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.9.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: alagrede.znote +PackageVersion: 2.7.0 +InstallerType: nullsoft +Scope: user +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/alagrede/znote-app/releases/download/v2.7.0/znote-Setup-2.7.0.exe + InstallerSha256: E2C96A837BFC0DE1F02462C2CB25DC2CB41FD37328807E38144D6C68EDE3D324 +ManifestType: installer +ManifestVersion: 1.9.0 +ReleaseDate: 2024-12-06 diff --git a/manifests/a/alagrede/znote/2.7.0/alagrede.znote.locale.en-US.yaml b/manifests/a/alagrede/znote/2.7.0/alagrede.znote.locale.en-US.yaml new file mode 100644 index 0000000000000..5651860585784 --- /dev/null +++ b/manifests/a/alagrede/znote/2.7.0/alagrede.znote.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.9.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: alagrede.znote +PackageVersion: 2.7.0 +PackageLocale: en-US +Publisher: alagrede +PublisherUrl: https://github.com/alagrede +PublisherSupportUrl: https://github.com/alagrede/znote-app/issues +PackageName: znote +PackageUrl: https://github.com/alagrede/znote-app +License: Freeware +ShortDescription: Markdown-based note-taking app for developers +Tags: +- dev +- editor +- electron +- markdown +- react +- znote +ReleaseNotesUrl: https://github.com/alagrede/znote-app/releases/tag/v2.7.0 +Documentations: +- DocumentLabel: Znote Docs + DocumentUrl: https://doc.notebookjs.app +- DocumentLabel: FAQ + DocumentUrl: https://znote.io/faq.html +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/a/alagrede/znote/2.7.0/alagrede.znote.yaml b/manifests/a/alagrede/znote/2.7.0/alagrede.znote.yaml new file mode 100644 index 0000000000000..850f3807330c1 --- /dev/null +++ b/manifests/a/alagrede/znote/2.7.0/alagrede.znote.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.2.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: alagrede.znote +PackageVersion: 2.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 983f77394fa1ee639a83553fad8e1fc3e0ebdd3f Mon Sep 17 00:00:00 2001 From: DaMn good B0t <143536629+damn-good-b0t@users.noreply.github.com> Date: Fri, 6 Dec 2024 22:12:25 +0100 Subject: [PATCH 27/58] New version: orhun.git-cliff version 2.7.0 (#192623) --- .../2.7.0/orhun.git-cliff.installer.yaml | 36 +++++++++ .../2.7.0/orhun.git-cliff.locale.en-US.yaml | 78 +++++++++++++++++++ .../git-cliff/2.7.0/orhun.git-cliff.yaml | 8 ++ 3 files changed, 122 insertions(+) create mode 100644 manifests/o/orhun/git-cliff/2.7.0/orhun.git-cliff.installer.yaml create mode 100644 manifests/o/orhun/git-cliff/2.7.0/orhun.git-cliff.locale.en-US.yaml create mode 100644 manifests/o/orhun/git-cliff/2.7.0/orhun.git-cliff.yaml diff --git a/manifests/o/orhun/git-cliff/2.7.0/orhun.git-cliff.installer.yaml b/manifests/o/orhun/git-cliff/2.7.0/orhun.git-cliff.installer.yaml new file mode 100644 index 0000000000000..70a9b131aad43 --- /dev/null +++ b/manifests/o/orhun/git-cliff/2.7.0/orhun.git-cliff.installer.yaml @@ -0,0 +1,36 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: orhun.git-cliff +PackageVersion: 2.7.0 +InstallerType: zip +NestedInstallerType: portable +UpgradeBehavior: install +ReleaseDate: 2024-11-20 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: git-cliff-2.7.0/git-cliff.exe + InstallerUrl: https://github.com/orhun/git-cliff/releases/download/v2.7.0/git-cliff-2.7.0-i686-pc-windows-msvc.zip + InstallerSha256: 65DF9EB49BE86930D9A29395E1EC71CBAEA92DFBCBA364989B352F8349C63A86 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: git-cliff-2.7.0/git-cliff.exe + InstallerUrl: https://github.com/orhun/git-cliff/releases/download/v2.7.0/git-cliff-2.7.0-x86_64-pc-windows-gnu.zip + InstallerSha256: 688699557FA4C2E799FF6ADE1EC0A3FC72620DBC31DE3FCD7B731B416F37F911 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: git-cliff-2.7.0/git-cliff-mangen.exe + InstallerUrl: https://github.com/orhun/git-cliff/releases/download/v2.7.0/git-cliff-2.7.0-aarch64-pc-windows-msvc.zip + InstallerSha256: 3020CAA170C7C63517BFB16A9AE142B493BDD35903CCD4663509AA7E231AA7C0 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/o/orhun/git-cliff/2.7.0/orhun.git-cliff.locale.en-US.yaml b/manifests/o/orhun/git-cliff/2.7.0/orhun.git-cliff.locale.en-US.yaml new file mode 100644 index 0000000000000..7c5d39df0e1fd --- /dev/null +++ b/manifests/o/orhun/git-cliff/2.7.0/orhun.git-cliff.locale.en-US.yaml @@ -0,0 +1,78 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: orhun.git-cliff +PackageVersion: 2.7.0 +PackageLocale: en-US +Publisher: Orhun Parmaksız +PublisherUrl: https://github.com/orhun +PublisherSupportUrl: https://github.com/orhun/git-cliff/issues +PackageName: git-cliff +PackageUrl: https://github.com/orhun/git-cliff +License: Apache-2.0 +LicenseUrl: https://github.com/orhun/git-cliff/blob/main/LICENSE-APACHE +ShortDescription: A highly customizable Changelog Generator that follows Conventional Commit specifications. +Tags: +- changelog +- changelog-generator +- commit +- conventional-changelog +- conventional-commit +- conventional-commits +- generator +- git +- git-cliff +- hacktoberfest +- keepachangelog +- rust +- semver +ReleaseNotes: |- + animation2.7.0 - 2024-11-20 + ⛰️ Features + - (args) Add color to the help text (#897) - (f423484) + - (ci) Add Nix CI (#939) - (d0848ff) + - (config) Allow overriding the remote API URL via config (#896) - (6d86e2c) + - (docker) Build arm64 images again (#879) (#919) - (84771f6) + - (jujutsu) Add jujustu support (#930) - (ab95626) + - (nix) Add a basic Nix environment (#918) - (6b17736) + - (website) Add user testimonials (#895) - (ef2374c) + 🐛 Bug Fixes + - (bitbucket) Match PR and release metadata correctly (#907) - (e936ed5) + - (changelog) Fix missing commit fields in context (#837) (#920) - (f8641ee) + - (changelog) Include the root commit when --latest is used with one tag (#901) - (508a97e) + - (remote) Preserve first time contributors (#925) - (99b78b5) + 📚 Documentation + - (git) Improve docs for commit_preprocessors and commit_parsers (#928) - (c1f1215) + - (readme) Add blog post about git-cliff - (82b10ac) + - (website) Add highlights for 2.7.0 (#955) - (b6b5449) + - (website) Add more testimonials - (bfe9beb) + - (website) Update sourcehut (#894) - (bcc32ca) + ⚡ Performance + - (test) Don't create regex inside a loop (#937) - (0fabf22) + 🧪 Testing + - (git) Find upstream remote when using ssh (#926) - (2e65a72) + - (repo) Expand unit tests of the repo module (#909) - (da1cb61) + ⚙️ Miscellaneous Tasks + - (config) Add the 'other' parser to the default config - (12cb1df) + - (docker) Upgrade Rust and libc version in Dockerfile - (8bd0607) + - (docker) Bump the Rust version in Docker image - (c28121c) + - (integration) Remove experimental feature disclaimer - (237c327) + - (log) Add trace log about which command is being run - (a9b2690) + - (nix) Update flakes - (7654e67) + - (website) Add new testimonials - (0c207d6) + ◀️ Revert + - (docker) Bump the Rust version in Docker image - (fc142e4) + New Contributors ❤️ + - @pauliyobo made their first contribution in #896 + - @blackheaven made their first contribution in #939 + - @Muhammad-Owais-Warsi made their first contribution in #928 + - @kemitix made their first contribution in #930 + - @mcwarman made their first contribution in #925 + - @LtdSauce made their first contribution in #919 + - @dqkqd made their first contribution in #920 + - @gsquire made their first contribution in #909 + - @rarescosma made their first contribution in #901 + - @vsn4ik made their first contribution in #894 +ReleaseNotesUrl: https://github.com/orhun/git-cliff/releases/tag/v2.7.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/o/orhun/git-cliff/2.7.0/orhun.git-cliff.yaml b/manifests/o/orhun/git-cliff/2.7.0/orhun.git-cliff.yaml new file mode 100644 index 0000000000000..68e25c29b1f6b --- /dev/null +++ b/manifests/o/orhun/git-cliff/2.7.0/orhun.git-cliff.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: orhun.git-cliff +PackageVersion: 2.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From c6cb1cb1e19a296edc8fba5ad3b91811e762c8d2 Mon Sep 17 00:00:00 2001 From: maforget <11904426+maforget@users.noreply.github.com> Date: Fri, 6 Dec 2024 16:13:03 -0500 Subject: [PATCH 28/58] Add version: maforget.ComicRackCE.Nightly version nightly-a0fbb5e (#196786) --- ...aforget.ComicRackCE.Nightly.installer.yaml | 27 +++++++++++++++++++ ...rget.ComicRackCE.Nightly.locale.en-US.yaml | 20 ++++++++++++++ .../maforget.ComicRackCE.Nightly.yaml | 8 ++++++ 3 files changed, 55 insertions(+) create mode 100644 manifests/m/maforget/ComicRackCE/Nightly/nightly-a0fbb5e/maforget.ComicRackCE.Nightly.installer.yaml create mode 100644 manifests/m/maforget/ComicRackCE/Nightly/nightly-a0fbb5e/maforget.ComicRackCE.Nightly.locale.en-US.yaml create mode 100644 manifests/m/maforget/ComicRackCE/Nightly/nightly-a0fbb5e/maforget.ComicRackCE.Nightly.yaml diff --git a/manifests/m/maforget/ComicRackCE/Nightly/nightly-a0fbb5e/maforget.ComicRackCE.Nightly.installer.yaml b/manifests/m/maforget/ComicRackCE/Nightly/nightly-a0fbb5e/maforget.ComicRackCE.Nightly.installer.yaml new file mode 100644 index 0000000000000..a92ff8bd5d1c6 --- /dev/null +++ b/manifests/m/maforget/ComicRackCE/Nightly/nightly-a0fbb5e/maforget.ComicRackCE.Nightly.installer.yaml @@ -0,0 +1,27 @@ +# Created with WinGet Releaser using komac v2.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: maforget.ComicRackCE.Nightly +PackageVersion: nightly-a0fbb5e +InstallerLocale: en-US +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{0FA63C63-846C-49B7-9A4B-553EF8EBEF0B}_is1' +ReleaseDate: 2024-12-06 +AppsAndFeaturesEntries: +- DisplayName: ComicRack Community Edition + Publisher: ComicRack Community + ProductCode: '{0FA63C63-846C-49B7-9A4B-553EF8EBEF0B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\ComicRack Community Edition' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/maforget/ComicRackCE/releases/download/nightly/ComicRackCESetup_nightly.exe + InstallerSha256: A4CE3CE269202C8C50B05D7B4D390461907EB42D93E64CEEB4F1677E3B7F2858 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/maforget/ComicRackCE/Nightly/nightly-a0fbb5e/maforget.ComicRackCE.Nightly.locale.en-US.yaml b/manifests/m/maforget/ComicRackCE/Nightly/nightly-a0fbb5e/maforget.ComicRackCE.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..0ec7dc70184de --- /dev/null +++ b/manifests/m/maforget/ComicRackCE/Nightly/nightly-a0fbb5e/maforget.ComicRackCE.Nightly.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with WinGet Releaser using komac v2.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: maforget.ComicRackCE.Nightly +PackageVersion: nightly-a0fbb5e +PackageLocale: en-US +Publisher: maforget +PublisherUrl: https://github.com/maforget +PublisherSupportUrl: https://github.com/maforget/ComicRackCE/issues +PackageName: ComicRack Community Edition +PackageUrl: https://github.com/maforget/ComicRackCE +License: GPL-2.0 +LicenseUrl: https://github.com/maforget/ComicRackCE/blob/HEAD/LICENSE.txt +ShortDescription: 'A Community Edition for the legendary Comic Book Manager ComicRack. ComicRack is back from the dead. ' +Moniker: comicrackce +Tags: +- comicrack +ReleaseNotesUrl: https://github.com/maforget/ComicRackCE/releases/tag/nightly +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/maforget/ComicRackCE/Nightly/nightly-a0fbb5e/maforget.ComicRackCE.Nightly.yaml b/manifests/m/maforget/ComicRackCE/Nightly/nightly-a0fbb5e/maforget.ComicRackCE.Nightly.yaml new file mode 100644 index 0000000000000..799ae38f92fbb --- /dev/null +++ b/manifests/m/maforget/ComicRackCE/Nightly/nightly-a0fbb5e/maforget.ComicRackCE.Nightly.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: maforget.ComicRackCE.Nightly +PackageVersion: nightly-a0fbb5e +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 93953147478a6e5e1fda00003c9617212d94bc82 Mon Sep 17 00:00:00 2001 From: Tristan Cartledge <108070248+TristanSpeakEasy@users.noreply.github.com> Date: Sat, 7 Dec 2024 07:14:56 +1000 Subject: [PATCH 29/58] New version: Speakeasy.speakeasy 1.451.6 (#196383) Co-authored-by: goreleaserbot --- .../Speakeasy.speakeasy.installer.yaml | 34 +++++++++++++++++++ .../Speakeasy.speakeasy.locale.en-US.yaml | 28 +++++++++++++++ .../1.451.6/Speakeasy.speakeasy.yaml | 7 ++++ 3 files changed, 69 insertions(+) create mode 100644 manifests/s/Speakeasy/speakeasy/1.451.6/Speakeasy.speakeasy.installer.yaml create mode 100644 manifests/s/Speakeasy/speakeasy/1.451.6/Speakeasy.speakeasy.locale.en-US.yaml create mode 100644 manifests/s/Speakeasy/speakeasy/1.451.6/Speakeasy.speakeasy.yaml diff --git a/manifests/s/Speakeasy/speakeasy/1.451.6/Speakeasy.speakeasy.installer.yaml b/manifests/s/Speakeasy/speakeasy/1.451.6/Speakeasy.speakeasy.installer.yaml new file mode 100644 index 0000000000000..19d2e914503b3 --- /dev/null +++ b/manifests/s/Speakeasy/speakeasy/1.451.6/Speakeasy.speakeasy.installer.yaml @@ -0,0 +1,34 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: Speakeasy.speakeasy +PackageVersion: 1.451.6 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-12-05" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: speakeasy.exe + PortableCommandAlias: speakeasy + InstallerUrl: https://github.com/speakeasy-api/speakeasy/releases/download/v1.451.6/speakeasy_windows_386.zip + InstallerSha256: e244cbfdd277b85879648601d1a095b661efe4d597dcd7d7c220584f36e2428a + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: speakeasy.exe + PortableCommandAlias: speakeasy + InstallerUrl: https://github.com/speakeasy-api/speakeasy/releases/download/v1.451.6/speakeasy_windows_arm64.zip + InstallerSha256: c096e5674c9a0814787b643e0f1424163e1f30f0a333291151d286cb9af307bc + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: speakeasy.exe + PortableCommandAlias: speakeasy + InstallerUrl: https://github.com/speakeasy-api/speakeasy/releases/download/v1.451.6/speakeasy_windows_amd64.zip + InstallerSha256: 6cb346698620342666462f644c6bdbb71800880e402035ee4b6610487d981e22 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/s/Speakeasy/speakeasy/1.451.6/Speakeasy.speakeasy.locale.en-US.yaml b/manifests/s/Speakeasy/speakeasy/1.451.6/Speakeasy.speakeasy.locale.en-US.yaml new file mode 100644 index 0000000000000..ac3413a0a3d52 --- /dev/null +++ b/manifests/s/Speakeasy/speakeasy/1.451.6/Speakeasy.speakeasy.locale.en-US.yaml @@ -0,0 +1,28 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: Speakeasy.speakeasy +PackageVersion: 1.451.6 +PackageLocale: en-US +Publisher: Speakeasy +PublisherUrl: https://www.speakeasy.com +PublisherSupportUrl: https://github.com/speakeasy-api/speakeasy/issues +PackageName: speakeasy +PackageUrl: https://www.speakeasy.com +License: elastic +LicenseUrl: https://github.com/speakeasy-api/speakeasy/blob/main/LICENSE +Copyright: 2024 Speakeasy, Inc +ShortDescription: Speakeasy CLI makes validating API specs and generating idiomatic SDKs easy! +Description: |- + This CLI is a tool for interacting with the Speakeasy platform - the CLI brings the functionality of Speakeasy into your development workflow. It can be run locally or in your CI/CD pipeline to validate your API specs, generate SDKs and more. + + Current functions of the CLI include: + + Generating idiomatic client SDKs from OpenAPI 3.x specs: + Live: Go, Python3, Typescript(Node), Java, PHP, Ruby, Terraform + Validating the correctness of OpenAPI3 specs. The CLI has a built in command to validate your spec and post helpful error messages. + Authenticating with the platform and managing API keys. +Moniker: speakeasy +ReleaseNotes: https://github.com/speakeasy-api/speakeasy/releases/tag/v1.451.6 +ReleaseNotesUrl: https://github.com/speakeasy-api/speakeasy/releases/tag/v1.451.6 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/s/Speakeasy/speakeasy/1.451.6/Speakeasy.speakeasy.yaml b/manifests/s/Speakeasy/speakeasy/1.451.6/Speakeasy.speakeasy.yaml new file mode 100644 index 0000000000000..039a1ebae631f --- /dev/null +++ b/manifests/s/Speakeasy/speakeasy/1.451.6/Speakeasy.speakeasy.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.6.0.schema.json +PackageIdentifier: Speakeasy.speakeasy +PackageVersion: 1.451.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 1f4853a3bb0fe5996c0f845349de4a6586eebef2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9D=A4=E6=98=AF=E7=BA=B1=E9=9B=BE=E9=85=B1=E5=93=9F?= =?UTF-8?q?=EF=BD=9E?= <49941141+Dragon1573@users.noreply.github.com> Date: Sat, 7 Dec 2024 05:18:19 +0800 Subject: [PATCH 30/58] New version: VCVRack.VCVRack version 2.6.0 (#196779) Signed-off-by: Dragon1573 <49941141+Dragon1573@users.noreply.github.com> --- .../2.6.0/VCVRack.VCVRack.installer.yaml | 20 ++++++++ .../2.6.0/VCVRack.VCVRack.locale.en-US.yaml | 48 +++++++++++++++++++ .../VCVRack/2.6.0/VCVRack.VCVRack.yaml | 8 ++++ 3 files changed, 76 insertions(+) create mode 100644 manifests/v/VCVRack/VCVRack/2.6.0/VCVRack.VCVRack.installer.yaml create mode 100644 manifests/v/VCVRack/VCVRack/2.6.0/VCVRack.VCVRack.locale.en-US.yaml create mode 100644 manifests/v/VCVRack/VCVRack/2.6.0/VCVRack.VCVRack.yaml diff --git a/manifests/v/VCVRack/VCVRack/2.6.0/VCVRack.VCVRack.installer.yaml b/manifests/v/VCVRack/VCVRack/2.6.0/VCVRack.VCVRack.installer.yaml new file mode 100644 index 0000000000000..f79e1afb806bf --- /dev/null +++ b/manifests/v/VCVRack/VCVRack/2.6.0/VCVRack.VCVRack.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.4.3 $debug=QUSU.CRLF.7-4-6.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: VCVRack.VCVRack +PackageVersion: 2.6.0 +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ReleaseDate: 2024-11-20 +Installers: +- Architecture: x64 + InstallerUrl: https://vcvrack.com/downloads/RackFree-2.6.0-win-x64.exe + InstallerSha256: 76078AE3B1E1988B57DBBF5848ED1289C2C21E8B26B057360EB6062B52E636B4 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/v/VCVRack/VCVRack/2.6.0/VCVRack.VCVRack.locale.en-US.yaml b/manifests/v/VCVRack/VCVRack/2.6.0/VCVRack.VCVRack.locale.en-US.yaml new file mode 100644 index 0000000000000..d66608345a3cb --- /dev/null +++ b/manifests/v/VCVRack/VCVRack/2.6.0/VCVRack.VCVRack.locale.en-US.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 v2.4.3 $debug=QUSU.CRLF.7-4-6.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: VCVRack.VCVRack +PackageVersion: 2.6.0 +PackageLocale: en-US +Publisher: VCV +PublisherUrl: https://vcvrack.com/ +PublisherSupportUrl: https://vcvrack.com/support +PrivacyUrl: https://vcvrack.com/privacy +Author: Andrew Belt +PackageName: VCV Rack +PackageUrl: https://vcvrack.com/Rack +License: GPL-3.0-only with VCV Rack Non-Commercial Plugin License Exception +LicenseUrl: https://raw.githubusercontent.com/VCVRack/Rack/v1/LICENSE.md +Copyright: Copyright (c) 2019 VCV +CopyrightUrl: https://raw.githubusercontent.com/VCVRack/Rack/v1/LICENSE.md +ShortDescription: The Eurorack Simulator +Moniker: vcvrack +Tags: +- eurorack +- rack +- simulator +- synthesizer +ReleaseNotes: |- + - Add ability to grab all plugs stacked on a port with the "All cables" menu item. + - When dropping a plug on a port, always stack it on top of other plugs. + - Add "View > Zoom to fit modules" to menu bar with key command F4. + - Add "Zoom to fit" to module context menu with key command Ctrl+F4. + - Add "View > Mouse wheel" setting to make mouse wheel zoom instead of scroll. + - Add parameter value functions vtobpm() and bpmtov(). + - On non-QWERTY keyboards, use QWERTY key positions for key commands instead of letters. + - Render 2-stop linear/radial gradients with any stop offsets and transformations in SVG. + - Rack Pro + - Fix VST3 plugin forcing DAW MIDI input to channel 1. + - Allow VST3 plugin to receive MIDI CC, pitch bend, and channel aftertouch. + - Core + - MIDI to CV: When sustain pedal is released in monophonic mode, turn off gate if no notes are held. + - API + - Don't combine SDK packages for Mac-x64 and Mac-arm64. + - Update libcurl to 8.10.0 and OpenSSL to 3.3.2. + - Add dsp::MidiParser class. +ReleaseNotesUrl: https://github.com/VCVRack/Rack/blob/v2/CHANGELOG.md#260-2024-11-20 +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://vcvrack.com/manual/FAQ +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/v/VCVRack/VCVRack/2.6.0/VCVRack.VCVRack.yaml b/manifests/v/VCVRack/VCVRack/2.6.0/VCVRack.VCVRack.yaml new file mode 100644 index 0000000000000..4b55559b13c88 --- /dev/null +++ b/manifests/v/VCVRack/VCVRack/2.6.0/VCVRack.VCVRack.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.3 $debug=QUSU.CRLF.7-4-6.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: VCVRack.VCVRack +PackageVersion: 2.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 0c4ff042bb7ccc3f6ad24bfe19ad053c8effbdab Mon Sep 17 00:00:00 2001 From: Vladislav Grechannik <52157081+VlaDexa@users.noreply.github.com> Date: Fri, 6 Dec 2024 22:43:04 +0100 Subject: [PATCH 31/58] New version: Wagnardsoft.DisplayDriverUninstaller version 18.0.8.7 (#193558) --- ...ft.DisplayDriverUninstaller.installer.yaml | 16 +++++++ ...DisplayDriverUninstaller.locale.en-US.yaml | 47 +++++++++++++++++++ .../Wagnardsoft.DisplayDriverUninstaller.yaml | 8 ++++ 3 files changed, 71 insertions(+) create mode 100644 manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.0.8.7/Wagnardsoft.DisplayDriverUninstaller.installer.yaml create mode 100644 manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.0.8.7/Wagnardsoft.DisplayDriverUninstaller.locale.en-US.yaml create mode 100644 manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.0.8.7/Wagnardsoft.DisplayDriverUninstaller.yaml diff --git a/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.0.8.7/Wagnardsoft.DisplayDriverUninstaller.installer.yaml b/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.0.8.7/Wagnardsoft.DisplayDriverUninstaller.installer.yaml new file mode 100644 index 0000000000000..19de81620cb65 --- /dev/null +++ b/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.0.8.7/Wagnardsoft.DisplayDriverUninstaller.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Wagnardsoft.DisplayDriverUninstaller +PackageVersion: 18.0.8.7 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://www.wagnardsoft.com/DDU/download/DDU%20v18.0.8.7_setup.exe + InstallerSha256: AEEE155AF3658AEF64E55EABB1222195F24C6090D4851B1293510B0FE5AB6206 +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2024-11-22 diff --git a/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.0.8.7/Wagnardsoft.DisplayDriverUninstaller.locale.en-US.yaml b/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.0.8.7/Wagnardsoft.DisplayDriverUninstaller.locale.en-US.yaml new file mode 100644 index 0000000000000..7b38128d24848 --- /dev/null +++ b/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.0.8.7/Wagnardsoft.DisplayDriverUninstaller.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Wagnardsoft.DisplayDriverUninstaller +PackageVersion: 18.0.8.7 +PackageLocale: en-US +Publisher: Wagnardsoft +PublisherUrl: https://www.wagnardsoft.com/ +PublisherSupportUrl: https://www.wagnardsoft.com/contact +PrivacyUrl: https://www.wagnardsoft.com/content/Privacy-Policy +Author: Wagnard +PackageName: Display Driver Uninstaller +PackageUrl: https://www.wagnardsoft.com/display-driver-uninstaller-DDU- +License: Freeware +LicenseUrl: https://github.com/Wagnard/display-drivers-uninstaller/blob/WPF/LICENSE.md +Copyright: Copyright (c) 2024 by Wagnardsoft. All rights reserved. +ShortDescription: Display Driver Uninstaller is a driver removal utility that can help you completely uninstall AMD/NVIDIA/INTEL graphics card drivers and packages from your system, trying to remove all leftovers (including registry keys, folders and files, driver store). +Description: |- + Display Driver Uninstaller (DDU) is a driver removal utility that can help you completely uninstall AMD/NVIDIA/INTEL graphics card drivers and packages from your system, trying to remove all leftovers (including registry keys, folders and files, driver store). + + The AMD/NVIDIA/INTEL video drivers can normally be uninstalled from the Windows Control panel, this driver uninstaller program was designed to be used in cases where the standard driver uninstall fails, or when you need to thoroughly delete NVIDIA and ATI video card drivers. + + The current effect after you use this driver removal tool will be similar as if its the first time you install a new driver just like a fresh, clean install of Windows. As with any tool of this kind, we recommend creating a new system restore point before using it, so that you can revert your system at any time if you run into problems. +Moniker: ddu +Tags: +- amd +- clean +- display +- driver +- drivers +- graphics +- intel +- nvidia +- uninstaller +- utility +ReleaseNotes: |- + - Fixed a DDU crash that could happen when removing some services.. +ReleaseNotesUrl: https://www.wagnardsoft.com/forums/viewtopic.php?t=5116 +Documentations: +- DocumentLabel: Guide + DocumentUrl: https://www.wagnardsoft.com/content/ddu-guide-tutorial +- DocumentLabel: Discord + DocumentUrl: https://discord.gg/JsSsKyqzjF +- DocumentLabel: GitHub + DocumentUrl: https://github.com/Wagnard/display-drivers-uninstaller +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.0.8.7/Wagnardsoft.DisplayDriverUninstaller.yaml b/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.0.8.7/Wagnardsoft.DisplayDriverUninstaller.yaml new file mode 100644 index 0000000000000..09d4aa06cf1a2 --- /dev/null +++ b/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.0.8.7/Wagnardsoft.DisplayDriverUninstaller.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Wagnardsoft.DisplayDriverUninstaller +PackageVersion: 18.0.8.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 4bd9d1c80046c6806368de9fd47038b0881b0d03 Mon Sep 17 00:00:00 2001 From: Giulio Sorrentino Date: Fri, 6 Dec 2024 22:49:41 +0100 Subject: [PATCH 32/58] New version: GiulioSorrentino.numeronesfortuneinavalonia version 2.0.4.2 (#194566) --- ....numeronesfortuneinavalonia.installer.yaml | 20 +++++++++++++++ ...meronesfortuneinavalonia.locale.en-US.yaml | 25 +++++++++++++++++++ ...Sorrentino.numeronesfortuneinavalonia.yaml | 8 ++++++ 3 files changed, 53 insertions(+) create mode 100644 manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.2/GiulioSorrentino.numeronesfortuneinavalonia.installer.yaml create mode 100644 manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.2/GiulioSorrentino.numeronesfortuneinavalonia.locale.en-US.yaml create mode 100644 manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.2/GiulioSorrentino.numeronesfortuneinavalonia.yaml diff --git a/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.2/GiulioSorrentino.numeronesfortuneinavalonia.installer.yaml b/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.2/GiulioSorrentino.numeronesfortuneinavalonia.installer.yaml new file mode 100644 index 0000000000000..aae462f0814db --- /dev/null +++ b/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.2/GiulioSorrentino.numeronesfortuneinavalonia.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: GiulioSorrentino.numeronesfortuneinavalonia +PackageVersion: 2.0.4.2 +InstallerType: wix +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.9 +ProductCode: '{90D24925-7418-48AD-9950-676C4F83DB23}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GiulianoSpaghetti/numfortune.avalonia.new/releases/download/2.0.4/numfortune.Avalonia-2.0.4.2-amd64.msi + InstallerSha256: 33F339B037411C664A0338739EA9B6D4D6D7685AB6EBF5D2EFCA56DF32E97496 +- Architecture: arm64 + InstallerUrl: https://github.com/GiulianoSpaghetti/numfortune.avalonia.new/releases/download/2.0.4/numfortune.Avalonia-2.0.4.2-arm64.msi + InstallerSha256: E5B037E014CE7BBDA0DE042EE67E3FB88862C03A91C5B3B49B5239225C06A38B +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2024-11-13 diff --git a/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.2/GiulioSorrentino.numeronesfortuneinavalonia.locale.en-US.yaml b/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.2/GiulioSorrentino.numeronesfortuneinavalonia.locale.en-US.yaml new file mode 100644 index 0000000000000..b0d53da629088 --- /dev/null +++ b/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.2/GiulioSorrentino.numeronesfortuneinavalonia.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: GiulioSorrentino.numeronesfortuneinavalonia +PackageVersion: 2.0.4.2 +PackageLocale: en-US +Publisher: Giulio Sorrentino +PublisherUrl: https://numerone.altervista.org +PublisherSupportUrl: https://github.com/numerunix/numfortune.avalonia.new/issues +Author: Giulio Sorrentino +PackageName: numerone's fortune in avalonia +PackageUrl: https://github.com/numerunix/numfortune.avalonia.new/releases/download/2.0/numfortune-2.0-x64.exe +License: GPLv3+ +LicenseUrl: https://github.com/numerunix/numfortune.avalonia.new/blob/master/LICENSE +Copyright: 2023 Giulio Sorrentino +ShortDescription: A clone of fortune linux program in avalonia +Description: A clone for windows and android of the fortune linux program, written in Avalonia. +Tags: +- fortune +ReleaseNotesUrl: https://github.com/GiulianoSpaghetti/numfortune.avalonia.new/releases/tag/2.0.4 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/GiulianoSpaghetti/numfortune.avalonia.new/wiki +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.2/GiulioSorrentino.numeronesfortuneinavalonia.yaml b/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.2/GiulioSorrentino.numeronesfortuneinavalonia.yaml new file mode 100644 index 0000000000000..0366643afc1d5 --- /dev/null +++ b/manifests/g/GiulioSorrentino/numeronesfortuneinavalonia/2.0.4.2/GiulioSorrentino.numeronesfortuneinavalonia.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: GiulioSorrentino.numeronesfortuneinavalonia +PackageVersion: 2.0.4.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From e1ee8700754bd0e9fd7f6b51348f84ca3792a66c Mon Sep 17 00:00:00 2001 From: Marat Radchenko Date: Fri, 6 Dec 2024 22:50:05 +0100 Subject: [PATCH 33/58] New version: octobuild.octobuild version 1.6.0 (#194900) --- .../1.6.0/octobuild.octobuild.installer.yaml | 15 +++++++++++++ .../octobuild.octobuild.locale.en-US.yaml | 21 +++++++++++++++++++ .../octobuild/1.6.0/octobuild.octobuild.yaml | 8 +++++++ 3 files changed, 44 insertions(+) create mode 100644 manifests/o/octobuild/octobuild/1.6.0/octobuild.octobuild.installer.yaml create mode 100644 manifests/o/octobuild/octobuild/1.6.0/octobuild.octobuild.locale.en-US.yaml create mode 100644 manifests/o/octobuild/octobuild/1.6.0/octobuild.octobuild.yaml diff --git a/manifests/o/octobuild/octobuild/1.6.0/octobuild.octobuild.installer.yaml b/manifests/o/octobuild/octobuild/1.6.0/octobuild.octobuild.installer.yaml new file mode 100644 index 0000000000000..e883952ada8ef --- /dev/null +++ b/manifests/o/octobuild/octobuild/1.6.0/octobuild.octobuild.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: octobuild.octobuild +PackageVersion: 1.6.0 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{6BE06128-3D86-4DF6-9D4D-66287C29B59D}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/octobuild/octobuild/releases/download/1.6.0/octobuild-1.6.0-x86_64.msi + InstallerSha256: B683CC467F01EA544198E02F6F467E3411DF46D8D53D93262F87D51E9FF05467 +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2024-11-28 diff --git a/manifests/o/octobuild/octobuild/1.6.0/octobuild.octobuild.locale.en-US.yaml b/manifests/o/octobuild/octobuild/1.6.0/octobuild.octobuild.locale.en-US.yaml new file mode 100644 index 0000000000000..16e0c233dc69c --- /dev/null +++ b/manifests/o/octobuild/octobuild/1.6.0/octobuild.octobuild.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: octobuild.octobuild +PackageVersion: 1.6.0 +PackageLocale: en-US +Publisher: Artem V. Navrotskiy; Marat Radchenko +PublisherUrl: https://github.com/octobuild +PublisherSupportUrl: https://github.com/octobuild/octobuild/issues +PackageName: octobuild +PackageUrl: https://github.com/octobuild/octobuild +License: MIT +ShortDescription: Compiler cache for Unreal Engine +Tags: +- c-plus-plus +- cache +- cplusplus +- unreal-engine +ReleaseNotesUrl: https://github.com/octobuild/octobuild/releases/tag/1.6.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/o/octobuild/octobuild/1.6.0/octobuild.octobuild.yaml b/manifests/o/octobuild/octobuild/1.6.0/octobuild.octobuild.yaml new file mode 100644 index 0000000000000..e3407d1e6dc8f --- /dev/null +++ b/manifests/o/octobuild/octobuild/1.6.0/octobuild.octobuild.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: octobuild.octobuild +PackageVersion: 1.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 7ebb9df3de8034adbada166b6ac176ba557615fa Mon Sep 17 00:00:00 2001 From: d-rk Date: Fri, 6 Dec 2024 22:50:30 +0100 Subject: [PATCH 34/58] New version: deviceinsight.kafkactl 5.4.0 (#194902) Co-authored-by: goreleaserbot --- .../deviceinsight.kafkactl.installer.yaml | 34 +++++++++++++++++++ .../deviceinsight.kafkactl.locale.en-US.yaml | 14 ++++++++ .../5.4.0/deviceinsight.kafkactl.yaml | 7 ++++ 3 files changed, 55 insertions(+) create mode 100644 manifests/d/deviceinsight/kafkactl/5.4.0/deviceinsight.kafkactl.installer.yaml create mode 100644 manifests/d/deviceinsight/kafkactl/5.4.0/deviceinsight.kafkactl.locale.en-US.yaml create mode 100644 manifests/d/deviceinsight/kafkactl/5.4.0/deviceinsight.kafkactl.yaml diff --git a/manifests/d/deviceinsight/kafkactl/5.4.0/deviceinsight.kafkactl.installer.yaml b/manifests/d/deviceinsight/kafkactl/5.4.0/deviceinsight.kafkactl.installer.yaml new file mode 100644 index 0000000000000..a87f31cce94cc --- /dev/null +++ b/manifests/d/deviceinsight/kafkactl/5.4.0/deviceinsight.kafkactl.installer.yaml @@ -0,0 +1,34 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: deviceinsight.kafkactl +PackageVersion: 5.4.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-11-28" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: kafkactl.exe + PortableCommandAlias: kafkactl + InstallerUrl: https://github.com/deviceinsight/kafkactl/releases/download/v5.4.0/kafkactl_5.4.0_windows_386.zip + InstallerSha256: 90bb56cf7517a9504e6f1ed8d54929afe207df50f9503a67db8b96004bc56762 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: kafkactl.exe + PortableCommandAlias: kafkactl + InstallerUrl: https://github.com/deviceinsight/kafkactl/releases/download/v5.4.0/kafkactl_5.4.0_windows_arm64.zip + InstallerSha256: 18e0c0d4b62e255a3ac36504cd55f765199f300fb90e2dcb3dae8a14b81d00a1 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: kafkactl.exe + PortableCommandAlias: kafkactl + InstallerUrl: https://github.com/deviceinsight/kafkactl/releases/download/v5.4.0/kafkactl_5.4.0_windows_amd64.zip + InstallerSha256: 559d413728363e2d79e7dfeaa507b1d2ab16c91898076fa13efaa43357b41653 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/d/deviceinsight/kafkactl/5.4.0/deviceinsight.kafkactl.locale.en-US.yaml b/manifests/d/deviceinsight/kafkactl/5.4.0/deviceinsight.kafkactl.locale.en-US.yaml new file mode 100644 index 0000000000000..0b410d04f2dbb --- /dev/null +++ b/manifests/d/deviceinsight/kafkactl/5.4.0/deviceinsight.kafkactl.locale.en-US.yaml @@ -0,0 +1,14 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: deviceinsight.kafkactl +PackageVersion: 5.4.0 +PackageLocale: en-US +Publisher: deviceinsight +PublisherSupportUrl: https://github.com/deviceinsight/kafkactl/issues +PackageName: kafkactl +PackageUrl: https://www.device-insight.com/ +License: Apache-2.0 +ShortDescription: A command-line interface for interaction with Apache Kafka +Moniker: kafkactl +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/d/deviceinsight/kafkactl/5.4.0/deviceinsight.kafkactl.yaml b/manifests/d/deviceinsight/kafkactl/5.4.0/deviceinsight.kafkactl.yaml new file mode 100644 index 0000000000000..dcb7805846d9f --- /dev/null +++ b/manifests/d/deviceinsight/kafkactl/5.4.0/deviceinsight.kafkactl.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.6.0.schema.json +PackageIdentifier: deviceinsight.kafkactl +PackageVersion: 5.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 3f3455ec2f73a75a137b724d3a4f22b756d3824e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Bia=C5=82o=C5=84?= Date: Fri, 6 Dec 2024 22:56:09 +0100 Subject: [PATCH 35/58] New version: spacelift-io.spacectl 1.7.1 (#195228) Co-authored-by: goreleaserbot --- .../spacelift-io.spacectl.installer.yaml | 26 +++++++++++++++++++ .../spacelift-io.spacectl.locale.en-US.yaml | 13 ++++++++++ .../spacectl/1.7.1/spacelift-io.spacectl.yaml | 7 +++++ 3 files changed, 46 insertions(+) create mode 100644 manifests/s/spacelift-io/spacectl/1.7.1/spacelift-io.spacectl.installer.yaml create mode 100644 manifests/s/spacelift-io/spacectl/1.7.1/spacelift-io.spacectl.locale.en-US.yaml create mode 100644 manifests/s/spacelift-io/spacectl/1.7.1/spacelift-io.spacectl.yaml diff --git a/manifests/s/spacelift-io/spacectl/1.7.1/spacelift-io.spacectl.installer.yaml b/manifests/s/spacelift-io/spacectl/1.7.1/spacelift-io.spacectl.installer.yaml new file mode 100644 index 0000000000000..28aaa02596bfc --- /dev/null +++ b/manifests/s/spacelift-io/spacectl/1.7.1/spacelift-io.spacectl.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.6.0.schema.json +PackageIdentifier: spacelift-io.spacectl +PackageVersion: 1.7.1 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-11-27" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: spacectl.exe + PortableCommandAlias: spacectl + InstallerUrl: https://github.com/spacelift-io/spacectl/releases/download/v1.7.1/spacectl_1.7.1_windows_arm64.zip + InstallerSha256: b35ea0d5982a34467a236bfa233163b1420b3f5832c14f7a4d1da7fed312795d + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: spacectl.exe + PortableCommandAlias: spacectl + InstallerUrl: https://github.com/spacelift-io/spacectl/releases/download/v1.7.1/spacectl_1.7.1_windows_amd64.zip + InstallerSha256: 9550b21e6f73f0154587e066fe3f1a823b413cef42d0303375aafa5c2b92ffc8 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/s/spacelift-io/spacectl/1.7.1/spacelift-io.spacectl.locale.en-US.yaml b/manifests/s/spacelift-io/spacectl/1.7.1/spacelift-io.spacectl.locale.en-US.yaml new file mode 100644 index 0000000000000..c264cc408a905 --- /dev/null +++ b/manifests/s/spacelift-io/spacectl/1.7.1/spacelift-io.spacectl.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: spacelift-io.spacectl +PackageVersion: 1.7.1 +PackageLocale: en-US +Publisher: spacelift-io +PackageName: spacectl +PackageUrl: https://github.com/spacelift-io/spacectl +License: MIT +ShortDescription: Spacelift client and CLI +Moniker: spacectl +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/s/spacelift-io/spacectl/1.7.1/spacelift-io.spacectl.yaml b/manifests/s/spacelift-io/spacectl/1.7.1/spacelift-io.spacectl.yaml new file mode 100644 index 0000000000000..75e22a227c04e --- /dev/null +++ b/manifests/s/spacelift-io/spacectl/1.7.1/spacelift-io.spacectl.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.6.0.schema.json +PackageIdentifier: spacelift-io.spacectl +PackageVersion: 1.7.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 7083a1c0ef2d02d17f0f67220bf52e2a2f48f681 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Fri, 6 Dec 2024 13:56:27 -0800 Subject: [PATCH 36/58] Automatic update of Jagex.Runescape 2.2.11 (#195793) --- .../j/Jagex/Runescape/2.2.11/Jagex.Runescape.installer.yaml | 4 ++-- .../Jagex/Runescape/2.2.11/Jagex.Runescape.locale.en-US.yaml | 2 +- manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.installer.yaml b/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.installer.yaml index f78d1964906e5..24cbf9dd11569 100644 --- a/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.installer.yaml +++ b/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Oct/21 +# Automatically updated by the winget bot at 2024/Dec/02 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Jagex.Runescape @@ -11,6 +11,6 @@ Dependencies: Installers: - Architecture: x64 InstallerUrl: https://content.runescape.com/downloads/windows/RuneScape-Setup.exe - InstallerSha256: 7540D6FA54D3EA1158051DA40105D41F3B095018CF81E0BFB33A4D4231C7978F + InstallerSha256: 2B3E9A18956D0C50482905AD0CF2A779DE2D1B91FB9F3A670A31E2D890F99A25 ManifestType: installer ManifestVersion: 1.5.0 diff --git a/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.locale.en-US.yaml b/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.locale.en-US.yaml index 499643dfd96d0..74b75599a9ee8 100644 --- a/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.locale.en-US.yaml +++ b/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Oct/21 +# Automatically updated by the winget bot at 2024/Dec/02 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Jagex.Runescape diff --git a/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.yaml b/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.yaml index dced73ee817b2..9301373588993 100644 --- a/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.yaml +++ b/manifests/j/Jagex/Runescape/2.2.11/Jagex.Runescape.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Oct/21 +# Automatically updated by the winget bot at 2024/Dec/02 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Jagex.Runescape From 24ee0fd4e35e72e819296938c2cea1ecc7c7f574 Mon Sep 17 00:00:00 2001 From: DaMn good B0t <143536629+damn-good-b0t@users.noreply.github.com> Date: Fri, 6 Dec 2024 23:00:02 +0100 Subject: [PATCH 37/58] New version: AquaSecurity.Trivy version 0.58.0 (#196015) --- .../0.58.0/AquaSecurity.Trivy.installer.yaml | 21 +++++++++++ .../AquaSecurity.Trivy.locale.en-US.yaml | 36 +++++++++++++++++++ .../Trivy/0.58.0/AquaSecurity.Trivy.yaml | 8 +++++ 3 files changed, 65 insertions(+) create mode 100644 manifests/a/AquaSecurity/Trivy/0.58.0/AquaSecurity.Trivy.installer.yaml create mode 100644 manifests/a/AquaSecurity/Trivy/0.58.0/AquaSecurity.Trivy.locale.en-US.yaml create mode 100644 manifests/a/AquaSecurity/Trivy/0.58.0/AquaSecurity.Trivy.yaml diff --git a/manifests/a/AquaSecurity/Trivy/0.58.0/AquaSecurity.Trivy.installer.yaml b/manifests/a/AquaSecurity/Trivy/0.58.0/AquaSecurity.Trivy.installer.yaml new file mode 100644 index 0000000000000..58703649a609a --- /dev/null +++ b/manifests/a/AquaSecurity/Trivy/0.58.0/AquaSecurity.Trivy.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Updater using komac v2.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: AquaSecurity.Trivy +PackageVersion: 0.58.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: trivy.exe +Commands: +- trivy +FileExtensions: +- trivyignore +ReleaseDate: 2024-12-03 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aquasecurity/trivy/releases/download/v0.58.0/trivy_0.58.0_windows-64bit.zip + InstallerSha256: 42555D9F9FCA7315EE622E8AD737A9C3BCBFCAB398E5EC7E03E9A0C3191475BA +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/a/AquaSecurity/Trivy/0.58.0/AquaSecurity.Trivy.locale.en-US.yaml b/manifests/a/AquaSecurity/Trivy/0.58.0/AquaSecurity.Trivy.locale.en-US.yaml new file mode 100644 index 0000000000000..038c7ef0ef6b2 --- /dev/null +++ b/manifests/a/AquaSecurity/Trivy/0.58.0/AquaSecurity.Trivy.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with WinGet Updater using komac v2.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: AquaSecurity.Trivy +PackageVersion: 0.58.0 +PackageLocale: en-US +Publisher: Aqua Security Software +PublisherUrl: https://www.aquasec.com/ +PublisherSupportUrl: https://github.com/aquasecurity/trivy +PackageName: Trivy +PackageUrl: https://aquasecurity.github.io/trivy +License: Apache-2.0 +LicenseUrl: https://github.com/aquasecurity/trivy/blob/HEAD/LICENSE +ShortDescription: Trivy is a comprehensive and versatile security scanner. +Description: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more +Moniker: trivy +Tags: +- cli +- containers +- devops-tools +- docker +- golang +- infrastructure-as-code +- kubernetes +- sbom +- security +- security-tools +- vulnerability +- vulnerability-detector +- vulnerability-scanners +ReleaseNotes: |- + ⚡Release highlights and summary⚡ + 👉 Changelog +ReleaseNotesUrl: https://github.com/aquasecurity/trivy/releases/tag/v0.58.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/a/AquaSecurity/Trivy/0.58.0/AquaSecurity.Trivy.yaml b/manifests/a/AquaSecurity/Trivy/0.58.0/AquaSecurity.Trivy.yaml new file mode 100644 index 0000000000000..0665eb8e27b59 --- /dev/null +++ b/manifests/a/AquaSecurity/Trivy/0.58.0/AquaSecurity.Trivy.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: AquaSecurity.Trivy +PackageVersion: 0.58.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 8fb62630c47129cf88d2720ab27787273ab535d0 Mon Sep 17 00:00:00 2001 From: Ross Scroggs Date: Fri, 6 Dec 2024 14:00:15 -0800 Subject: [PATCH 38/58] New version: taers232c.GAMADV-XTD3 version 7.01.04 (#196258) --- .../taers232c.GAMADV-XTD3.installer.yaml | 21 ++++++++++++++ .../taers232c.GAMADV-XTD3.locale.en-US.yaml | 28 +++++++++++++++++++ .../7.01.04/taers232c.GAMADV-XTD3.yaml | 8 ++++++ 3 files changed, 57 insertions(+) create mode 100644 manifests/t/taers232c/GAMADV-XTD3/7.01.04/taers232c.GAMADV-XTD3.installer.yaml create mode 100644 manifests/t/taers232c/GAMADV-XTD3/7.01.04/taers232c.GAMADV-XTD3.locale.en-US.yaml create mode 100644 manifests/t/taers232c/GAMADV-XTD3/7.01.04/taers232c.GAMADV-XTD3.yaml diff --git a/manifests/t/taers232c/GAMADV-XTD3/7.01.04/taers232c.GAMADV-XTD3.installer.yaml b/manifests/t/taers232c/GAMADV-XTD3/7.01.04/taers232c.GAMADV-XTD3.installer.yaml new file mode 100644 index 0000000000000..5665c62179c8c --- /dev/null +++ b/manifests/t/taers232c/GAMADV-XTD3/7.01.04/taers232c.GAMADV-XTD3.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: taers232c.GAMADV-XTD3 +PackageVersion: 7.01.04 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallerSwitches: + Custom: /norestart +UpgradeBehavior: install +ProductCode: '{2F074FDE-996D-498F-BD51-2DA75C84A38D}' +ReleaseDate: 2024-12-04 +AppsAndFeaturesEntries: +- UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/taers232c/GAMADV-XTD3/releases/download/v7.01.04/gamadv-xtd3-7.01.04-windows-x86_64.msi + InstallerSha256: AEE69FE972280D5B5BE61D539013C1F4E6A13F82D7CC437D3D7C452A8E110CC0 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/taers232c/GAMADV-XTD3/7.01.04/taers232c.GAMADV-XTD3.locale.en-US.yaml b/manifests/t/taers232c/GAMADV-XTD3/7.01.04/taers232c.GAMADV-XTD3.locale.en-US.yaml new file mode 100644 index 0000000000000..a87ae1ebce86a --- /dev/null +++ b/manifests/t/taers232c/GAMADV-XTD3/7.01.04/taers232c.GAMADV-XTD3.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: taers232c.GAMADV-XTD3 +PackageVersion: 7.01.04 +PackageLocale: en-US +Publisher: Ross Scroggs - ross.scroggs@gmail.com +PublisherUrl: https://github.com/taers232c +PublisherSupportUrl: https://github.com/taers232c/GAMADV-XTD3/issues +Author: taers232c +PackageName: GAMADV-XTD3 +PackageUrl: https://github.com/taers232c/GAMADV-XTD3 +License: Apache-2.0 +ShortDescription: GAMADV-XTD3 is a free, open source command line tool for Google Workspace (formerly G Suite) Administrators to manage domain and user settings quickly and easily. +Moniker: gamadv +ReleaseNotes: |- + - internal internaldomains - Display members whose domain is in + - external internaldomains - Display members whose domain is not in + - internal external internaldomains - Display all members, indicate their category: internal or external + - internaldomains - Defaults to value of domain in gam.cfg + - See: https://github.com/taers232c/GAMADV-XTD3/wiki/Chrome-Profile-Management + - https://github.com/taers232c/GAMADV-XTD3/wiki/How-to-Install-Advanced-GAM + - https://github.com/taers232c/GAMADV-XTD3/wiki/How-to-Update-Advanced-GAM + - https://github.com/taers232c/GAMADV-XTD3/wiki/How-to-Upgrade-from-Standard-GAM + - https://github.com/taers232c/GAMADV-XTD3/wiki/How-to-Upgrade-from-GAMADV-X-or-GAMADV-XTD +ReleaseNotesUrl: https://github.com/taers232c/GAMADV-XTD3/releases/tag/v7.01.04 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/taers232c/GAMADV-XTD3/7.01.04/taers232c.GAMADV-XTD3.yaml b/manifests/t/taers232c/GAMADV-XTD3/7.01.04/taers232c.GAMADV-XTD3.yaml new file mode 100644 index 0000000000000..d099a826bbec4 --- /dev/null +++ b/manifests/t/taers232c/GAMADV-XTD3/7.01.04/taers232c.GAMADV-XTD3.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: taers232c.GAMADV-XTD3 +PackageVersion: 7.01.04 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 From fca4ea686333ed06ea1d4bde7cf030e5c08e578a Mon Sep 17 00:00:00 2001 From: Kaleb Luedtke Date: Fri, 6 Dec 2024 16:06:43 -0600 Subject: [PATCH 39/58] Remove new label when instructed (#196807) --- .github/policies/moderatorTriggers.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/policies/moderatorTriggers.yml b/.github/policies/moderatorTriggers.yml index 4ed0cedfacf7e..6820a1e782c80 100644 --- a/.github/policies/moderatorTriggers.yml +++ b/.github/policies/moderatorTriggers.yml @@ -589,6 +589,8 @@ configuration: label: Scripted-Application - removeLabel: label: Testing + - removeLabel: + label: Upgrade-Always-Available - removeLabel: label: Upgrade-Issue - removeLabel: From f61d6aafd6dbb960c3f64ebb115411dd38459330 Mon Sep 17 00:00:00 2001 From: stevenlele <15964380+stevenlele@users.noreply.github.com> Date: Fri, 6 Dec 2024 22:12:22 +0000 Subject: [PATCH 40/58] New version: astral-sh.ruff version 0.8.2 (#196537) --- .../ruff/0.8.2/astral-sh.ruff.installer.yaml | 30 +++++++++ .../0.8.2/astral-sh.ruff.locale.en-US.yaml | 67 +++++++++++++++++++ .../astral-sh/ruff/0.8.2/astral-sh.ruff.yaml | 7 ++ 3 files changed, 104 insertions(+) create mode 100644 manifests/a/astral-sh/ruff/0.8.2/astral-sh.ruff.installer.yaml create mode 100644 manifests/a/astral-sh/ruff/0.8.2/astral-sh.ruff.locale.en-US.yaml create mode 100644 manifests/a/astral-sh/ruff/0.8.2/astral-sh.ruff.yaml diff --git a/manifests/a/astral-sh/ruff/0.8.2/astral-sh.ruff.installer.yaml b/manifests/a/astral-sh/ruff/0.8.2/astral-sh.ruff.installer.yaml new file mode 100644 index 0000000000000..12bf7c4323b7f --- /dev/null +++ b/manifests/a/astral-sh/ruff/0.8.2/astral-sh.ruff.installer.yaml @@ -0,0 +1,30 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: astral-sh.ruff +PackageVersion: 0.8.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ruff.exe +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/ruff/releases/download/0.8.2/ruff-i686-pc-windows-msvc.zip + InstallerSha256: CB031EDCACE8297046C1FA0EBA4EB37982C1B18F5F744AD1FBCB3271E6D845E8 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/ruff/releases/download/0.8.2/ruff-x86_64-pc-windows-msvc.zip + InstallerSha256: 4EE1F8373E7F7C1BE42D51B642D576CFEA068584C5C8EE7086F502F0D3A2F483 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/ruff/releases/download/0.8.2/ruff-aarch64-pc-windows-msvc.zip + InstallerSha256: 547B3FF302B124023E025D7CF662E8B818740432338C7E2B5C990EDC3DBEEB6D + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2024-12-05 diff --git a/manifests/a/astral-sh/ruff/0.8.2/astral-sh.ruff.locale.en-US.yaml b/manifests/a/astral-sh/ruff/0.8.2/astral-sh.ruff.locale.en-US.yaml new file mode 100644 index 0000000000000..8f5d1565c44b4 --- /dev/null +++ b/manifests/a/astral-sh/ruff/0.8.2/astral-sh.ruff.locale.en-US.yaml @@ -0,0 +1,67 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: astral-sh.ruff +PackageVersion: 0.8.2 +PackageLocale: en-US +Publisher: Astral +PublisherUrl: https://github.com/astral-sh +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +PackageName: Ruff +# PackageUrl: +License: MIT +LicenseUrl: https://github.com/astral-sh/ruff/blob/HEAD/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: An extremely fast Python linter, written in Rust. +# Description: +# Moniker: +Tags: +- linter +- pep8 +- python +- python3 +- ruff +- rust +- rustpython +- static-analysis +- static-code-analysis +- styleguide +- style-guide +ReleaseNotes: |- + Preview features + - [airflow] Avoid deprecated values (AIR302) (#14582) + - [airflow] Extend removed names for AIR302 (#14734) + - [ruff] Extend `unnecessary-regular-expression` to non-literal strings (RUF055) (#14679) + - [ruff] Implement `used-dummy-variable` (RUF052) (#14611) + - [ruff] Implement `unnecessary-cast-to-int` (RUF046) (#14697) + + Rule changes + - [airflow] Check AIR001 from builtin or providers `operators` module (#14631) + - [flake8-pytest-style] Remove `@` in `pytest.mark.parametrize` rule messages (#14770) + - [pandas-vet] Skip rules if the `panda` module hasn't been seen (#14671) + - [pylint] Fix false negatives for `ascii` and `sorted` in `len-as-condition` (PLC1802) (#14692) + - [refurb] Guard `hashlib` imports and mark `hashlib-digest-hex` fix as safe (FURB181) (#14694) + + Configuration + - [flake8-import-conventions] Improve syntax check for aliases supplied in configuration for `unconventional-import-alias` (ICN001) (#14745) + + Bug fixes + - Revert: [pyflakes] Avoid false positives in `@no_type_check` contexts (F821, F722) (#14615) (#14726) + - [pep8-naming] Avoid false positive for `class Bar(type(foo))` (N804) (#14683) + - [pycodestyle] Handle f-strings properly for `invalid-escape-sequence` (W605) (#14748) + - [pylint] Ignore `@overload` in PLR0904 (#14730) + - [refurb] Handle non-finite decimals in `verbose-decimal-constructor` (FURB157) (#14596) + - [ruff] Avoid emitting `assignment-in-assert` when all references to the assigned variable are themselves inside `assert`s (RUF018) (#14661) + + Documentation + - Improve docs for `flake8-use-pathlib` rules (#14741) + - Improve error messages and docs for `flake8-comprehensions` rules (#14729) + - [flake8-type-checking] Expands TC006 docs to better explain itself (#14749) +ReleaseNotesUrl: https://github.com/astral-sh/ruff/releases/tag/0.8.2 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/a/astral-sh/ruff/0.8.2/astral-sh.ruff.yaml b/manifests/a/astral-sh/ruff/0.8.2/astral-sh.ruff.yaml new file mode 100644 index 0000000000000..ca6c389c96136 --- /dev/null +++ b/manifests/a/astral-sh/ruff/0.8.2/astral-sh.ruff.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: astral-sh.ruff +PackageVersion: 0.8.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 3a7c2b9b99f9c951d32afb83c52e7017df3154fb Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Sat, 7 Dec 2024 07:12:45 +0900 Subject: [PATCH 41/58] New version: aquaproj.aqua 2.38.4 (#196684) Co-authored-by: goreleaserbot --- .../aqua/2.38.4/aquaproj.aqua.installer.yaml | 26 +++++++++++++++++++ .../2.38.4/aquaproj.aqua.locale.en-US.yaml | 20 ++++++++++++++ .../a/aquaproj/aqua/2.38.4/aquaproj.aqua.yaml | 7 +++++ 3 files changed, 53 insertions(+) create mode 100644 manifests/a/aquaproj/aqua/2.38.4/aquaproj.aqua.installer.yaml create mode 100644 manifests/a/aquaproj/aqua/2.38.4/aquaproj.aqua.locale.en-US.yaml create mode 100644 manifests/a/aquaproj/aqua/2.38.4/aquaproj.aqua.yaml diff --git a/manifests/a/aquaproj/aqua/2.38.4/aquaproj.aqua.installer.yaml b/manifests/a/aquaproj/aqua/2.38.4/aquaproj.aqua.installer.yaml new file mode 100644 index 0000000000000..67f444089357d --- /dev/null +++ b/manifests/a/aquaproj/aqua/2.38.4/aquaproj.aqua.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.6.0.schema.json +PackageIdentifier: aquaproj.aqua +PackageVersion: 2.38.4 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-12-05" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: aqua.exe + PortableCommandAlias: aqua + InstallerUrl: https://github.com/aquaproj/aqua/releases/download/v2.38.4/aqua_windows_arm64.zip + InstallerSha256: 9bab5bdc5a111d61fbbc2945d0221b45d016e53efc344cb5cb4e295f5d1e9f47 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: aqua.exe + PortableCommandAlias: aqua + InstallerUrl: https://github.com/aquaproj/aqua/releases/download/v2.38.4/aqua_windows_amd64.zip + InstallerSha256: 46ce04fb531cf3442a062eb09975574de452354386acf91ab4c099994980de74 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/a/aquaproj/aqua/2.38.4/aquaproj.aqua.locale.en-US.yaml b/manifests/a/aquaproj/aqua/2.38.4/aquaproj.aqua.locale.en-US.yaml new file mode 100644 index 0000000000000..4c2dabaf8211f --- /dev/null +++ b/manifests/a/aquaproj/aqua/2.38.4/aquaproj.aqua.locale.en-US.yaml @@ -0,0 +1,20 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: aquaproj.aqua +PackageVersion: 2.38.4 +PackageLocale: en-US +Publisher: aquaproj +PublisherSupportUrl: https://github.com/aquaproj/aqua/discussions +PackageName: aqua +PackageUrl: https://github.com/aquaproj/aqua +License: mit +LicenseUrl: https://github.com/aquaproj/aqua/blob/main/LICENSE +ShortDescription: Declarative CLI Version manager written in Go +Description: | + Declarative CLI Version manager written in Go. + Support Lazy Install, Registry, and continuous update by Renovate. + CLI version is switched seamlessly +Moniker: aqua +ReleaseNotesUrl: https://github.com/aquaproj/aqua/releases/tag/v2.38.4 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/a/aquaproj/aqua/2.38.4/aquaproj.aqua.yaml b/manifests/a/aquaproj/aqua/2.38.4/aquaproj.aqua.yaml new file mode 100644 index 0000000000000..d3363755aa060 --- /dev/null +++ b/manifests/a/aquaproj/aqua/2.38.4/aquaproj.aqua.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.6.0.schema.json +PackageIdentifier: aquaproj.aqua +PackageVersion: 2.38.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From d02509f6c867871fe075f8510446a9882c270c3d Mon Sep 17 00:00:00 2001 From: eng-dev-ecosystem-bot <110475461+eng-dev-ecosystem-bot@users.noreply.github.com> Date: Fri, 6 Dec 2024 23:12:53 +0100 Subject: [PATCH 42/58] New version: Databricks.DatabricksCLI version 0.236.0 (#196594) --- .../Databricks.DatabricksCLI.installer.yaml | 20 +++++++++++ ...Databricks.DatabricksCLI.locale.en-US.yaml | 34 +++++++++++++++++++ .../0.236.0/Databricks.DatabricksCLI.yaml | 8 +++++ 3 files changed, 62 insertions(+) create mode 100644 manifests/d/Databricks/DatabricksCLI/0.236.0/Databricks.DatabricksCLI.installer.yaml create mode 100644 manifests/d/Databricks/DatabricksCLI/0.236.0/Databricks.DatabricksCLI.locale.en-US.yaml create mode 100644 manifests/d/Databricks/DatabricksCLI/0.236.0/Databricks.DatabricksCLI.yaml diff --git a/manifests/d/Databricks/DatabricksCLI/0.236.0/Databricks.DatabricksCLI.installer.yaml b/manifests/d/Databricks/DatabricksCLI/0.236.0/Databricks.DatabricksCLI.installer.yaml new file mode 100644 index 0000000000000..8d4b69ce4d11d --- /dev/null +++ b/manifests/d/Databricks/DatabricksCLI/0.236.0/Databricks.DatabricksCLI.installer.yaml @@ -0,0 +1,20 @@ +# Created with WinGet Releaser 93fd8b606a1672ec3e5c6c3bb19426be68d1a8b0 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Databricks.DatabricksCLI +PackageVersion: 0.236.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: databricks.exe +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2024-12-05 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/databricks/cli/releases/download/v0.236.0/databricks_cli_0.236.0_windows_amd64-signed.zip + InstallerSha256: 25083BB5001BA973A729FFAAD227857D0E9718F9DCE288002E99F3A3E2DBA51F +- Architecture: arm64 + InstallerUrl: https://github.com/databricks/cli/releases/download/v0.236.0/databricks_cli_0.236.0_windows_arm64-signed.zip + InstallerSha256: 2E69A2EF5C1A2F92729530CB68ACF31EB5E88F10DB1F8344000299D236B8FE2F +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/Databricks/DatabricksCLI/0.236.0/Databricks.DatabricksCLI.locale.en-US.yaml b/manifests/d/Databricks/DatabricksCLI/0.236.0/Databricks.DatabricksCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..a1cb398348340 --- /dev/null +++ b/manifests/d/Databricks/DatabricksCLI/0.236.0/Databricks.DatabricksCLI.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with WinGet Releaser 93fd8b606a1672ec3e5c6c3bb19426be68d1a8b0 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Databricks.DatabricksCLI +PackageVersion: 0.236.0 +PackageLocale: en-US +Publisher: Databricks +PublisherUrl: https://databricks.com +PublisherSupportUrl: https://github.com/databricks/cli/issues +PackageName: DatabricksCLI +PackageUrl: https://github.com/databricks/cli +License: DB license +LicenseUrl: https://github.com/databricks/cli/blob/main/LICENSE +ShortDescription: Databricks Command Line Interface +ReleaseNotes: |- + - Add DABs support for Unity Catalog volumes (#1762). + - Support lookup by name of notification destinations (#1922). + - Extend "notebook not found" error to warn about missing extension (#1920). + - Skip sync warning if no sync paths are defined (#1926). + - Add validation for single node clusters (#1909). + - Fix segfault in bundle summary command (#1937). + - Add the bundle_uuid helper function for templates (#1947). + - Add default value for volume_type for DABs (#1952). + - Properly read Git metadata when running inside workspace (#1945). + - Upgrade TF provider to 1.59.0 (#1960). + - Breakout variable lookup into separate files and tests (#1921). + - Add golangci-lint v1.62.2 (#1953). + - Bump golang.org/x/term from 0.25.0 to 0.26.0 (#1907). + - Bump github.com/Masterminds/semver/v3 from 3.3.0 to 3.3.1 (#1930). + - Bump github.com/stretchr/testify from 1.9.0 to 1.10.0 (#1932). + - Bump github.com/databricks/databricks-sdk-go from 0.51.0 to 0.52.0 (#1931). +ReleaseNotesUrl: https://github.com/databricks/cli/releases/tag/v0.236.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/Databricks/DatabricksCLI/0.236.0/Databricks.DatabricksCLI.yaml b/manifests/d/Databricks/DatabricksCLI/0.236.0/Databricks.DatabricksCLI.yaml new file mode 100644 index 0000000000000..727b2642af29b --- /dev/null +++ b/manifests/d/Databricks/DatabricksCLI/0.236.0/Databricks.DatabricksCLI.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser 93fd8b606a1672ec3e5c6c3bb19426be68d1a8b0 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Databricks.DatabricksCLI +PackageVersion: 0.236.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 From 6d980750e9afa13c68d0db025ca50985ec1ef94d Mon Sep 17 00:00:00 2001 From: "Mr.k" Date: Sat, 7 Dec 2024 01:15:48 +0300 Subject: [PATCH 43/58] New Version: odin-lang.Odin version dev-2024-12 (#196791) --- .../dev-2024-12/odin-lang.Odin.installer.yaml | 22 +++++ .../odin-lang.Odin.locale.en-US.yaml | 96 +++++++++++++++++++ .../Odin/dev-2024-12/odin-lang.Odin.yaml | 8 ++ 3 files changed, 126 insertions(+) create mode 100644 manifests/o/odin-lang/Odin/dev-2024-12/odin-lang.Odin.installer.yaml create mode 100644 manifests/o/odin-lang/Odin/dev-2024-12/odin-lang.Odin.locale.en-US.yaml create mode 100644 manifests/o/odin-lang/Odin/dev-2024-12/odin-lang.Odin.yaml diff --git a/manifests/o/odin-lang/Odin/dev-2024-12/odin-lang.Odin.installer.yaml b/manifests/o/odin-lang/Odin/dev-2024-12/odin-lang.Odin.installer.yaml new file mode 100644 index 0000000000000..0149b7682eabf --- /dev/null +++ b/manifests/o/odin-lang/Odin/dev-2024-12/odin-lang.Odin.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 v2.4.3 $debug=QUSU.CRLF.7-4-6.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: odin-lang.Odin +PackageVersion: dev-2024-12 +InstallerType: zip +FileExtensions: +- odin +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: dist\odin.exe + PortableCommandAlias: odin.exe + InstallerUrl: https://github.com/odin-lang/Odin/releases/download/dev-2024-12/odin-windows-amd64-dev-2024-12.zip + InstallerSha256: 86130C73FAAAAD3838FEF68988E54EA8FC6CDD0F7927261011B14EEE9FB9D85A +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/o/odin-lang/Odin/dev-2024-12/odin-lang.Odin.locale.en-US.yaml b/manifests/o/odin-lang/Odin/dev-2024-12/odin-lang.Odin.locale.en-US.yaml new file mode 100644 index 0000000000000..673e61b9fdf68 --- /dev/null +++ b/manifests/o/odin-lang/Odin/dev-2024-12/odin-lang.Odin.locale.en-US.yaml @@ -0,0 +1,96 @@ +# Created with YamlCreate.ps1 v2.4.3 $debug=QUSU.CRLF.7-4-6.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: odin-lang.Odin +PackageVersion: dev-2024-12 +PackageLocale: en-US +Publisher: Ginger Bill +PublisherUrl: https://odin-lang.org/ +PublisherSupportUrl: https://odin-lang.org/community/ +# PrivacyUrl: +Author: Ginger Bill +PackageName: Odin Programming Language +PackageUrl: https://odin-lang.org/ +License: BSD-3-Clause +LicenseUrl: https://raw.githubusercontent.com/odin-lang/Odin/master/LICENSE +Copyright: Copyright (c) 2016-2024 Ginger Bill. All rights reserved. +# CopyrightUrl: +ShortDescription: Odin is a general-purpose programming language with distinct typing built for high performance, modern systems and data-oriented programming. +# Description: +Moniker: odin +Tags: +- c +- c++ +- data-oriented-programming-language +- odin +- programming +- programming-language +- software-development +- software-programming +ReleaseNotes: |- + New Language Features + N/A + + Compiler Improvements + - Fix windows args parser problem from issue https://github.com/odin-lang/Odin/pull/4393. + - Suggestion when assigning `enum` to `bit_set`. + - Suggest `-microarch:native` if `popcnt` instruction is missing. + - List the supported targets using `odin build . -targets:?`. + - Fix: `build_odin.sh` always runs demo regardless of argument. + - Report error when builtin `min`/`max` has only one numeric parameter. + - Add which to `shell.nix` to build with `--pure`. + - Only error with `-vet-cast` when it is actually castable. + - Fix https://github.com/odin-lang/Odin/pull/4508 for `abs`, `min`, `max`. + - Rework macos version retrieval for `odin report`. + - Updated NetBSD CI to pkgsrc Q3 release. + - Check `type_expr` in `check_procedure_param_polymorphic_type`. + - Add support for LLVM v19 + - Fix PowerShell version incompatibility in `build.bat` by adding `misc\get-date.c` utility. + + New Packages + N/A + + Package Improvements + - Update `vendor:raylib` to v5.5. + - Add `vendor:raylib` aliases for `Is*Ready` -> `Is*Valid`. + - Add new test, better fail-check, and non-transitioning tz fix. + - Fix random sequence bindings in `vendor:raylib`. + - Added Unlinking Section to Posix Socket Binding Documentation. + - Update `scanner.odin`. + - Fix relative links in `examples/README.md`. + - Correct `zlib` usage in doc. + - Add `core:slice.size`. + - reflect: add `enum_value_has_name` proc. + - Increased the size of Javascript keyboard event key/code buffer size. + - Add NSApplication bindings for `mainWindow` and `keyWindow`. + - Add `STICKYKEYS`, `TOGGLEKEYS`, and `FILTERKEYS` to `core:sys/windows`. + - Implemented inotify in `core:sys/linux`. + - Fix integer type in `UXTheme` bindings. + - `os2`: fix leak in `dir_windows`, fix netbsd, and add a test for dir reading. + - [runtime] `make(map[K]V)` should not allocate any capacity. + - Fix typo in the Quaternion dot product implementation. + - Fix `https://github.com/odin-lang/Odin/pull/config` typo in Lua bindings. + - Parsing fix for timezones that have an uneven number of utc / st tags. + - Fix https://github.com/odin-lang/Odin/pull/4509 + - Fix unhandled `unmarshal` error. + - Rework macos version retrieval for `core:sys/info`. + - `core:net`: Fix `DNS_RECORD.Data` alignment error on Windows i386. + - Fix math binomial proc giving wrong result. + - Make `O_RDONLY` default for `os.open` on all platforms. + - `core:dynlib`: Unload library before loading again & add `LIBRARY_FILE_EXTENSION` constant. + - Correct handling newlines between build tags in `core:odin`. + - Pass allocator to implicitly (de)allocating procs in `core:log`. + - Use a proper `Queue` in `core:thread.Pool` + - Fix `core:text/regex`'s `match_with_preallocated_capture` returning `num_groups`. + - Add `linalg.clamp_length(vector, max_length) -> clamped_vector`. + - Improve `strings.index_multi`. + - Add regression test for https://github.com/odin-lang/Odin/pull/4553. + - `core:encoding/json`: Move struct field zipping outside of loop. +ReleaseNotesUrl: https://github.com/odin-lang/Odin/releases/tag/dev-2024-12 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Odin Official Docs + DocumentUrl: https://odin-lang.org/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/o/odin-lang/Odin/dev-2024-12/odin-lang.Odin.yaml b/manifests/o/odin-lang/Odin/dev-2024-12/odin-lang.Odin.yaml new file mode 100644 index 0000000000000..da86bbecbec75 --- /dev/null +++ b/manifests/o/odin-lang/Odin/dev-2024-12/odin-lang.Odin.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.4.3 $debug=QUSU.CRLF.7-4-6.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: odin-lang.Odin +PackageVersion: dev-2024-12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 30b72ea27d6238f105fe4e27f098c79b4a02c6ac Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Fri, 6 Dec 2024 14:16:55 -0800 Subject: [PATCH 44/58] Automatic deletion of AOMEI.PartitionAssistant 10.5.0 (#196792) --- .../AOMEI.PartitionAssistant.installer.yaml | 21 ------------------- ...AOMEI.PartitionAssistant.locale.en-US.yaml | 18 ---------------- .../10.5.0/AOMEI.PartitionAssistant.yaml | 8 ------- 3 files changed, 47 deletions(-) delete mode 100644 manifests/a/AOMEI/PartitionAssistant/10.5.0/AOMEI.PartitionAssistant.installer.yaml delete mode 100644 manifests/a/AOMEI/PartitionAssistant/10.5.0/AOMEI.PartitionAssistant.locale.en-US.yaml delete mode 100644 manifests/a/AOMEI/PartitionAssistant/10.5.0/AOMEI.PartitionAssistant.yaml diff --git a/manifests/a/AOMEI/PartitionAssistant/10.5.0/AOMEI.PartitionAssistant.installer.yaml b/manifests/a/AOMEI/PartitionAssistant/10.5.0/AOMEI.PartitionAssistant.installer.yaml deleted file mode 100644 index d1ca22eb2bd6d..0000000000000 --- a/manifests/a/AOMEI/PartitionAssistant/10.5.0/AOMEI.PartitionAssistant.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Automatically updated by the winget bot at 2024/Nov/08 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: AOMEI.PartitionAssistant -PackageVersion: 10.5.0 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Installers: -- Architecture: neutral - InstallerUrl: https://www2.aomeisoftware.com/download/pa/PAssist_Std.exe - InstallerSha256: 906B8B85B7B244437B19BEAB9CBD76860AD41DB6CBFC5BC5A453E18C5F54C80E -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/a/AOMEI/PartitionAssistant/10.5.0/AOMEI.PartitionAssistant.locale.en-US.yaml b/manifests/a/AOMEI/PartitionAssistant/10.5.0/AOMEI.PartitionAssistant.locale.en-US.yaml deleted file mode 100644 index 33e1f7ed30226..0000000000000 --- a/manifests/a/AOMEI/PartitionAssistant/10.5.0/AOMEI.PartitionAssistant.locale.en-US.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically updated by the winget bot at 2024/Nov/08 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: AOMEI.PartitionAssistant -PackageVersion: 10.5.0 -PackageLocale: en-US -Publisher: AOMEI International Network Limited. -PublisherUrl: https://www.aomeitech.com/ -PublisherSupportUrl: https://www.aomeitech.com/support.html -PrivacyUrl: https://www.aomeitech.com/privacy.html -PackageName: AOMEI Partition Assistant -PackageUrl: https://www.aomeitech.com/aomei-partition-assistant.html -License: Proprietary -LicenseUrl: https://www.diskpart.com/eula/pa-standard.pdf -Copyright: Copyright (c) AOMEI International Network Limited. -ShortDescription: Safely partition and manage your hard disks without any data loss. -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/a/AOMEI/PartitionAssistant/10.5.0/AOMEI.PartitionAssistant.yaml b/manifests/a/AOMEI/PartitionAssistant/10.5.0/AOMEI.PartitionAssistant.yaml deleted file mode 100644 index 64f3e3810fa90..0000000000000 --- a/manifests/a/AOMEI/PartitionAssistant/10.5.0/AOMEI.PartitionAssistant.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2024/Nov/08 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: AOMEI.PartitionAssistant -PackageVersion: 10.5.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 From 02daeeafe4a6758fdcec36aed26b55f70de0522e Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Fri, 6 Dec 2024 14:17:11 -0800 Subject: [PATCH 45/58] Automatic deletion of Nextiva.NextivaONE 1.16.0 (#196794) --- .../1.16.0/Nextiva.NextivaONE.installer.yaml | 14 ---------- .../Nextiva.NextivaONE.locale.en-US.yaml | 28 ------------------- .../NextivaONE/1.16.0/Nextiva.NextivaONE.yaml | 8 ------ 3 files changed, 50 deletions(-) delete mode 100644 manifests/n/Nextiva/NextivaONE/1.16.0/Nextiva.NextivaONE.installer.yaml delete mode 100644 manifests/n/Nextiva/NextivaONE/1.16.0/Nextiva.NextivaONE.locale.en-US.yaml delete mode 100644 manifests/n/Nextiva/NextivaONE/1.16.0/Nextiva.NextivaONE.yaml diff --git a/manifests/n/Nextiva/NextivaONE/1.16.0/Nextiva.NextivaONE.installer.yaml b/manifests/n/Nextiva/NextivaONE/1.16.0/Nextiva.NextivaONE.installer.yaml deleted file mode 100644 index f1df0b57eb3f2..0000000000000 --- a/manifests/n/Nextiva/NextivaONE/1.16.0/Nextiva.NextivaONE.installer.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically updated by the winget bot at 2024/Apr/03 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Nextiva.NextivaONE -PackageVersion: 1.16.0 -InstallerType: nullsoft -InstallerSwitches: - Silent: /s -Installers: -- Architecture: x64 - InstallerUrl: https://assets.nextiva.com/download/Nextiva-win.exe - InstallerSha256: B9A14D7EE9CF923AEE00C3460A825779E19594BA275C84B51F2FB0596D358798 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/n/Nextiva/NextivaONE/1.16.0/Nextiva.NextivaONE.locale.en-US.yaml b/manifests/n/Nextiva/NextivaONE/1.16.0/Nextiva.NextivaONE.locale.en-US.yaml deleted file mode 100644 index 164c1e7cbb09e..0000000000000 --- a/manifests/n/Nextiva/NextivaONE/1.16.0/Nextiva.NextivaONE.locale.en-US.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Automatically updated by the winget bot at 2024/Apr/03 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Nextiva.NextivaONE -PackageVersion: 1.16.0 -PackageLocale: en-US -Publisher: Nextiva -PublisherUrl: https://www.nextiva.com -PublisherSupportUrl: https://www.nextiva.com/support/nextivaone -PrivacyUrl: https://www.nextiva.com/downloads/NextivaPrivacyPolicy.pdf -PackageName: Nextiva -PackageUrl: https://www.nextiva.com/products/business-phone-app.html -License: Proprietary -LicenseUrl: https://www.nextiva.com/legal.html?doc=14 -Copyright: Copyright © 2023 Nextiva -ShortDescription: VoIP Desktop App designed for use with Nextiva VoIP Phone Systems -Tags: -- business-phone -- phone -- voip -PurchaseUrl: https://www.nextiva.com/nextiva-pricing.html -Documentations: -- DocumentLabel: User Guide - DocumentUrl: https://assets.nextiva.com/download/guide/nextiva-app/Nextiva-App-Desktop-User-Guide.pdf -- DocumentLabel: Troubleshooting - DocumentUrl: https://www.nextiva.com/support/articles/troubleshooting-nextivaone.html -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/n/Nextiva/NextivaONE/1.16.0/Nextiva.NextivaONE.yaml b/manifests/n/Nextiva/NextivaONE/1.16.0/Nextiva.NextivaONE.yaml deleted file mode 100644 index 37953d036a3f2..0000000000000 --- a/manifests/n/Nextiva/NextivaONE/1.16.0/Nextiva.NextivaONE.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2024/Apr/03 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: Nextiva.NextivaONE -PackageVersion: 1.16.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 From 8e7afb6e0cf9844dd7c875c99381c351fd86ad15 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Fri, 6 Dec 2024 14:17:27 -0800 Subject: [PATCH 46/58] Automatic deletion of MAILPLUGInc.MAILPLUGMessengerDesktop 1.4.2 (#196795) --- ...Inc.MAILPLUGMessengerDesktop.installer.yaml | 12 ------------ ....MAILPLUGMessengerDesktop.locale.en-US.yaml | 18 ------------------ .../MAILPLUGInc.MAILPLUGMessengerDesktop.yaml | 8 -------- 3 files changed, 38 deletions(-) delete mode 100644 manifests/m/MAILPLUGInc/MAILPLUGMessengerDesktop/1.4.2/MAILPLUGInc.MAILPLUGMessengerDesktop.installer.yaml delete mode 100644 manifests/m/MAILPLUGInc/MAILPLUGMessengerDesktop/1.4.2/MAILPLUGInc.MAILPLUGMessengerDesktop.locale.en-US.yaml delete mode 100644 manifests/m/MAILPLUGInc/MAILPLUGMessengerDesktop/1.4.2/MAILPLUGInc.MAILPLUGMessengerDesktop.yaml diff --git a/manifests/m/MAILPLUGInc/MAILPLUGMessengerDesktop/1.4.2/MAILPLUGInc.MAILPLUGMessengerDesktop.installer.yaml b/manifests/m/MAILPLUGInc/MAILPLUGMessengerDesktop/1.4.2/MAILPLUGInc.MAILPLUGMessengerDesktop.installer.yaml deleted file mode 100644 index 0859dec9f9fc4..0000000000000 --- a/manifests/m/MAILPLUGInc/MAILPLUGMessengerDesktop/1.4.2/MAILPLUGInc.MAILPLUGMessengerDesktop.installer.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Automatically updated by the winget bot at 2024/Oct/15 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: MAILPLUGInc.MAILPLUGMessengerDesktop -PackageVersion: 1.4.2 -InstallerType: nullsoft -Installers: -- Architecture: x86 - InstallerUrl: https://chat.mailplug.com/download/?app=windows - InstallerSha256: ED49F5E10251311A758F299FE0087B6684407F6366FF0DFF8CD464353F89E89F -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/m/MAILPLUGInc/MAILPLUGMessengerDesktop/1.4.2/MAILPLUGInc.MAILPLUGMessengerDesktop.locale.en-US.yaml b/manifests/m/MAILPLUGInc/MAILPLUGMessengerDesktop/1.4.2/MAILPLUGInc.MAILPLUGMessengerDesktop.locale.en-US.yaml deleted file mode 100644 index 4cff15f733d9f..0000000000000 --- a/manifests/m/MAILPLUGInc/MAILPLUGMessengerDesktop/1.4.2/MAILPLUGInc.MAILPLUGMessengerDesktop.locale.en-US.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically updated by the winget bot at 2024/Oct/15 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: MAILPLUGInc.MAILPLUGMessengerDesktop -PackageVersion: 1.4.2 -PackageLocale: en-US -Publisher: MAILPLUG Inc. -PublisherUrl: https://mailplug.com/ -PublisherSupportUrl: https://www.mailplug-help.com/ -PrivacyUrl: https://mypage.mailplug.com/terms/private -PackageName: MAILPLUG Messenger Desktop -PackageUrl: https://groupware.mailplug.com/ -License: Proprietary -Copyright: Copyright © 2022 MAILPLUG Inc. -ShortDescription: MAILPLUG Messenger Desktop -Moniker: mailplug-messenger -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/m/MAILPLUGInc/MAILPLUGMessengerDesktop/1.4.2/MAILPLUGInc.MAILPLUGMessengerDesktop.yaml b/manifests/m/MAILPLUGInc/MAILPLUGMessengerDesktop/1.4.2/MAILPLUGInc.MAILPLUGMessengerDesktop.yaml deleted file mode 100644 index 689582426a4cb..0000000000000 --- a/manifests/m/MAILPLUGInc/MAILPLUGMessengerDesktop/1.4.2/MAILPLUGInc.MAILPLUGMessengerDesktop.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2024/Oct/15 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: MAILPLUGInc.MAILPLUGMessengerDesktop -PackageVersion: 1.4.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 From fcb70053360596f1240cadd22620cd37f6bb0e9d Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Fri, 6 Dec 2024 23:19:27 +0100 Subject: [PATCH 47/58] New version: twpayne.chezmoi 2.55.0 (#195577) --- .../2.55.0/twpayne.chezmoi.installer.yaml | 34 +++++++++++++++++ .../2.55.0/twpayne.chezmoi.locale.en-US.yaml | 38 +++++++++++++++++++ .../chezmoi/2.55.0/twpayne.chezmoi.yaml | 7 ++++ 3 files changed, 79 insertions(+) create mode 100644 manifests/t/twpayne/chezmoi/2.55.0/twpayne.chezmoi.installer.yaml create mode 100644 manifests/t/twpayne/chezmoi/2.55.0/twpayne.chezmoi.locale.en-US.yaml create mode 100644 manifests/t/twpayne/chezmoi/2.55.0/twpayne.chezmoi.yaml diff --git a/manifests/t/twpayne/chezmoi/2.55.0/twpayne.chezmoi.installer.yaml b/manifests/t/twpayne/chezmoi/2.55.0/twpayne.chezmoi.installer.yaml new file mode 100644 index 0000000000000..124192f608236 --- /dev/null +++ b/manifests/t/twpayne/chezmoi/2.55.0/twpayne.chezmoi.installer.yaml @@ -0,0 +1,34 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: twpayne.chezmoi +PackageVersion: 2.55.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-12-02" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: chezmoi.exe + PortableCommandAlias: chezmoi + InstallerUrl: https://github.com/twpayne/chezmoi/releases/download/v2.55.0/chezmoi_2.55.0_windows_i386.zip + InstallerSha256: 032f554efca5b68b1f0cf0be68c06cfbf6900628990ba192d4af75acc2d40664 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: chezmoi.exe + PortableCommandAlias: chezmoi + InstallerUrl: https://github.com/twpayne/chezmoi/releases/download/v2.55.0/chezmoi_2.55.0_windows_arm64.zip + InstallerSha256: f8d166ce623b792dc7df89285dc55fee3149955481409ae5ebc26268989f23f8 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: chezmoi.exe + PortableCommandAlias: chezmoi + InstallerUrl: https://github.com/twpayne/chezmoi/releases/download/v2.55.0/chezmoi_2.55.0_windows_amd64.zip + InstallerSha256: 0901cf02480e913211ce809fcfbf0e572f98902393c8f2674df522c821029152 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/t/twpayne/chezmoi/2.55.0/twpayne.chezmoi.locale.en-US.yaml b/manifests/t/twpayne/chezmoi/2.55.0/twpayne.chezmoi.locale.en-US.yaml new file mode 100644 index 0000000000000..f8e855e8220b3 --- /dev/null +++ b/manifests/t/twpayne/chezmoi/2.55.0/twpayne.chezmoi.locale.en-US.yaml @@ -0,0 +1,38 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: twpayne.chezmoi +PackageVersion: 2.55.0 +PackageLocale: en-US +Publisher: twpayne +PublisherUrl: https://github.com/twpayne +PublisherSupportUrl: https://github.com/twpayne/chezmoi/issues +Author: Tom Payne +PackageName: chezmoi +PackageUrl: https://chezmoi.io +License: MIT +LicenseUrl: https://github.com/twpayne/chezmoi/blob/master/LICENSE +Copyright: Copyright (c) 2018-2024 Tom Payne +ShortDescription: Manage your dotfiles across multiple diverse machines, securely. +Moniker: chezmoi +Tags: + - cli + - configuration + - dotbot + - dotfile + - dotfiles + - stow + - yadm +ReleaseNotes: | + ## Changelog + ### Features + * 5f5e106dbdbc2fb42e30793a5a1fe25e2c2a67f5 feat: Add multiple URL support for externals + * 01eef459e9fd7cbc2f174a0c8a3e8e74d7b57d76 feat: Warn if the user is using the Helix editor with chezmoi edit + * 4c4bfe97dd554e6b64a522167721c256abf5ebac feat: Support file:// URLs in externals + ### Fixes + * 9ce3b0b9b14653000d58ebdd93a1d2a9f448ac35 fix: Fix error when choice variables are set in flags and config file + ### Documentation updates + * cb8624415f095efd73b7ae91af71274c7537fa29 docs: Add article info + * 1d5a3c5ab9a80811ef1efa419135074c7295e1a1 docs: Add Youtube video info +ReleaseNotesUrl: https://github.com/twpayne/chezmoi/releases/tag/v2.55.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/t/twpayne/chezmoi/2.55.0/twpayne.chezmoi.yaml b/manifests/t/twpayne/chezmoi/2.55.0/twpayne.chezmoi.yaml new file mode 100644 index 0000000000000..257885560574c --- /dev/null +++ b/manifests/t/twpayne/chezmoi/2.55.0/twpayne.chezmoi.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.6.0.schema.json +PackageIdentifier: twpayne.chezmoi +PackageVersion: 2.55.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 9aaebaa39a03aa403858cd1fb9f8057f975334e5 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Fri, 6 Dec 2024 14:20:37 -0800 Subject: [PATCH 48/58] Automatic update of Mango3D.LycheeSlicer 7.1.3 (#196796) --- .../LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.installer.yaml | 4 ++-- .../LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.locale.en-US.yaml | 2 +- .../LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.locale.zh-CN.yaml | 2 +- .../m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.installer.yaml b/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.installer.yaml index 5e888dab5ae09..cd22bab5eaf1d 100644 --- a/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.installer.yaml +++ b/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.installer.yaml @@ -1,4 +1,4 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Automatically updated by the winget bot at 2024/Dec/06 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json PackageIdentifier: Mango3D.LycheeSlicer @@ -23,6 +23,6 @@ ReleaseDate: 2024-12-06 Installers: - Architecture: x64 InstallerUrl: https://mango-lychee.nyc3.digitaloceanspaces.com/LycheeSlicer-7.1.3.exe - InstallerSha256: 0075140C1357A8DB85D2F12041D84E856E0BFA2934DCC3A536C39F74C9D889D3 + InstallerSha256: 2BE76E7748B8B8BB2E3FA8EF00674FA7CD60C14BC67703968D7DAC42E9110A64 ManifestType: installer ManifestVersion: 1.9.0 diff --git a/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.locale.en-US.yaml b/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.locale.en-US.yaml index 88193c68b9e97..7768bd1cf43a4 100644 --- a/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.locale.en-US.yaml +++ b/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Automatically updated by the winget bot at 2024/Dec/06 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json PackageIdentifier: Mango3D.LycheeSlicer diff --git a/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.locale.zh-CN.yaml b/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.locale.zh-CN.yaml index 5cc2efec206eb..9f2f9c702c20d 100644 --- a/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.locale.zh-CN.yaml +++ b/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Automatically updated by the winget bot at 2024/Dec/06 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json PackageIdentifier: Mango3D.LycheeSlicer diff --git a/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.yaml b/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.yaml index 249da889071bc..bc4bc24dae377 100644 --- a/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.yaml +++ b/manifests/m/Mango3D/LycheeSlicer/7.1.3/Mango3D.LycheeSlicer.yaml @@ -1,4 +1,4 @@ -# Created with YamlCreate.ps1 Dumplings Mod +# Automatically updated by the winget bot at 2024/Dec/06 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json PackageIdentifier: Mango3D.LycheeSlicer From 6498159663f55c9a716e43b3cde55e38ede97b96 Mon Sep 17 00:00:00 2001 From: Kaleb Luedtke Date: Fri, 6 Dec 2024 16:20:57 -0600 Subject: [PATCH 49/58] Revert "Move deltachat.deltachat 1.22.2 to DeltaChat.DeltaChat 1.22.2" (#196803) --- .../1.22.2/DeltaChat.DeltaChat.installer.yaml | 12 ------------ .../1.22.2/DeltaChat.DeltaChat.locale.en-US.yaml | 12 ------------ .../DeltaChat/1.22.2/DeltaChat.DeltaChat.yaml | 8 -------- 3 files changed, 32 deletions(-) delete mode 100644 manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.installer.yaml delete mode 100644 manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.locale.en-US.yaml delete mode 100644 manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.yaml diff --git a/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.installer.yaml b/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.installer.yaml deleted file mode 100644 index 7ac4f5ecf82dd..0000000000000 --- a/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.installer.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Created using wingetcreate 0.4.1.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: DeltaChat.DeltaChat -PackageVersion: 1.22.2 -Installers: -- Architecture: x64 - InstallerType: nullsoft - InstallerUrl: https://download.delta.chat/desktop/v1.22.2/DeltaChat%20Setup%201.22.2.exe - InstallerSha256: BEB0DD42F49CCC94FB5DE65D9954E6B6FA59D7F759460770B98A5456F2445CC1 -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.locale.en-US.yaml b/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.locale.en-US.yaml deleted file mode 100644 index e79583db7fa17..0000000000000 --- a/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.locale.en-US.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Created using wingetcreate 0.4.1.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: DeltaChat.DeltaChat -PackageVersion: 1.22.2 -PackageLocale: en-US -Publisher: DeltaChat Developers -PackageName: DeltaChat -License: GPLv3 -ShortDescription: Email-based instant messaging for Desktop -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.yaml b/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.yaml deleted file mode 100644 index d8510272a989f..0000000000000 --- a/manifests/d/DeltaChat/DeltaChat/1.22.2/DeltaChat.DeltaChat.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 0.4.1.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: DeltaChat.DeltaChat -PackageVersion: 1.22.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 From f6edd5a0a57a4dca0414ed4fb446ddb1d920ec2b Mon Sep 17 00:00:00 2001 From: Kevin Boss Date: Fri, 6 Dec 2024 23:21:16 +0100 Subject: [PATCH 50/58] New version: kevinboss.port version 2.0.0 (#196797) --- .../port/2.0.0/kevinboss.port.installer.yaml | 15 ++++++++ .../2.0.0/kevinboss.port.locale.en-US.yaml | 35 +++++++++++++++++++ .../kevinboss/port/2.0.0/kevinboss.port.yaml | 8 +++++ 3 files changed, 58 insertions(+) create mode 100644 manifests/k/kevinboss/port/2.0.0/kevinboss.port.installer.yaml create mode 100644 manifests/k/kevinboss/port/2.0.0/kevinboss.port.locale.en-US.yaml create mode 100644 manifests/k/kevinboss/port/2.0.0/kevinboss.port.yaml diff --git a/manifests/k/kevinboss/port/2.0.0/kevinboss.port.installer.yaml b/manifests/k/kevinboss/port/2.0.0/kevinboss.port.installer.yaml new file mode 100644 index 0000000000000..5dd32e5e1170c --- /dev/null +++ b/manifests/k/kevinboss/port/2.0.0/kevinboss.port.installer.yaml @@ -0,0 +1,15 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: kevinboss.port +PackageVersion: 2.0.0 +InstallerType: portable +Commands: +- port +ReleaseDate: 2024-12-06 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kevinboss/port/releases/download/v2.0.0/port.exe + InstallerSha256: 95075FF0AF7E79D6679ECF98B23304A4A964E186C5346C7239600A580AD84602 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/k/kevinboss/port/2.0.0/kevinboss.port.locale.en-US.yaml b/manifests/k/kevinboss/port/2.0.0/kevinboss.port.locale.en-US.yaml new file mode 100644 index 0000000000000..f3881b688d4ad --- /dev/null +++ b/manifests/k/kevinboss/port/2.0.0/kevinboss.port.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: kevinboss.port +PackageVersion: 2.0.0 +PackageLocale: en-US +Publisher: Kevin Boss +PublisherUrl: https://github.com/kevinboss +PublisherSupportUrl: https://github.com/kevinboss/port/issues +PackageName: port +PackageUrl: https://github.com/kevinboss/port +License: GPL-3.0 +LicenseUrl: https://github.com/kevinboss/port/blob/master/LICENSE +ShortDescription: A tool that has been designed to manage multiple docker images and / or tags of these images. +Description: |- + A tool that has been designed to manage multiple docker images and / or tags of these images. + It allows the user to run one of these images / tags in a container, creating snapshots of that running container and manage the downloaded images +ReleaseNotes: |- + What's Changed + - chore(deps): bump yamldotnet from 16.0.0 to 16.1.0 in /src by @dependabot in #101 + - chore(deps): bump yamldotnet from 16.1.0 to 16.1.3 in /src by @dependabot in #103 + - chore(deps): bump Microsoft. + Extensions. + DependencyInjection from 8.0.0 to 9.0.0 in /src by @dependabot in #109 + - chore(deps): bump yamldotnet from 16.1.3 to 16.2.0 in /src by @dependabot in #108 + - chore(deps): bump actions/setup-dotnet from 4.0.1 to 4.1.0 by @dependabot in #107 + - chore(deps): bump DotNext. + Threading from 5.13.0 to 5.15.0 in /src by @dependabot in #106 + - feature/next by @kevinboss in #112 + - chore(deps): bump DotNext. + Threading from 5.15.0 to 5.16.0 in /src by @dependabot in #111 + - chore(deps): bump yamldotnet from 16.2.0 to 16.2.1 in /src by @dependabot in #110 +ReleaseNotesUrl: https://github.com/kevinboss/port/releases/tag/v2.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/k/kevinboss/port/2.0.0/kevinboss.port.yaml b/manifests/k/kevinboss/port/2.0.0/kevinboss.port.yaml new file mode 100644 index 0000000000000..f66a43a22e806 --- /dev/null +++ b/manifests/k/kevinboss/port/2.0.0/kevinboss.port.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: kevinboss.port +PackageVersion: 2.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 From fefa50cfd299c7762fb188a9bc913c7824ccc540 Mon Sep 17 00:00:00 2001 From: Kaleb Luedtke Date: Fri, 6 Dec 2024 16:21:29 -0600 Subject: [PATCH 51/58] Revert "Move deltachat.deltachat 1.20.3 to DeltaChat.DeltaChat 1.20.3" (#196804) --- .../1.20.3/DeltaChat.DeltaChat.installer.yaml | 12 ------------ .../1.20.3/DeltaChat.DeltaChat.locale.en-US.yaml | 12 ------------ .../DeltaChat/1.20.3/DeltaChat.DeltaChat.yaml | 8 -------- 3 files changed, 32 deletions(-) delete mode 100644 manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.installer.yaml delete mode 100644 manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.locale.en-US.yaml delete mode 100644 manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.yaml diff --git a/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.installer.yaml b/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.installer.yaml deleted file mode 100644 index 9168719f6daa1..0000000000000 --- a/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.installer.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Created using wingetcreate 0.2.0.29 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: DeltaChat.DeltaChat -PackageVersion: 1.20.3 -Installers: -- Architecture: x64 - InstallerType: nullsoft - InstallerUrl: https://download.delta.chat/desktop/v1.20.3/DeltaChat%20Setup%201.20.3.exe - InstallerSha256: 3000577FCBE5EA5CE4C6B066967A6CADE367C8F043097BDEA745E79495301949 -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.locale.en-US.yaml b/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.locale.en-US.yaml deleted file mode 100644 index 1f7f687862bec..0000000000000 --- a/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.locale.en-US.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Created using wingetcreate 0.2.0.29 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: DeltaChat.DeltaChat -PackageVersion: 1.20.3 -PackageLocale: en-US -Publisher: DeltaChat Developers -PackageName: DeltaChat -License: GPLv3 -ShortDescription: Email-based instant messaging for Desktop -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.yaml b/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.yaml deleted file mode 100644 index 3b2f3d89ada41..0000000000000 --- a/manifests/d/DeltaChat/DeltaChat/1.20.3/DeltaChat.DeltaChat.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 0.2.0.29 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: DeltaChat.DeltaChat -PackageVersion: 1.20.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 From 936a25eaef1de3af2865e9d4c7d2f54629a40d2d Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Fri, 6 Dec 2024 14:21:45 -0800 Subject: [PATCH 52/58] Automatic deletion of SiberSystems.GoodSync 12.7.8.8 (#196805) --- .../SiberSystems.GoodSync.installer.yaml | 14 ----------- .../SiberSystems.GoodSync.locale.en-US.yaml | 24 ------------------- .../12.7.8.8/SiberSystems.GoodSync.yaml | 8 ------- 3 files changed, 46 deletions(-) delete mode 100644 manifests/s/SiberSystems/GoodSync/12.7.8.8/SiberSystems.GoodSync.installer.yaml delete mode 100644 manifests/s/SiberSystems/GoodSync/12.7.8.8/SiberSystems.GoodSync.locale.en-US.yaml delete mode 100644 manifests/s/SiberSystems/GoodSync/12.7.8.8/SiberSystems.GoodSync.yaml diff --git a/manifests/s/SiberSystems/GoodSync/12.7.8.8/SiberSystems.GoodSync.installer.yaml b/manifests/s/SiberSystems/GoodSync/12.7.8.8/SiberSystems.GoodSync.installer.yaml deleted file mode 100644 index 196708ca8c5b7..0000000000000 --- a/manifests/s/SiberSystems/GoodSync/12.7.8.8/SiberSystems.GoodSync.installer.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically updated by the winget bot at 2024/Nov/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: SiberSystems.GoodSync -PackageVersion: 12.7.8.8 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -Installers: -- Architecture: x86 - InstallerUrl: https://www.goodsync.com/download/GoodSync-vsub-Setup.exe - InstallerSha256: 4B458C9BAEB7E4FE0AF211AFAACCACB5EC47C8BA6B5134B0F3CEC13BC650D4F7 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/s/SiberSystems/GoodSync/12.7.8.8/SiberSystems.GoodSync.locale.en-US.yaml b/manifests/s/SiberSystems/GoodSync/12.7.8.8/SiberSystems.GoodSync.locale.en-US.yaml deleted file mode 100644 index ab1aef6a66b70..0000000000000 --- a/manifests/s/SiberSystems/GoodSync/12.7.8.8/SiberSystems.GoodSync.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Automatically updated by the winget bot at 2024/Nov/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: SiberSystems.GoodSync -PackageVersion: 12.7.8.8 -PackageLocale: en-US -Publisher: Siber Systems Inc -PublisherUrl: https://www.goodsync.com/ -PrivacyUrl: https://www.goodsync.com/privacy-policy -Author: Siber Systems Inc -PackageName: GoodSync -PackageUrl: https://www.goodsync.com/ -License: Proprietary -LicenseUrl: https://www.goodsync.com/license -Copyright: Copyright © Siber Systems, Inc. -CopyrightUrl: https://www.goodsync.com/license -ShortDescription: Backup and sync your files with ease using GoodSync. Our simple and secure software will ensure that you never lose your files. -Moniker: goodsync -Tags: -- backup -- cloud -- sync -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/s/SiberSystems/GoodSync/12.7.8.8/SiberSystems.GoodSync.yaml b/manifests/s/SiberSystems/GoodSync/12.7.8.8/SiberSystems.GoodSync.yaml deleted file mode 100644 index cdd65caccfca3..0000000000000 --- a/manifests/s/SiberSystems/GoodSync/12.7.8.8/SiberSystems.GoodSync.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2024/Nov/16 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: SiberSystems.GoodSync -PackageVersion: 12.7.8.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 From 7bc7c58d3a6a7262e3e17e593a6f1c4abbb71dd0 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Fri, 6 Dec 2024 14:26:29 -0800 Subject: [PATCH 53/58] Automatic deletion of Microsoft.PowerAutomateDesktop 2.50.125.24304 (#196814) --- ...rosoft.PowerAutomateDesktop.installer.yaml | 27 ------------------ ...oft.PowerAutomateDesktop.locale.en-US.yaml | 28 ------------------- .../Microsoft.PowerAutomateDesktop.yaml | 8 ------ 3 files changed, 63 deletions(-) delete mode 100644 manifests/m/Microsoft/PowerAutomateDesktop/2.50.125.24304/Microsoft.PowerAutomateDesktop.installer.yaml delete mode 100644 manifests/m/Microsoft/PowerAutomateDesktop/2.50.125.24304/Microsoft.PowerAutomateDesktop.locale.en-US.yaml delete mode 100644 manifests/m/Microsoft/PowerAutomateDesktop/2.50.125.24304/Microsoft.PowerAutomateDesktop.yaml diff --git a/manifests/m/Microsoft/PowerAutomateDesktop/2.50.125.24304/Microsoft.PowerAutomateDesktop.installer.yaml b/manifests/m/Microsoft/PowerAutomateDesktop/2.50.125.24304/Microsoft.PowerAutomateDesktop.installer.yaml deleted file mode 100644 index 22fe5d7decb46..0000000000000 --- a/manifests/m/Microsoft/PowerAutomateDesktop/2.50.125.24304/Microsoft.PowerAutomateDesktop.installer.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Automatically updated by the winget bot at 2024/Nov/04 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: Microsoft.PowerAutomateDesktop -PackageVersion: 2.50.125.24304 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: burn -Scope: machine -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: /s - SilentWithProgress: /s - Custom: -accepteula -UpgradeBehavior: install -Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.VCRedist.2015+.x86 -Installers: -- Architecture: x86 - InstallerUrl: https://download.microsoft.com/download/3/e/4/3e401e87-e96f-4527-bfdf-bf25e370f15a/Setup.Microsoft.PowerAutomate.exe - InstallerSha256: D2F8525F47329C5273C28E23773C46AD4CB137232D2CFCC321FAFFAA8D3AEDE0 -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/PowerAutomateDesktop/2.50.125.24304/Microsoft.PowerAutomateDesktop.locale.en-US.yaml b/manifests/m/Microsoft/PowerAutomateDesktop/2.50.125.24304/Microsoft.PowerAutomateDesktop.locale.en-US.yaml deleted file mode 100644 index 9ca6a35e1f2b2..0000000000000 --- a/manifests/m/Microsoft/PowerAutomateDesktop/2.50.125.24304/Microsoft.PowerAutomateDesktop.locale.en-US.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Automatically updated by the winget bot at 2024/Nov/04 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: Microsoft.PowerAutomateDesktop -PackageVersion: 2.50.125.24304 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://flow.microsoft.com -PublisherSupportUrl: https://flow.microsoft.com/support/ -PrivacyUrl: https://privacy.microsoft.com/PrivacyStatement -Author: Microsoft Corporation -PackageName: Power Automate for desktop -PackageUrl: https://flow.microsoft.com -License: Proprietary -LicenseUrl: https://www.microsoft.com/legal/terms-of-use -Copyright: Copyright (c) Microsoft Corporation. All rights reserved. -CopyrightUrl: https://www.microsoft.com/legal/terms-of-use -ShortDescription: Automate workflows across modern and legacy applications on your desktop by recording actions such as mouse and keyboard clicks -Moniker: powerautomate -Tags: -- flow -- powerautomate -- power-automate -Agreements: -- AgreementLabel: End User License Agreement (EULA) - AgreementUrl: https://powerplatform.microsoft.com/en-us/legaldocs/slt-power-automate/ -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/PowerAutomateDesktop/2.50.125.24304/Microsoft.PowerAutomateDesktop.yaml b/manifests/m/Microsoft/PowerAutomateDesktop/2.50.125.24304/Microsoft.PowerAutomateDesktop.yaml deleted file mode 100644 index 06e35cb45b382..0000000000000 --- a/manifests/m/Microsoft/PowerAutomateDesktop/2.50.125.24304/Microsoft.PowerAutomateDesktop.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2024/Nov/04 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: Microsoft.PowerAutomateDesktop -PackageVersion: 2.50.125.24304 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 From 11db754456a14cbcd8a6a682381caaa0dff38e15 Mon Sep 17 00:00:00 2001 From: Charm <124303983+charmcli@users.noreply.github.com> Date: Fri, 6 Dec 2024 19:28:35 -0300 Subject: [PATCH 54/58] New version: charmbracelet.sequin 0.2.0 (#193744) Co-authored-by: goreleaserbot --- .../0.2.0/charmbracelet.sequin.installer.yaml | 26 +++++++++++++++++++ .../charmbracelet.sequin.locale.en-US.yaml | 14 ++++++++++ .../sequin/0.2.0/charmbracelet.sequin.yaml | 7 +++++ 3 files changed, 47 insertions(+) create mode 100644 manifests/c/charmbracelet/sequin/0.2.0/charmbracelet.sequin.installer.yaml create mode 100644 manifests/c/charmbracelet/sequin/0.2.0/charmbracelet.sequin.locale.en-US.yaml create mode 100644 manifests/c/charmbracelet/sequin/0.2.0/charmbracelet.sequin.yaml diff --git a/manifests/c/charmbracelet/sequin/0.2.0/charmbracelet.sequin.installer.yaml b/manifests/c/charmbracelet/sequin/0.2.0/charmbracelet.sequin.installer.yaml new file mode 100644 index 0000000000000..1165d28dd7b66 --- /dev/null +++ b/manifests/c/charmbracelet/sequin/0.2.0/charmbracelet.sequin.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.6.0.schema.json +PackageIdentifier: charmbracelet.sequin +PackageVersion: 0.2.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-11-25" +Installers: + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: sequin_0.2.0_Windows_i386\sequin.exe + PortableCommandAlias: sequin + InstallerUrl: https://github.com/charmbracelet/sequin/releases/download/v0.2.0/sequin_0.2.0_Windows_i386.zip + InstallerSha256: c49e543ececde9d158967c7d3160b5302adfc924eb5475e6528be9b2c9ddd3a2 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: sequin_0.2.0_Windows_x86_64\sequin.exe + PortableCommandAlias: sequin + InstallerUrl: https://github.com/charmbracelet/sequin/releases/download/v0.2.0/sequin_0.2.0_Windows_x86_64.zip + InstallerSha256: d23468e7aa02dbadbf1d06c00da22fc958094041d89026554abfc53e7f579c54 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/c/charmbracelet/sequin/0.2.0/charmbracelet.sequin.locale.en-US.yaml b/manifests/c/charmbracelet/sequin/0.2.0/charmbracelet.sequin.locale.en-US.yaml new file mode 100644 index 0000000000000..ca83b8109a44d --- /dev/null +++ b/manifests/c/charmbracelet/sequin/0.2.0/charmbracelet.sequin.locale.en-US.yaml @@ -0,0 +1,14 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: charmbracelet.sequin +PackageVersion: 0.2.0 +PackageLocale: en-US +Publisher: charmbracelet +PackageName: sequin +PackageUrl: https://charm.sh/ +License: MIT +Copyright: Charmbracelet, Inc +ShortDescription: Human-readable ANSI sequences. +Moniker: sequin +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/c/charmbracelet/sequin/0.2.0/charmbracelet.sequin.yaml b/manifests/c/charmbracelet/sequin/0.2.0/charmbracelet.sequin.yaml new file mode 100644 index 0000000000000..0a5ab1db33194 --- /dev/null +++ b/manifests/c/charmbracelet/sequin/0.2.0/charmbracelet.sequin.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.6.0.schema.json +PackageIdentifier: charmbracelet.sequin +PackageVersion: 0.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 85fd2b99c9ab547de7b4ee1066f5c5a9272b4674 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9D=A4=E6=98=AF=E7=BA=B1=E9=9B=BE=E9=85=B1=E5=93=9F?= =?UTF-8?q?=EF=BD=9E?= <49941141+Dragon1573@users.noreply.github.com> Date: Sat, 7 Dec 2024 06:40:39 +0800 Subject: [PATCH 55/58] New package: powertab.powertabeditor version 2.0.21 (#196783) Signed-off-by: Dragon1573 <49941141+Dragon1573@users.noreply.github.com> --- .../powertab.powertabeditor.installer.yaml | 34 +++++++++++++++++++ .../powertab.powertabeditor.locale.en-US.yaml | 34 +++++++++++++++++++ .../2.0.21/powertab.powertabeditor.yaml | 8 +++++ 3 files changed, 76 insertions(+) create mode 100644 manifests/p/powertab/powertabeditor/2.0.21/powertab.powertabeditor.installer.yaml create mode 100644 manifests/p/powertab/powertabeditor/2.0.21/powertab.powertabeditor.locale.en-US.yaml create mode 100644 manifests/p/powertab/powertabeditor/2.0.21/powertab.powertabeditor.yaml diff --git a/manifests/p/powertab/powertabeditor/2.0.21/powertab.powertabeditor.installer.yaml b/manifests/p/powertab/powertabeditor/2.0.21/powertab.powertabeditor.installer.yaml new file mode 100644 index 0000000000000..4c99b6741c327 --- /dev/null +++ b/manifests/p/powertab/powertabeditor/2.0.21/powertab.powertabeditor.installer.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: powertab.powertabeditor +PackageVersion: 2.0.21 +InstallerLocale: en-US +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: 6cab03ff-a31b-4c76-a4d1-20a37575896a_is1 +ReleaseDate: 2024-11-21 +AppsAndFeaturesEntries: +- Publisher: Power Tab Community + ProductCode: 6cab03ff-a31b-4c76-a4d1-20a37575896a_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Power Tab\Power Tab Editor' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/powertab/powertabeditor/releases/download/2.0.21/powertabeditor-windows-2.0.21.exe + InstallerSha256: A73961D0673BE0A4967CE486768B212542FF740EAA88B70C38A3059578F750B4 +FileExtensions: +- pt2 +- ptb +- gp3 +- gp4 +- gp5 +- gpx +- gp +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/p/powertab/powertabeditor/2.0.21/powertab.powertabeditor.locale.en-US.yaml b/manifests/p/powertab/powertabeditor/2.0.21/powertab.powertabeditor.locale.en-US.yaml new file mode 100644 index 0000000000000..0fc54a0b6dbb2 --- /dev/null +++ b/manifests/p/powertab/powertabeditor/2.0.21/powertab.powertabeditor.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: powertab.powertabeditor +PackageVersion: 2.0.21 +PackageLocale: en-US +Publisher: Power Tab Community +PublisherUrl: https://github.com/powertab +PublisherSupportUrl: https://github.com/powertab/powertabeditor/issues +Author: Cameron White +PackageName: Power Tab Editor +PackageUrl: https://github.com/powertab/powertabeditor +License: GPL-3.0 +LicenseUrl: https://github.com/powertab/powertabeditor/blob/master/COPYING +ShortDescription: View and edit guitar tablature. +Description: |- + Power Tab Editor 2.0 - A powerful cross platform guitar tablature viewer and editor inspired by + the ceased development and missing source code from the original Power Tab Editor. This project + is open-source and written from scratch so that your favorite tabbing platform can continuously + grow with your needs. +Tags: +- audio +- c-plus-plus +- cross-platform +- guitar +- guitar-tabs +- music +- music-composition +- music-notation +- qt +- tablature +ReleaseNotesUrl: https://github.com/powertab/powertabeditor/releases/tag/2.0.21 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/p/powertab/powertabeditor/2.0.21/powertab.powertabeditor.yaml b/manifests/p/powertab/powertabeditor/2.0.21/powertab.powertabeditor.yaml new file mode 100644 index 0000000000000..96ed4364a1c57 --- /dev/null +++ b/manifests/p/powertab/powertabeditor/2.0.21/powertab.powertabeditor.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: powertab.powertabeditor +PackageVersion: 2.0.21 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 36648dad94460e9f108023a86e17c05e5f12bbe1 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Fri, 6 Dec 2024 14:43:18 -0800 Subject: [PATCH 56/58] Automatic deletion of EuSoft.Eshelper 13.7.6.0 (#196816) --- .../13.7.6.0/EuSoft.Eshelper.installer.yaml | 26 ------------- .../EuSoft.Eshelper.locale.en-US.yaml | 38 ------------------- .../EuSoft.Eshelper.locale.zh-CN.yaml | 36 ------------------ .../Eshelper/13.7.6.0/EuSoft.Eshelper.yaml | 8 ---- 4 files changed, 108 deletions(-) delete mode 100644 manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.installer.yaml delete mode 100644 manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.locale.en-US.yaml delete mode 100644 manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.locale.zh-CN.yaml delete mode 100644 manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.yaml diff --git a/manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.installer.yaml b/manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.installer.yaml deleted file mode 100644 index 0766f71c5c109..0000000000000 --- a/manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-5.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: EuSoft.Eshelper -PackageVersion: 13.7.6.0 -InstallerType: nullsoft -Scope: machine -InstallModes: -- interactive -- silentWithProgress -InstallerSwitches: - Silent: /s - SilentWithProgress: /s -UpgradeBehavior: install -FileExtensions: -- bgl -- eudic -- ld2 -- mdx -Installers: -- Architecture: x64 - InstallerUrl: https://static.frdic.com/pkg/ehsetup.exe?t=20241031 - InstallerSha256: 08FAA8B5F517AFFDF661AC25DD61584B4B46B75735D5C9C2A6D545F0985AB55B - ProductCode: Eshelper -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.locale.en-US.yaml b/manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.locale.en-US.yaml deleted file mode 100644 index 671218b67cf68..0000000000000 --- a/manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-5.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: EuSoft.Eshelper -PackageVersion: 13.7.6.0 -PackageLocale: en-US -Publisher: 欧路软件 -PublisherUrl: https://www.esdict.cn/ -PublisherSupportUrl: https://www.eudic.net/v4/es/home/support -PrivacyUrl: https://www.eudic.net/v4/es/home/privacy -Author: Shanghai Qianyan Network Technology Co., Ltd. -PackageName: 西语助手 -PackageUrl: https://www.eudic.net/v4/es/app/eshelper -License: Proprietary -LicenseUrl: https://www.eudic.net/v4/es/home/serviceterms -Copyright: Copyright (c) 2024 Eusoft. All rights reserved. -CopyrightUrl: https://www.eudic.net/v4/es/home/copyright -ShortDescription: An authoritative Spanish dictionary software and essential tool for Spanish learners -Description: Authoritative Spanish dictionary software that provides you with native word pronunciation, Spanish translation, Spanish verb conjugation search and memorization, extended Spanish lexicon, Spanish word memorization, Spanish listening, real-time Spanish radio, Spanish question bank, and Spanish input method, etc. -# Moniker: -Tags: -- babylon -- dictionary -- encyclopedia -- espanol -- lingoes -- mdict -- spanish -- translate -- translation -- translator -# ReleaseNotes: -ReleaseNotesUrl: https://www.eudic.net/v4/es/app/history?appkey=eusoft_eudic_es -PurchaseUrl: https://www.eudic.net/v4/es/home/buy -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.locale.zh-CN.yaml b/manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.locale.zh-CN.yaml deleted file mode 100644 index de213e11f18c2..0000000000000 --- a/manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.locale.zh-CN.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-5.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json - -PackageIdentifier: EuSoft.Eshelper -PackageVersion: 13.7.6.0 -PackageLocale: zh-CN -Publisher: 欧路软件 -PublisherUrl: https://www.esdict.cn/ -PublisherSupportUrl: https://www.eudic.net/v4/es/home/support -PrivacyUrl: https://www.eudic.net/v4/es/home/privacy -Author: 上海倩言网络科技有限公司 -PackageName: 西语助手 -PackageUrl: https://www.eudic.net/v4/es/app/eshelper -License: 专有软件 -LicenseUrl: https://www.eudic.net/v4/es/home/serviceterms -Copyright: 版权所有(c) 2024 欧路软件。保留所有权利。 -CopyrightUrl: https://www.eudic.net/v4/es/home/copyright -ShortDescription: 权威的西语词典软件,西语学习者必备的工具 -Description: 权威的西语词典软件,为您提供单词真人发音、西语翻译、西语动词变位查询及背诵、西语扩充词库、西语背单词、西语听力、实时西语电台、西语题库、西语输入法等。 -# Moniker: -Tags: -- babylon -- lingoes -- mdict -- 百科 -- 翻译 -- 西班牙语 -- 西语 -- 词典 -# ReleaseNotes: -ReleaseNotesUrl: https://www.eudic.net/v4/es/app/history?appkey=eusoft_eudic_es -PurchaseUrl: https://www.eudic.net/v4/es/home/buy -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.6.0 diff --git a/manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.yaml b/manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.yaml deleted file mode 100644 index d06a7e80281d2..0000000000000 --- a/manifests/e/EuSoft/Eshelper/13.7.6.0/EuSoft.Eshelper.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-5.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: EuSoft.Eshelper -PackageVersion: 13.7.6.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 From 16965b0c64cae48362e3659a25862ab9af63f278 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Fri, 6 Dec 2024 14:43:29 -0800 Subject: [PATCH 57/58] Automatic deletion of EuSoft.Dehelper 13.7.6.0 (#196815) --- .../13.7.6.0/EuSoft.Dehelper.installer.yaml | 26 ------------- .../EuSoft.Dehelper.locale.en-US.yaml | 37 ------------------- .../EuSoft.Dehelper.locale.zh-CN.yaml | 35 ------------------ .../Dehelper/13.7.6.0/EuSoft.Dehelper.yaml | 8 ---- 4 files changed, 106 deletions(-) delete mode 100644 manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.installer.yaml delete mode 100644 manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.locale.en-US.yaml delete mode 100644 manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.locale.zh-CN.yaml delete mode 100644 manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.yaml diff --git a/manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.installer.yaml b/manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.installer.yaml deleted file mode 100644 index 39f8b98eb651a..0000000000000 --- a/manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-5.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: EuSoft.Dehelper -PackageVersion: 13.7.6.0 -InstallerType: nullsoft -Scope: machine -InstallModes: -- interactive -- silentWithProgress -InstallerSwitches: - Silent: /s - SilentWithProgress: /s -UpgradeBehavior: install -FileExtensions: -- bgl -- eudic -- ld2 -- mdx -Installers: -- Architecture: x64 - InstallerUrl: https://static.frdic.com/pkg/dhsetup.exe?t=20241031 - InstallerSha256: 4EC26EA31418CD76F4FD35345363D76008CBFDD185065ED35E2B5C96AD8542C8 - ProductCode: Dehelper -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.locale.en-US.yaml b/manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.locale.en-US.yaml deleted file mode 100644 index 4610c3133b062..0000000000000 --- a/manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-5.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: EuSoft.Dehelper -PackageVersion: 13.7.6.0 -PackageLocale: en-US -Publisher: 欧路软件 -PublisherUrl: https://www.frdic.com/ -PublisherSupportUrl: https://www.eudic.net/v4/de/home/support -PrivacyUrl: https://www.eudic.net/v4/de/home/privacy -Author: Shanghai Qianyan Network Technology Co., Ltd. -PackageName: 德语助手 -PackageUrl: https://www.eudic.net/v4/de/app/dehelper -License: Proprietary -LicenseUrl: https://www.eudic.net/v4/de/home/serviceterms -Copyright: Copyright (c) 2024 Eusoft. All rights reserved. -CopyrightUrl: https://www.eudic.net/v4/de/home/copyright -ShortDescription: An authoritative German dictionary software and essential tool for German learners -Description: Authoritative German dictionary software that provides you with real-time word pronunciation, German GPT translation, German grammar correction, German verb conjugation search and memorization, extended German lexicon, German vocabulary memorization, German listening, real-time German radio, German question bank, and German input method, etc. -# Moniker: -Tags: -- babylon -- dictionary -- encyclopedia -- german -- lingoes -- mdict -- translate -- translation -- translator -# ReleaseNotes: -ReleaseNotesUrl: https://www.eudic.net/v4/de/app/history?appkey=eusoft_eudic_de -PurchaseUrl: https://www.eudic.net/v4/de/home/buy -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.locale.zh-CN.yaml b/manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.locale.zh-CN.yaml deleted file mode 100644 index e8083e3771231..0000000000000 --- a/manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.locale.zh-CN.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-5.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json - -PackageIdentifier: EuSoft.Dehelper -PackageVersion: 13.7.6.0 -PackageLocale: zh-CN -Publisher: 欧路软件 -PublisherUrl: https://www.frdic.com/ -PublisherSupportUrl: https://www.eudic.net/v4/de/home/support -PrivacyUrl: https://www.eudic.net/v4/de/home/privacy -Author: 上海倩言网络科技有限公司 -PackageName: 德语助手 -PackageUrl: https://www.eudic.net/v4/de/app/dehelper -License: 专有软件 -LicenseUrl: https://www.eudic.net/v4/de/home/serviceterms -Copyright: 版权所有(c) 2024 欧路软件。保留所有权利。 -CopyrightUrl: https://www.eudic.net/v4/de/home/copyright -ShortDescription: 权威的德语词典软件,德语学习者必备的工具 -Description: 权威的德语词典软件,为您提供单词真人发音、德语 GPT 翻译、德语语法批改、德语动词变位查询及背诵、德语扩充词库、德语背单词、德语听力、实时德语电台、德语题库、德语输入法等。 -# Moniker: -Tags: -- babylon -- lingoes -- mdict -- 德语 -- 百科 -- 翻译 -- 词典 -# ReleaseNotes: -ReleaseNotesUrl: https://www.eudic.net/v4/de/app/history?appkey=eusoft_eudic_de -PurchaseUrl: https://www.eudic.net/v4/de/home/buy -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.6.0 diff --git a/manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.yaml b/manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.yaml deleted file mode 100644 index d69d38e9999bd..0000000000000 --- a/manifests/e/EuSoft/Dehelper/13.7.6.0/EuSoft.Dehelper.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-5.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: EuSoft.Dehelper -PackageVersion: 13.7.6.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 From 0bd2f76a081f0e409de0be19fa215909dac79e6e Mon Sep 17 00:00:00 2001 From: Kaleb Luedtke Date: Fri, 6 Dec 2024 17:04:11 -0600 Subject: [PATCH 58/58] Add Package-Metadata label to moderator triggers (#196813) --- .github/policies/moderatorTriggers.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/policies/moderatorTriggers.yml b/.github/policies/moderatorTriggers.yml index 6820a1e782c80..306d46a177d1a 100644 --- a/.github/policies/moderatorTriggers.yml +++ b/.github/policies/moderatorTriggers.yml @@ -375,6 +375,14 @@ configuration: then: - addLabel: label: Network-Blocker + # Package-Metadata + - if: + - commentContains: + pattern: '\[[Pp]olicy\]\s+[pP]ackage[\s-][mM]etadata' + isRegex: True + then: + - addLabel: + label: Package-Metadata # Package-Request - if: - commentContains: