diff --git a/.github/workflows/pesterTests.yaml b/.github/workflows/pesterTests.yaml new file mode 100644 index 0000000000000..5b6944587a06d --- /dev/null +++ b/.github/workflows/pesterTests.yaml @@ -0,0 +1,51 @@ +name: Pester Tests + +on: + pull_request: + branches: + - master + paths: + - "**/*.ps1" + - "**/*.psm1" + - "**/*.psd1" + push: + paths: + - "**/*.ps1" + - "**/*.psm1" + - "**/*.psd1" + +permissions: + contents: read # Needed to check out the code + pull-requests: read # Needed to read pull request details + +jobs: + test: + runs-on: windows-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Install Pester + run: | + # Pester 5.x is already included in Windows runners, but ensure latest version + Install-Module -Name Pester -Force -SkipPublisherCheck -Scope CurrentUser -MinimumVersion 5.0.0 + - name: Run Pester Tests + run: | + # Find and run all Pester test files + $testFiles = Get-ChildItem -Recurse -Filter *.Tests.ps1 + if ($testFiles) { + Write-Host "Found $($testFiles.Count) test file(s)" + foreach ($testFile in $testFiles) { + Write-Host "Running tests in: $($testFile.FullName)" + } + + # Run all tests + $config = New-PesterConfiguration + $config.Run.Path = $testFiles.FullName + $config.Run.Exit = $true + $config.Output.Verbosity = 'Detailed' + $config.TestResult.Enabled = $true + + Invoke-Pester -Configuration $config + } else { + Write-Host "No Pester test files found." + } diff --git a/.github/workflows/scriptAnalyzer.yaml b/.github/workflows/scriptAnalyzer.yaml index d2d15f4e1cc4b..8cb2ea488c8eb 100644 --- a/.github/workflows/scriptAnalyzer.yaml +++ b/.github/workflows/scriptAnalyzer.yaml @@ -7,10 +7,12 @@ on: paths: - "**/*.ps1" - "**/*.psm1" + - "**/*.psd1" push: paths: - "**/*.ps1" - "**/*.psm1" + - "**/*.psd1" permissions: contents: read # Needed to check out the code diff --git a/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/README.md b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/README.md new file mode 100644 index 0000000000000..c5b82d3f02d7d --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/README.md @@ -0,0 +1,94 @@ +# YamlCreate.InstallerDetection Tests + +This directory contains Pester tests for the YamlCreate.InstallerDetection PowerShell module. + +## Overview + +The test suite validates the functionality of the installer detection module, which provides functions to: +- Parse PE file structures +- Detect various installer types (ZIP, MSIX, MSI, WIX, Nullsoft, Inno, Burn) +- Identify font files +- Resolve installer types from file paths + +## Running the Tests + +### Prerequisites + +- PowerShell 7.0 or later +- Pester 5.x (included with PowerShell 7+) + +### Run All Tests + +From the module directory, run: + +```powershell +Invoke-Pester -Path ./YamlCreate.InstallerDetection.Tests.ps1 +``` + +### Run Tests with Detailed Output + +For more detailed test output: + +```powershell +Invoke-Pester -Path ./YamlCreate.InstallerDetection.Tests.ps1 -Output Detailed +``` + +### Run Tests with Code Coverage + +To see code coverage metrics: + +```powershell +Invoke-Pester -Path ./YamlCreate.InstallerDetection.Tests.ps1 -CodeCoverage ./YamlCreate.InstallerDetection.psm1 +``` + +## Test Structure + +The test suite is organized into the following sections: + +### Module Tests +- Module import validation +- Exported functions verification + +### Function Tests +- **Get-OffsetBytes**: Tests for byte array extraction with various offsets and endianness +- **Get-PESectionTable**: Tests for PE file parsing +- **Test-IsZip**: Tests for ZIP file detection +- **Test-IsMsix**: Tests for MSIX/APPX detection +- **Test-IsMsi**: Tests for MSI installer detection +- **Test-IsWix**: Tests for WIX installer detection +- **Test-IsNullsoft**: Tests for Nullsoft installer detection +- **Test-IsInno**: Tests for Inno Setup installer detection +- **Test-IsBurn**: Tests for Burn installer detection +- **Test-IsFont**: Tests for font file detection (TTF, OTF, TTC) +- **Resolve-InstallerType**: Tests for the main installer type resolution function + +## Known Limitations + +Some tests are skipped due to complexity or external dependencies: + +1. **ZIP Archive Tests**: Tests that require complete valid ZIP archives are skipped as they would need complex ZIP structure generation +2. **PE File Tests**: Some PE-related tests are skipped when they would require reading non-existent files +3. **External Dependencies**: The module relies on external commands (`Get-MSITable`, `Get-MSIProperty`, `Get-Win32ModuleResource`) that are stubbed in the test environment + +## Test Coverage + +Current test coverage includes: +- 32 passing tests +- 3 skipped tests (require complex setup) +- Covers all 11 exported functions +- Tests both positive and negative scenarios +- Validates edge cases and error handling + +## Contributing + +When adding new functions to the module: +1. Add corresponding tests to `YamlCreate.InstallerDetection.Tests.ps1` +2. Follow the existing test structure (Describe → Context → It blocks) +3. Use descriptive test names that explain what is being tested +4. Include both positive and negative test cases +5. Clean up any temporary files created during tests + +## Additional Resources + +- [Pester Documentation](https://pester.dev/) +- [PowerShell Testing Best Practices](https://pester.dev/docs/usage/test-file-structure) diff --git a/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.Tests.ps1 b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.Tests.ps1 new file mode 100644 index 0000000000000..eb95354aefb96 --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.Tests.ps1 @@ -0,0 +1,388 @@ +BeforeAll { + # Import the module to test + $ModulePath = Split-Path -Parent $PSCommandPath + Import-Module (Join-Path $ModulePath 'YamlCreate.InstallerDetection.psd1') -Force + + # Create stub functions for external dependencies that may not be available + # These are typically provided by external modules like MSI or Windows SDK tools + $Script:AddedGetMSITable = $false + if (-not (Get-Command Get-MSITable -ErrorAction SilentlyContinue)) { + function Global:Get-MSITable { + param([string]$Path) + return $null + } + $Script:AddedGetMSITable = $true + } + + $Script:AddedGetMSIProperty = $false + if (-not (Get-Command Get-MSIProperty -ErrorAction SilentlyContinue)) { + function Global:Get-MSIProperty { + param([string]$Path, [string]$Property) + return $null + } + $Script:AddedGetMSIProperty = $true + } + + $Script:AddedGetWin32ModuleResource = $false + if (-not (Get-Command Get-Win32ModuleResource -ErrorAction SilentlyContinue)) { + function Global:Get-Win32ModuleResource { + param([string]$Path, [switch]$DontLoadResource) + return @() + } + $Script:AddedGetWin32ModuleResource = $true + } +} + +AfterAll { + # Clean up stub functions that were created in BeforeAll to prevent them from persisting in the session + if ($Script:AddedGetMSITable) { Remove-Item Function:\Get-MSITable -ErrorAction SilentlyContinue } + if ($Script:AddedGetMSIProperty) { Remove-Item Function:\Get-MSIProperty -ErrorAction SilentlyContinue } + if ($Script:AddedGetWin32ModuleResource) { Remove-Item Function:\Get-Win32ModuleResource -ErrorAction SilentlyContinue } +} + +Describe 'YamlCreate.InstallerDetection Module' { + Context 'Module Import' { + It 'Should import the module successfully' { + Get-Module 'YamlCreate.InstallerDetection' | Should -Not -BeNullOrEmpty + } + + It 'Should export all expected functions' { + $ExportedFunctions = (Get-Module 'YamlCreate.InstallerDetection').ExportedFunctions.Keys + $ExpectedFunctions = @( + 'Get-OffsetBytes' + 'Get-PESectionTable' + 'Test-IsZip' + 'Test-IsMsix' + 'Test-IsMsi' + 'Test-IsWix' + 'Test-IsNullsoft' + 'Test-IsInno' + 'Test-IsBurn' + 'Test-IsFont' + 'Resolve-InstallerType' + ) + + foreach ($Function in $ExpectedFunctions) { + $ExportedFunctions | Should -Contain $Function + } + } + } +} + +Describe 'Get-OffsetBytes' { + Context 'Valid input' { + It 'Should extract bytes at the correct offset without little endian' { + $ByteArray = [byte[]](0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08) + $Result = Get-OffsetBytes -ByteArray $ByteArray -Offset 2 -Length 3 + $Result | Should -Be @(0x03, 0x04, 0x05) + } + + It 'Should extract bytes with little endian ordering' { + $ByteArray = [byte[]](0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08) + $Result = Get-OffsetBytes -ByteArray $ByteArray -Offset 2 -Length 3 -LittleEndian $true + $Result | Should -Be @(0x05, 0x04, 0x03) + } + + It 'Should extract a single byte' { + $ByteArray = [byte[]](0x01, 0x02, 0x03, 0x04) + $Result = Get-OffsetBytes -ByteArray $ByteArray -Offset 1 -Length 1 + $Result | Should -Be @(0x02) + } + + It 'Should extract bytes from the start of array' { + $ByteArray = [byte[]](0x0A, 0x0B, 0x0C, 0x0D) + $Result = Get-OffsetBytes -ByteArray $ByteArray -Offset 0 -Length 2 + $Result | Should -Be @(0x0A, 0x0B) + } + + It 'Should extract bytes to the end of array' { + $ByteArray = [byte[]](0x01, 0x02, 0x03, 0x04) + $Result = Get-OffsetBytes -ByteArray $ByteArray -Offset 2 -Length 2 + $Result | Should -Be @(0x03, 0x04) + } + } + + Context 'Edge cases' { + It 'Should return empty array when offset exceeds array length' { + $ByteArray = [byte[]](0x01, 0x02, 0x03, 0x04) + $Result = Get-OffsetBytes -ByteArray $ByteArray -Offset 10 -Length 2 + $Result | Should -BeNullOrEmpty + } + } +} + +Describe 'Get-PESectionTable' { + Context 'Invalid files' { + It 'Should return null for non-existent file' -Skip { + # Skipping as it attempts to read a non-existent file which causes errors + $Result = Get-PESectionTable -Path 'C:\NonExistent\File.exe' + $Result | Should -BeNullOrEmpty + } + + It 'Should return null for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a PE file' + $Result = Get-PESectionTable -Path $TempFile.FullName + $Result | Should -BeNullOrEmpty + Remove-Item $TempFile.FullName -Force + } + + It 'Should return null for file without MZ signature' { + $TempFile = New-TemporaryFile + [byte[]](0x00, 0x00, 0x00, 0x00) * 16 | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Get-PESectionTable -Path $TempFile.FullName + $Result | Should -BeNullOrEmpty + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsZip' { + Context 'Valid ZIP files' { + It 'Should return true for a valid ZIP file' { + $TempFile = New-TemporaryFile + # ZIP file signature: PK\x03\x04 + $ZipHeader = [byte[]](0x50, 0x4B, 0x03, 0x04) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $ZipHeader -AsByteStream + $Result = Test-IsZip -Path $TempFile.FullName + $Result | Should -Be $true + Remove-Item $TempFile.FullName -Force + } + } + + Context 'Invalid ZIP files' { + It 'Should return false for a non-ZIP file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a ZIP file' + $Result = Test-IsZip -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + + It 'Should return false for a file with incorrect header' { + $TempFile = New-TemporaryFile + [byte[]](0x00, 0x01, 0x02, 0x03) | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Test-IsZip -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsMsix' { + Context 'Non-ZIP files' { + It 'Should return false for a non-ZIP file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a ZIP file' + $Result = Test-IsMsix -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } + + Context 'ZIP files without MSIX indicators' { + It 'Should return false for a regular ZIP file without MSIX indicators' -Skip { + # This test requires creating a complete ZIP archive + # Skipped as it requires significant setup + } + } +} + +Describe 'Test-IsMsi' { + Context 'Non-MSI files' { + It 'Should return false for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not an MSI file' + $Result = Test-IsMsi -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + + It 'Should return false for a random binary file' { + $TempFile = New-TemporaryFile + [byte[]](0x00, 0x01, 0x02, 0x03) * 25 | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Test-IsMsi -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsWix' { + Context 'Non-MSI files' { + It 'Should return false for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a WIX file' + $Result = Test-IsWix -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsNullsoft' { + Context 'Non-PE files' { + It 'Should return false for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a PE file' + $Result = Test-IsNullsoft -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + + It 'Should return false for a file without PE structure' { + $TempFile = New-TemporaryFile + [byte[]](0x00, 0x01, 0x02, 0x03) * 25 | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Test-IsNullsoft -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsInno' { + Context 'Non-PE files' { + It 'Should return false for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a PE file' + $Result = Test-IsInno -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsBurn' { + Context 'Non-PE files' { + It 'Should return false for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a PE file' + $Result = Test-IsBurn -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + + It 'Should return false for a random binary file' { + $TempFile = New-TemporaryFile + [byte[]](0x00, 0x01, 0x02, 0x03) * 25 | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Test-IsBurn -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsFont' { + Context 'Valid font files' { + It 'Should return true for a TrueType font (TTF)' { + $TempFile = New-TemporaryFile + # TTF signature: 0x00, 0x01, 0x00, 0x00 + $TTFHeader = [byte[]](0x00, 0x01, 0x00, 0x00) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $TTFHeader -AsByteStream + $Result = Test-IsFont -Path $TempFile.FullName + $Result | Should -Be $true + Remove-Item $TempFile.FullName -Force + } + + It 'Should return true for an OpenType font (OTF)' { + $TempFile = New-TemporaryFile + # OTF signature: OTTO (0x4F, 0x54, 0x54, 0x4F) + $OTFHeader = [byte[]](0x4F, 0x54, 0x54, 0x4F) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $OTFHeader -AsByteStream + $Result = Test-IsFont -Path $TempFile.FullName + $Result | Should -Be $true + Remove-Item $TempFile.FullName -Force + } + + It 'Should return true for a TrueType Collection (TTC)' { + $TempFile = New-TemporaryFile + # TTC signature: ttcf (0x74, 0x74, 0x63, 0x66) + $TTCHeader = [byte[]](0x74, 0x74, 0x63, 0x66) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $TTCHeader -AsByteStream + $Result = Test-IsFont -Path $TempFile.FullName + $Result | Should -Be $true + Remove-Item $TempFile.FullName -Force + } + } + + Context 'Non-font files' { + It 'Should return false for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a font file' + $Result = Test-IsFont -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + + It 'Should return false for a file with incorrect header' { + $TempFile = New-TemporaryFile + [byte[]](0xFF, 0xFF, 0xFF, 0xFF) | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Test-IsFont -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Resolve-InstallerType' { + Context 'Font files' { + It 'Should identify TrueType font files' { + $TempFile = New-TemporaryFile + $TTFHeader = [byte[]](0x00, 0x01, 0x00, 0x00) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $TTFHeader -AsByteStream + $Result = Resolve-InstallerType -Path $TempFile.FullName + $Result | Should -Be 'font' + Remove-Item $TempFile.FullName -Force + } + + It 'Should identify OpenType font files' { + $TempFile = New-TemporaryFile + $OTFHeader = [byte[]](0x4F, 0x54, 0x54, 0x4F) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $OTFHeader -AsByteStream + $Result = Resolve-InstallerType -Path $TempFile.FullName + $Result | Should -Be 'font' + Remove-Item $TempFile.FullName -Force + } + + It 'Should identify TrueType Collection files' { + $TempFile = New-TemporaryFile + $TTCHeader = [byte[]](0x74, 0x74, 0x63, 0x66) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $TTCHeader -AsByteStream + $Result = Resolve-InstallerType -Path $TempFile.FullName + $Result | Should -Be 'font' + Remove-Item $TempFile.FullName -Force + } + } + + Context 'ZIP files' { + It 'Should identify basic ZIP files (or MSIX based on internal structure)' -Skip { + # This test requires a complete valid ZIP structure which Test-IsMsix will try to extract + # Skipping as creating a proper ZIP archive is complex and Test-IsMsix will fail on malformed ZIPs + $TempFile = New-TemporaryFile + $ZipHeader = [byte[]](0x50, 0x4B, 0x03, 0x04) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $ZipHeader -AsByteStream + $Result = Resolve-InstallerType -Path $TempFile.FullName + # Could be 'zip' or 'msix' depending on whether Test-IsMsix can successfully extract and check + $Result | Should -BeIn @('zip', 'msix', $null) + Remove-Item $TempFile.FullName -Force -ErrorAction SilentlyContinue + } + } + + Context 'Unknown files' { + It 'Should return null for unknown file types' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is an unknown file type' + $Result = Resolve-InstallerType -Path $TempFile.FullName + $Result | Should -BeNullOrEmpty + Remove-Item $TempFile.FullName -Force + } + + It 'Should return null for a random binary file' { + $TempFile = New-TemporaryFile + [byte[]](0xFF, 0xAA, 0xBB, 0xCC) * 25 | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Resolve-InstallerType -Path $TempFile.FullName + $Result | Should -BeNullOrEmpty + Remove-Item $TempFile.FullName -Force + } + } +} diff --git a/manifests/1/115/115Chrome/36.0.0/115.115Chrome.locale.en-US.yaml b/manifests/1/115/115Chrome/36.0.0/115.115Chrome.locale.en-US.yaml index a56321fee4d5f..3dc7a1f672c53 100644 --- a/manifests/1/115/115Chrome/36.0.0/115.115Chrome.locale.en-US.yaml +++ b/manifests/1/115/115Chrome/36.0.0/115.115Chrome.locale.en-US.yaml @@ -25,5 +25,7 @@ Tags: - upload - web - webpage +- prc +- china ManifestType: locale ManifestVersion: 1.10.0 diff --git a/manifests/1/123/123pan/3.1.3.0/123.123pan.locale.en-US.yaml b/manifests/1/123/123pan/3.1.3.0/123.123pan.locale.en-US.yaml index 07ccc2c37990a..40b33898f1c8d 100644 --- a/manifests/1/123/123pan/3.1.3.0/123.123pan.locale.en-US.yaml +++ b/manifests/1/123/123pan/3.1.3.0/123.123pan.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://www.123pan.com/ License: Freeware LicenseUrl: https://www.123pan.com/UserAgreement Copyright: Copyright (c) 2026 123pan -ShortDescription: Secure and trusted cloud storage content distribution platform +ShortDescription: Secure and trusted cloud storage content distribution platform. Description: 123pan is a cloud storage service product with large space, unlimited speed, no ads, and focus on large file transfer and distribution. Tags: - backup @@ -27,6 +27,8 @@ Tags: - share - sync - upload +- prc +- china Documentations: - DocumentLabel: FAQ DocumentUrl: https://www.123pan.com/faq diff --git a/manifests/3/360/360SE/16.1.2000.64/360.360SE.locale.en-US.yaml b/manifests/3/360/360SE/16.1.2000.64/360.360SE.locale.en-US.yaml index ea7a6e434a7c7..0cf4541cdfa4c 100644 --- a/manifests/3/360/360SE/16.1.2000.64/360.360SE.locale.en-US.yaml +++ b/manifests/3/360/360SE/16.1.2000.64/360.360SE.locale.en-US.yaml @@ -15,7 +15,7 @@ License: Freeware LicenseUrl: https://www.360.cn/xukexieyi.html#liulanqi Copyright: (C) 360.cn All Rights Reserved. CopyrightUrl: https://www.360.cn/about/banquanshengming.html -ShortDescription: A browser by Qihoo 360 with safe in mind +ShortDescription: A browser by Qihoo 360 with safety in mind. Description: 360 Safe Browser (360SE) is a powerful, easy-to-use, fast, and safe browser suitable for online shopping. It uses advanced malicious URL blocking technology which can automatically block malicious URLs such as hijackings, frauds, phishing bank sites, etc. Tags: - browser @@ -24,6 +24,8 @@ Tags: - internet-explorer - web - webpage +- prc +- china ReleaseNotesUrl: https://bbs.360.cn/thread-16123090-1-1.html Documentations: - DocumentLabel: FAQ diff --git a/manifests/3/360/NamiAI/1.3.1563.64/360.NamiAI.locale.en-US.yaml b/manifests/3/360/NamiAI/1.3.1563.64/360.NamiAI.locale.en-US.yaml index 7b8823a254c4d..98140a495f607 100644 --- a/manifests/3/360/NamiAI/1.3.1563.64/360.NamiAI.locale.en-US.yaml +++ b/manifests/3/360/NamiAI/1.3.1563.64/360.NamiAI.locale.en-US.yaml @@ -1,16 +1,19 @@ -# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: 360.NamiAI PackageVersion: 1.3.1563.64 PackageLocale: en-US -Author: Beijing Qihoo Technology Co., Ltd. +Author: Beijing Qihoo Technology Co., Ltd. License: Freeware -ShortDescription: Next-gen super search, delivering expert-level results instantly +ShortDescription: Next-gen super search, delivering expert-level results instantly. Tags: - ai - chatbot - large-language-model - llm +- artificial-intelligence +- artificialintelligence +- prc +- china ManifestType: locale ManifestVersion: 1.12.0 diff --git a/manifests/7/7zip/7zip/Alpha/exe/.validation b/manifests/7/7zip/7zip/Alpha/exe/.validation deleted file mode 100644 index f627f81107372..0000000000000 --- a/manifests/7/7zip/7zip/Alpha/exe/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"09cd32cb-5fe7-4b0d-89d4-872d596d0ef6","TestPlan":"Validation-Unapproved-URL","PackagePath":"manifests/7/7zip/7zip/Alpha/exe/21.03 beta","CommitId":"73ee7e6d1b80f60b347ce90a8134b0f09d5ff843"}]} \ No newline at end of file diff --git a/manifests/7/7zip/7zip/Alpha/msi/.validation b/manifests/7/7zip/7zip/Alpha/msi/.validation deleted file mode 100644 index 4c5b9a2e2111c..0000000000000 --- a/manifests/7/7zip/7zip/Alpha/msi/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"ad716924-53dd-47e8-a923-5dc21c4838c0","TestPlan":"Validation-Unapproved-URL","PackagePath":"manifests/7/7zip/7zip/Alpha/msi/21.02.00.0","CommitId":"c40da304ceac9821e5f5a02a7bba7588b437becf"}]} \ No newline at end of file diff --git a/manifests/a/AngryMiao/AMMaster/1.3.6/AngryMiao.AMMaster.locale.en-US.yaml b/manifests/a/AngryMiao/AMMaster/1.3.6/AngryMiao.AMMaster.locale.en-US.yaml index 57ac2a77f5d10..7d4866df71bb2 100644 --- a/manifests/a/AngryMiao/AMMaster/1.3.6/AngryMiao.AMMaster.locale.en-US.yaml +++ b/manifests/a/AngryMiao/AMMaster/1.3.6/AngryMiao.AMMaster.locale.en-US.yaml @@ -14,9 +14,11 @@ PackageUrl: https://www.angrymiao.com/en/am-master/ License: Freeware LicenseUrl: https://www.angrymiao.com/en/terms-of-service/ Copyright: Copyright ©2026 Angry Miao -ShortDescription: Angry Miao Device Center +ShortDescription: Angry Miao Device Center. Tags: - angrymiao +- prc +- china ReleaseNotes: Optimize known issues ReleaseNotesUrl: https://www.angrymiao.com/en/am-master-history/ ManifestType: defaultLocale diff --git a/manifests/a/Apipost/ApiPost/8.2.6/Apipost.ApiPost.locale.en-US.yaml b/manifests/a/Apipost/ApiPost/8.2.6/Apipost.ApiPost.locale.en-US.yaml index 81d4cb87b022f..302b5424e49d1 100644 --- a/manifests/a/Apipost/ApiPost/8.2.6/Apipost.ApiPost.locale.en-US.yaml +++ b/manifests/a/Apipost/ApiPost/8.2.6/Apipost.ApiPost.locale.en-US.yaml @@ -5,7 +5,7 @@ PackageIdentifier: Apipost.ApiPost PackageVersion: 8.2.6 PackageLocale: en-US License: Proprietary -ShortDescription: AI-driven next-generation API development management tool +ShortDescription: AI-driven next-generation API development management tool. Tags: - api - automation @@ -17,6 +17,8 @@ Tags: - network - request - response +- prc +- china ReleaseNotes: |- 🔥 新增 管理后台:回收站支持按删除时间进行正序/倒序排列。 diff --git a/manifests/a/Appest/Dida/8.0.5.0/Appest.Dida.locale.en-US.yaml b/manifests/a/Appest/Dida/8.0.5.0/Appest.Dida.locale.en-US.yaml index 9e5072a18997d..e0d3da1aa1f94 100644 --- a/manifests/a/Appest/Dida/8.0.5.0/Appest.Dida.locale.en-US.yaml +++ b/manifests/a/Appest/Dida/8.0.5.0/Appest.Dida.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://www.dida365.com License: Proprietary LicenseUrl: https://dida365.com/about/tos Copyright: © 2026 DIDA Team All rights reserved -ShortDescription: To-Do List & Calendar +ShortDescription: To-Do List & Calendar. Description: |- Dida is a powerful to-do & task management app with seamless cloud synchronization across all your devices. Whether you need to schedule an agenda, make memos, share shopping lists, collaborate in a team, or even develop a new habit, Dida is always here to help you get stuff done and keep life on track. @@ -32,6 +32,8 @@ Tags: - task - to-do - todo +- prc +- china ReleaseNotes: '- General fixes and improvements.' PurchaseUrl: https://www.dida365.com/about/upgrade ManifestType: defaultLocale diff --git a/manifests/a/AriesOxO/piz/0.3.4/AriesOxO.piz.installer.yaml b/manifests/a/AriesOxO/piz/0.3.4/AriesOxO.piz.installer.yaml new file mode 100644 index 0000000000000..40d5f9272a431 --- /dev/null +++ b/manifests/a/AriesOxO/piz/0.3.4/AriesOxO.piz.installer.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: AriesOxO.piz +PackageVersion: 0.3.4 +Commands: +- piz +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/AriesOxO/piz/releases/download/v0.3.4/piz-x86_64-pc-windows-msvc.msi + InstallerSha256: C6962B3DDFE5FA1C78771E116F30E790DDD9D98D633CBD4970AAB102D15979D6 + InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" + ProductCode: '{2CCB6CCD-E566-45AB-8933-0958F1310A51}' + AppsAndFeaturesEntries: + - UpgradeCode: '{A1B2C3D4-E5F6-7890-ABCD-EF1234567890}' +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: piz.exe + InstallerUrl: https://github.com/AriesOxO/piz/releases/download/v0.3.4/piz-x86_64-pc-windows-msvc.zip + InstallerSha256: 22B88DECA194134828E7628C8F95613C23B9851FFF0B6E0A21681B788B64BB88 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AriesOxO/piz/0.3.4/AriesOxO.piz.locale.en-US.yaml b/manifests/a/AriesOxO/piz/0.3.4/AriesOxO.piz.locale.en-US.yaml new file mode 100644 index 0000000000000..cad57c1c97bd4 --- /dev/null +++ b/manifests/a/AriesOxO/piz/0.3.4/AriesOxO.piz.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: AriesOxO.piz +PackageVersion: 0.3.4 +PackageLocale: en-US +ShortDescription: 'piz solves one problem: you know what you want to do, but not the exact command. Describe it in plain language, and piz translates it into the right shell command for your OS and shell.' +Description: |- + piz solves one problem: you know what you want to do, but not the exact command. Describe it in plain language, and piz translates it into the right shell command for your OS and shell. + Features + - Natural Language to Command - Describe what you want, get the exact command + - Multi-Backend LLM - OpenAI, Claude, Gemini, Ollama + 12 OpenAI-compatible providers (DeepSeek, SiliconFlow, OpenRouter, Moonshot, Zhipu/GLM, Qianfan, DashScope, Mistral, Together, Minimax, BytePlus, and more) + - Security Hardening - Three-layer protection: prompt-level refusal for non-command input, injection detection (base64 payloads, env exfiltration, reverse shells, curl config attacks), and regex-based danger classification + - Danger Detection - Dual-layer: regex patterns + LLM classification. Dangerous commands always require explicit confirmation + - Command Explain - Break down any command into its components with piz -e + - Command Fix - Auto-diagnose and fix failed commands with piz fix, with auto-retry (up to 3 attempts) + - Interactive Chat - Multi-turn chat mode with context (piz chat), with /help, /clear, /history commands and persistent history + - Multi-Candidate - Generate multiple command options with -n and pick your preferred one + - Local Cache - SQLite cache with TTL + LRU eviction, max entries limit, repeated queries return instantly + - Execution History - Track all executed commands with piz history, searchable + - Shell Integration - piz init generates shell wrapper functions so cd/export/source work correctly in the current shell (bash, zsh, fish, PowerShell), with built-in aliases (p, pf, pc) + - Eval Mode - --eval outputs confirmed command for shell wrapper to eval, used by shell integration + - Shell Completions - Generate completions for bash, zsh, fish, and PowerShell + - Pipe Mode - Script-friendly output with --pipe for integration with other tools + - Multi-Language UI - Chinese, English interface with localized security messages + - Cross-Platform - Windows (PowerShell/cmd), macOS, Linux (bash/zsh/fish) with non-invasive encoding (no chcp/OutputEncoding modification) + - Interactive Setup - First-run wizard with provider presets, no manual config editing needed + - NO_COLOR Support - Respects the NO_COLOR environment variable + - API Resilience - Automatic retry with exponential backoff for 429/5xx errors +Tags: +- ai +- command-line +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AriesOxO/piz/0.3.4/AriesOxO.piz.locale.zh-CN.yaml b/manifests/a/AriesOxO/piz/0.3.4/AriesOxO.piz.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e65145c91822e --- /dev/null +++ b/manifests/a/AriesOxO/piz/0.3.4/AriesOxO.piz.locale.zh-CN.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: AriesOxO.piz +PackageVersion: 0.3.4 +PackageLocale: zh-CN +Publisher: AriesOxO +PublisherUrl: https://ariesoxo.github.io/ +PublisherSupportUrl: https://github.com/AriesOxO/piz/issues +PackageName: piz +PackageUrl: https://github.com/AriesOxO/piz +License: MIT +LicenseUrl: https://github.com/AriesOxO/piz/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 AriesOxO +ShortDescription: piz 解决一个问题:你知道想做什么,但记不住具体命令。用自然语言描述你的需求,piz 自动翻译成适合当前系统和 Shell 的命令。 +Description: |- + piz 解决一个问题:你知道想做什么,但记不住具体命令。用自然语言描述你的需求,piz 自动翻译成适合当前系统和 Shell 的命令。 + 核心功能 + - 自然语言转命令 — 描述需求,得到精确命令 + - 多 LLM 后端 — 支持 OpenAI、Claude、Gemini、Ollama + 12 个 OpenAI 兼容供应商(DeepSeek、硅基流动、OpenRouter、Moonshot、智谱 GLM、百度千帆、阿里 DashScope、Mistral、Together、Minimax、字节 BytePlus 等) + - 安全加固 — 三层防护:Prompt 层拒绝非命令输入、注入检测(base64 载荷、环境变量泄露、反弹 Shell、curl 配置攻击)、正则危险分级 + - 危险命令检测 — 正则 + LLM 双重防护,危险命令强制二次确认,无法跳过 + - 命令解释 — piz -e 'command' 逐项拆解命令含义 + - 命令纠错 — piz fix 自动诊断并修复失败命令,支持自动重试(最多 3 次) + - 交互式对话 — piz chat 多轮对话模式,支持 /help、/clear、/history 命令和历史持久化 + - 多候选命令 — -n 参数生成多个命令方案,自主选择最优方案 + - 本地缓存 — SQLite 缓存 + TTL 过期 + LRU 淘汰 + 最大条目数限制,重复查询秒返回 + - 执行历史 — piz history 查看和搜索所有执行过的命令 + - Shell 集成 — piz init 生成 Shell 包装函数,使 cd/export/source 在当前 Shell 中正确生效(bash、zsh、fish、PowerShell),内置便捷别名(p、pf、pc) + - Eval 模式 — --eval 将确认后的命令输出给 Shell 包装函数执行 + - Shell 补全 — 支持 bash、zsh、fish、PowerShell 自动补全 + - 管道模式 — --pipe 纯命令输出,便于脚本集成 + - 多语言界面 — 中文、英文,安全提示信息全面国际化 + - 跨平台 — Windows (PowerShell/cmd)、macOS、Linux (bash/zsh/fish),零侵入编码处理(不修改 chcp/OutputEncoding) + - 交互式配置 — 首次运行自动引导,内置供应商预设,无需手动编辑配置 + - NO_COLOR 支持 — 尊重 NO_COLOR 环境变量 + - API 容错 — 429/5xx 错误自动重试 + 指数退避 +Tags: +- 人工智能 +- 命令行工具 +ReleaseNotes: 'Full Changelog: https://github.com/AriesOxO/piz/compare/v0.3.3...v0.3.4' +ReleaseNotesUrl: https://github.com/AriesOxO/piz/releases/tag/v0.3.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AriesOxO/piz/0.3.4/AriesOxO.piz.yaml b/manifests/a/AriesOxO/piz/0.3.4/AriesOxO.piz.yaml new file mode 100644 index 0000000000000..3f65f77c167c1 --- /dev/null +++ b/manifests/a/AriesOxO/piz/0.3.4/AriesOxO.piz.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: AriesOxO.piz +PackageVersion: 0.3.4 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/Baidu/BaiduNetdisk/8.3.8/Baidu.BaiduNetdisk.locale.en-US.yaml b/manifests/b/Baidu/BaiduNetdisk/8.3.8/Baidu.BaiduNetdisk.locale.en-US.yaml index 8d30fa91e4812..172b617b03729 100644 --- a/manifests/b/Baidu/BaiduNetdisk/8.3.8/Baidu.BaiduNetdisk.locale.en-US.yaml +++ b/manifests/b/Baidu/BaiduNetdisk/8.3.8/Baidu.BaiduNetdisk.locale.en-US.yaml @@ -6,7 +6,7 @@ PackageVersion: 8.3.8 PackageLocale: en-US Author: Beijing Duyou Technology Co., Ltd. License: Proprietary -ShortDescription: Personal cloud service product by Baidu +ShortDescription: Personal cloud service product by Baidu. Description: Baidu Netdisk is a convenient and easy-to-use cloud storage product that is serving more than 700 million users, which has mass storage and several self-hosted data centers, supports backup, sharing, viewing and processing multiple types of files, and protects users' data security under two top international security certifications ISO27001 and ISO27018. It would be your best choice if you want to back up your data, free up your phone's space, share files with others or operate files online. Tags: - backup @@ -19,5 +19,7 @@ Tags: - share - sync - upload +- prc +- china ManifestType: locale ManifestVersion: 1.12.0 diff --git a/manifests/b/BatchyAndFriends/Batchy/1.0.18/BatchyAndFriends.Batchy.installer.yaml b/manifests/b/BatchyAndFriends/Batchy/1.0.18/BatchyAndFriends.Batchy.installer.yaml new file mode 100644 index 0000000000000..1370cbde7eb34 --- /dev/null +++ b/manifests/b/BatchyAndFriends/Batchy/1.0.18/BatchyAndFriends.Batchy.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: BatchyAndFriends.Batchy +PackageVersion: 1.0.18 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S + SilentWithProgress: /S + InstallLocation: /D= +UpgradeBehavior: install +Commands: +- Batchy +Installers: +- Architecture: x64 + InstallerUrl: https://releases.batchyandfriends.com/archive/Batchy-1.0.18-Setup.exe + InstallerSha256: FBC841DEFA981EC43F2A1BD192719753D71C7E785631DD1F3DC04D33C801763F +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/b/BatchyAndFriends/Batchy/1.0.18/BatchyAndFriends.Batchy.locale.en-US.yaml b/manifests/b/BatchyAndFriends/Batchy/1.0.18/BatchyAndFriends.Batchy.locale.en-US.yaml new file mode 100644 index 0000000000000..719618ecff191 --- /dev/null +++ b/manifests/b/BatchyAndFriends/Batchy/1.0.18/BatchyAndFriends.Batchy.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: BatchyAndFriends.Batchy +PackageVersion: 1.0.18 +PackageLocale: en-US +Publisher: Batchy and Friends +PublisherUrl: https://batchyandfriends.com +PublisherSupportUrl: https://batchyandfriends.com +PackageName: Batchy +PackageUrl: https://batchyandfriends.com +License: Proprietary +LicenseUrl: https://batchyandfriends.com/eula +ShortDescription: Batch audio processing application for music producers +Description: Batchy is a batch audio processing application that enables music producers to apply chains of audio effects to multiple files simultaneously. Features include reverb, EQ, gain, fade, time-stretch, compressor, and more. +Tags: +- audio +- batch-processing +- music-production +- audio-effects +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/l/Lenovo/SUHelper/10.2501.15.0/Lenovo.SUHelper.yaml b/manifests/b/BatchyAndFriends/Batchy/1.0.18/BatchyAndFriends.Batchy.yaml similarity index 58% rename from manifests/l/Lenovo/SUHelper/10.2501.15.0/Lenovo.SUHelper.yaml rename to manifests/b/BatchyAndFriends/Batchy/1.0.18/BatchyAndFriends.Batchy.yaml index 8f73437d1cc79..27df45e687bc4 100644 --- a/manifests/l/Lenovo/SUHelper/10.2501.15.0/Lenovo.SUHelper.yaml +++ b/manifests/b/BatchyAndFriends/Batchy/1.0.18/BatchyAndFriends.Batchy.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: Lenovo.SUHelper -PackageVersion: 10.2501.15.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: BatchyAndFriends.Batchy +PackageVersion: 1.0.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/b/ByteDance/Douyin/7.6.0/ByteDance.Douyin.locale.en-US.yaml b/manifests/b/ByteDance/Douyin/7.6.0/ByteDance.Douyin.locale.en-US.yaml index 89fdefc73112e..f9e8874fed9b3 100644 --- a/manifests/b/ByteDance/Douyin/7.6.0/ByteDance.Douyin.locale.en-US.yaml +++ b/manifests/b/ByteDance/Douyin/7.6.0/ByteDance.Douyin.locale.en-US.yaml @@ -14,9 +14,11 @@ PackageUrl: https://www.douyin.com/downloadpage/pc License: Freeware LicenseUrl: https://www.douyin.com/draft/douyin_agreement/douyin_agreement_user.html Copyright: 2026© Douyin -ShortDescription: Discover good content and watch freely +ShortDescription: Discover good content and watch freely. Tags: - douyin - short-video +- prc +- china ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.installer.yaml b/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.installer.yaml new file mode 100644 index 0000000000000..41f7f16d508c6 --- /dev/null +++ b/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ByteDance.LarkCLI +PackageVersion: 1.0.9 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: lark-cli.exe +Commands: +- lark-cli +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/larksuite/cli/releases/download/v1.0.9/lark-cli-1.0.9-windows-amd64.zip + InstallerSha256: 58B49E1A3F8E3E91C7B31672BC234FFCBFA3EFCF03D7EC57C0E86C4CFED3C63E +- Architecture: arm64 + InstallerUrl: https://github.com/larksuite/cli/releases/download/v1.0.9/lark-cli-1.0.9-windows-arm64.zip + InstallerSha256: 7BE84C6DF2A31831E0CA64B63F8BA8D0F16D6A523EEE5AC54BD043FB79C18730 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.locale.en-US.yaml b/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..29952ac648307 --- /dev/null +++ b/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.locale.en-US.yaml @@ -0,0 +1,58 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ByteDance.LarkCLI +PackageVersion: 1.0.9 +PackageLocale: en-US +Publisher: Lark Technologies Pte. Ltd. +PublisherUrl: https://www.larksuite.com/en_us/ +PublisherSupportUrl: https://github.com/larksuite/cli/issues +PrivacyUrl: https://www.larksuite.com/en_us/privacy-policy +Author: Lark Technologies Pte. Ltd. +PackageName: Lark CLI +PackageUrl: https://github.com/larksuite/cli +License: MIT +LicenseUrl: https://github.com/larksuite/cli/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Lark Technologies Pte. Ltd. +CopyrightUrl: https://www.larksuite.com/en_us/user-terms-of-service +ShortDescription: A command-line tool for Lark/Feishu Open Platform — built for humans and AI Agents. Covers core business domains including Messenger, Docs, Base, Sheets, Calendar, Mail, Tasks, Meetings, and more, with 200+ commands and 19 AI Agent Skills. +Description: |- + A command-line tool for Lark/Feishu Open Platform — built for humans and AI Agents. Covers core business domains including Messenger, Docs, Base, Sheets, Calendar, Mail, Tasks, Meetings, and more, with 200+ commands and 19 AI Agent Skills. + Why lark-cli? + - Agent-Native Design — 19 structured Skills out of the box, compatible with popular AI tools — Agents can operate Lark with zero extra setup + - Wide Coverage — 11 business domains, 200+ curated commands, 19 AI Agent Skills + - AI-Friendly & Optimized — Every command is tested with real Agents, featuring concise parameters, smart defaults, and structured output to maximize Agent call success rates + - Open Source, Zero Barriers — MIT license, ready to use, just npm install + - Up and Running in 3 Minutes — One-click app creation, interactive login, from install to first API call in just 3 steps + - Secure & Controllable — Input injection protection, terminal output sanitization, OS-native keychain credential storage + - Three-Layer Architecture — Shortcuts (human & AI friendly) → API Commands (platform-synced) → Raw API (full coverage), choose the right granularity + Features + - 📅 Calendar: View agenda, create events, invite attendees, check free/busy status, time suggestions + - 💬 Messenger: Send/reply messages, create and manage group chats, view chat history & threads, search messages, download media + - 📄 Docs: Create, read, update, and search documents, read/write media & whiteboards + - 📁 Drive: Upload and download files, search docs & wiki, manage comments + - 📊 Base: Create and manage tables, fields, records, views, dashboards, data aggregation & analytics + - 📈 Sheets: Create, read, write, append, find, and export spreadsheet data + - ✅ Tasks: Create, query, update, and complete tasks; manage task lists, subtasks, comments & reminders + - 📚 Wiki: Create and manage knowledge spaces, nodes, and documents + - 👤 Contact: Search users by name/email/phone, get user profiles + - 📧 Mail: Browse, search, read emails, send, reply, forward, manage drafts, watch new mail + - 🎥 Meetings: Search meeting records, query meeting minutes & recordings +Moniker: lark-cli +Tags: +- feishu +- lark +ReleaseNotes: |- + Changelog + - 368ec7e753afc35a1ca5af4196646f02bf909da2 docs(drive): add guide for granting document permission to current bot (#414) + - bd5a33c0b7a511cccd83e702d572b19844174e43 feat(drive): add drive folder delete shortcut with async task polling (#415) + - 3242ca6f7ff094c17eb7c5590716bf325ea7ae83 feat(sheets): add cell operation shortcuts for merge, replace, and style (#412) + - f6a31e0853efb393976ebffeff074671c904706e feat(sheets): add dimension shortcuts for row/column operations (#413) + - a9c07cebb637f5e89671dfa7b73738a94b02df8a feat(slides): add slides +create shortcut with --slides one-step creation (#389) + - e07842d3b5715924d431c6182e3a551ee83f1241 feat(slides): return presentation URL in slides +create output (#425) + - 9f81e7e567d2ccf6b03d427ed99c4f103f746454 feat: add RuntimeContext.BotInfo() for lazy bot identity retrieval (#409) + - 69ae326d01a9163ca22408c746e052003cf0af2c feat: add attendance user_task.query (#405) + - a00dfad56a9ae3a8264821b3c803a12ad2b62eec feat: support minutes search (#359) +ReleaseNotesUrl: https://github.com/larksuite/cli/releases/tag/v1.0.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.locale.zh-Hans-CN.yaml b/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.locale.zh-Hans-CN.yaml new file mode 100644 index 0000000000000..31359563c05b3 --- /dev/null +++ b/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.locale.zh-Hans-CN.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ByteDance.LarkCLI +PackageVersion: 1.0.9 +PackageLocale: zh-Hans-CN +Publisher: 北京飞书科技有限公司 +PublisherUrl: https://www.feishu.cn/ +PrivacyUrl: https://www.feishu.cn/privacy +Author: 北京飞书科技有限公司 +CopyrightUrl: https://www.feishu.cn/terms +ShortDescription: 飞书/Lark 开放平台命令行工具 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、日历、邮箱、任务、会议等核心业务域,提供 200+ 命令及 19 个 AI Agent Skills。 +Description: |- + 飞书/Lark 开放平台命令行工具 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、日历、邮箱、任务、会议等核心业务域,提供 200+ 命令及 19 个 AI Agent Skills。 + 为什么选 lark-cli? + - 为 Agent 原生设计 — Skills 开箱即用,适配主流 AI 工具,Agent 无需额外适配即可操作飞书 + - 覆盖面广 — 11 大业务域、200+ 精选命令、 19 个 AI Agent Skills + - AI 友好调优 — 每条命令经过 Agent 实测验证,提供更友好的参数、智能默认值和结构化输出,大幅提升 Agent 调用成功率 + - 开源零门槛 — MIT 协议,开箱即用,npm install 即可使用 + - 三分钟上手 — 一键创建应用、交互式登录授权,从安装到第一次 API 调用只需三步 + - 安全可控 — 输入防注入、终端输出净化、OS 原生密钥链存储凭证 + - 三层调用架构 — 快捷命令(人机友好)→ API 命令(平台同步)→ 通用调用(全 API 覆盖),按需选择粒度 + 功能 + - 📅 日历:查看日程、创建日程、邀请参会人、查询忙闲状态、时间建议 + - 💬 即时通讯:发送/回复消息、创建和管理群聊、查看聊天记录与话题、搜索消息、下载媒体文件 + - 📄 云文档:创建、读取、更新文档、搜索文档、读写素材与画板 + - 📁 云空间:上传和下载文件、搜索文档与知识库、管理评论 + - 📊 多维表格:创建和管理多维表格、字段、记录、视图、仪表盘,数据聚合分析 + - 📈 电子表格:创建、读取、写入、追加、查找和导出表格数据 + - ✅ 任务:创建、查询、更新和完成任务;管理任务清单、子任务、评论与提醒 + - 📚 知识库:创建和管理知识空间、节点和文档 + - 👤 通讯录:按姓名/邮箱/手机号搜索用户、获取用户信息 + - 📧 邮箱:浏览、搜索、阅读邮件,发送、回复、转发邮件,管理草稿,监听新邮件 + - 🎥 视频会议:搜索会议记录、查询会议纪要与录制 +Tags: +- lark +- 飞书 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.locale.zh-Hans.yaml b/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.locale.zh-Hans.yaml new file mode 100644 index 0000000000000..b90467a78904b --- /dev/null +++ b/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.locale.zh-Hans.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ByteDance.LarkCLI +PackageVersion: 1.0.9 +PackageLocale: zh-Hans +PublisherUrl: https://www.larksuite.com/zh_cn/ +PrivacyUrl: https://www.larksuite.com/zh_cn/privacy-policy +CopyrightUrl: https://www.larksuite.com/zh_cn/user-terms-of-service +ShortDescription: 飞书/Lark 开放平台命令行工具 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、日历、邮箱、任务、会议等核心业务域,提供 200+ 命令及 19 个 AI Agent Skills。 +Description: |- + 飞书/Lark 开放平台命令行工具 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、日历、邮箱、任务、会议等核心业务域,提供 200+ 命令及 19 个 AI Agent Skills。 + 为什么选 lark-cli? + - 为 Agent 原生设计 — Skills 开箱即用,适配主流 AI 工具,Agent 无需额外适配即可操作飞书 + - 覆盖面广 — 11 大业务域、200+ 精选命令、 19 个 AI Agent Skills + - AI 友好调优 — 每条命令经过 Agent 实测验证,提供更友好的参数、智能默认值和结构化输出,大幅提升 Agent 调用成功率 + - 开源零门槛 — MIT 协议,开箱即用,npm install 即可使用 + - 三分钟上手 — 一键创建应用、交互式登录授权,从安装到第一次 API 调用只需三步 + - 安全可控 — 输入防注入、终端输出净化、OS 原生密钥链存储凭证 + - 三层调用架构 — 快捷命令(人机友好)→ API 命令(平台同步)→ 通用调用(全 API 覆盖),按需选择粒度 + 功能 + - 📅 日历:查看日程、创建日程、邀请参会人、查询忙闲状态、时间建议 + - 💬 即时通讯:发送/回复消息、创建和管理群聊、查看聊天记录与话题、搜索消息、下载媒体文件 + - 📄 云文档:创建、读取、更新文档、搜索文档、读写素材与画板 + - 📁 云空间:上传和下载文件、搜索文档与知识库、管理评论 + - 📊 多维表格:创建和管理多维表格、字段、记录、视图、仪表盘,数据聚合分析 + - 📈 电子表格:创建、读取、写入、追加、查找和导出表格数据 + - ✅ 任务:创建、查询、更新和完成任务;管理任务清单、子任务、评论与提醒 + - 📚 知识库:创建和管理知识空间、节点和文档 + - 👤 通讯录:按姓名/邮箱/手机号搜索用户、获取用户信息 + - 📧 邮箱:浏览、搜索、阅读邮件,发送、回复、转发邮件,管理草稿,监听新邮件 + - 🎥 视频会议:搜索会议记录、查询会议纪要与录制 +Tags: +- lark +- 飞书 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.5.1.2026-01-25/WinDirStat.WinDirStat.Beta.yaml b/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.yaml similarity index 53% rename from manifests/w/WinDirStat/WinDirStat/Beta/2.5.1.2026-01-25/WinDirStat.WinDirStat.Beta.yaml rename to manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.yaml index f206499b44a96..c7604c10428d6 100644 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.5.1.2026-01-25/WinDirStat.WinDirStat.Beta.yaml +++ b/manifests/b/ByteDance/LarkCLI/1.0.9/ByteDance.LarkCLI.yaml @@ -1,8 +1,8 @@ -# Created with WinGet Releaser using komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.5.1.2026-01-25 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ByteDance.LarkCLI +PackageVersion: 1.0.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/behringer/XAIREdit/.validation b/manifests/b/behringer/XAIREdit/.validation deleted file mode 100644 index 79d338021620a..0000000000000 --- a/manifests/b/behringer/XAIREdit/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"5f9f4ad9-1a6e-425a-85d0-fc9684be7c03","TestPlan":"Validation-Domain","PackagePath":"manifests/b/behringer/XAIREdit/1.7","CommitId":"b46f1f6993590a0f2d54017221a049ddab9ac584"}]} \ No newline at end of file diff --git a/manifests/b/blueberrycongee/TermCanvas/0.27.5/blueberrycongee.TermCanvas.installer.yaml b/manifests/b/blueberrycongee/TermCanvas/0.27.5/blueberrycongee.TermCanvas.installer.yaml new file mode 100644 index 0000000000000..b7a478553113c --- /dev/null +++ b/manifests/b/blueberrycongee/TermCanvas/0.27.5/blueberrycongee.TermCanvas.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: blueberrycongee.TermCanvas +PackageVersion: 0.27.5 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 75eb9126-42bc-5b65-8c9c-967fc346dcf8 +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/blueberrycongee/termcanvas/releases/download/v0.27.5/TermCanvas-Setup-0.27.5.exe + InstallerSha256: D71C077767838226F93F125E46F5E7785309A84CEB7F1CA974B30E00089E3B13 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/blueberrycongee/termcanvas/releases/download/v0.27.5/TermCanvas-Setup-0.27.5.exe + InstallerSha256: D71C077767838226F93F125E46F5E7785309A84CEB7F1CA974B30E00089E3B13 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/blueberrycongee/TermCanvas/0.27.5/blueberrycongee.TermCanvas.locale.en-US.yaml b/manifests/b/blueberrycongee/TermCanvas/0.27.5/blueberrycongee.TermCanvas.locale.en-US.yaml new file mode 100644 index 0000000000000..e4b8809e803ea --- /dev/null +++ b/manifests/b/blueberrycongee/TermCanvas/0.27.5/blueberrycongee.TermCanvas.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.12.0.schema.json + +PackageIdentifier: blueberrycongee.TermCanvas +PackageVersion: 0.27.5 +PackageLocale: en-US +Publisher: blueberrycongee +PublisherUrl: https://github.com/blueberrycongee +PublisherSupportUrl: https://github.com/blueberrycongee/termcanvas/issues +PackageName: TermCanvas +PackageUrl: https://github.com/blueberrycongee/termcanvas +License: MIT +LicenseUrl: https://github.com/blueberrycongee/termcanvas/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 TermCanvas Contributors +ShortDescription: An infinite canvas desktop app for visually managing terminals +Description: |- + TermCanvas spreads all your terminals across an infinite spatial canvas — no more tabs, no more split panes. Drag them around, zoom in to focus, zoom out to see the big picture. + It organizes everything in a Project → Worktree → Terminal hierarchy that mirrors how you actually use git. Add a project, and TermCanvas auto-detects its worktrees. Create a new worktree from the terminal, and it appears on the canvas instantly. +Tags: +- agent +- agentic +- ai +- chatbot +- claude-code +- code +- codex +- coding +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: '- Clicking a worktree label on the canvas now also focuses that worktree, so a follow-up cmd+t creates the new terminal inside the worktree you just clicked instead of whichever one happened to be focused before. The label click handler now pairs panToWorktree with focusWorktreeInScene, matching the convention already used by Hub and cmd+] / cmd+[ worktree-level navigation. The LOD project-label fallback (extreme zoom-out) also focuses the first populated worktree, so click-then-cmd+t works at every scale' +ReleaseNotesUrl: https://github.com/blueberrycongee/termcanvas/releases/tag/v0.27.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/blueberrycongee/TermCanvas/0.27.5/blueberrycongee.TermCanvas.locale.zh-CN.yaml b/manifests/b/blueberrycongee/TermCanvas/0.27.5/blueberrycongee.TermCanvas.locale.zh-CN.yaml new file mode 100644 index 0000000000000..457454f995941 --- /dev/null +++ b/manifests/b/blueberrycongee/TermCanvas/0.27.5/blueberrycongee.TermCanvas.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.12.0.schema.json + +PackageIdentifier: blueberrycongee.TermCanvas +PackageVersion: 0.27.5 +PackageLocale: zh-CN +ShortDescription: 一款用于可视化管理终端的无限画布桌面应用 +Description: |- + TermCanvas 可将你所有的终端窗口排布在无限空间画布上——无需再使用标签页,也不必拆分窗格。你可以随意拖动终端,放大即可聚焦单个窗口,缩小就能查看全局布局。 + 它采用「项目→工作树→终端」的层级结构管理所有内容,完全贴合你实际使用 Git 的习惯。添加项目后,TermCanvas 会自动检测其包含的工作树;你在终端中创建新工作树时,它也会立刻显示在画布上。 +Tags: +- claude-code +- codex +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +ReleaseNotes: '- 在画布上点击 worktree 标签时,现在会同时把键盘焦点切到该 worktree,这样紧接着按 cmd+t 新建的终端会落在你刚刚点击的 worktree 里,而不是上一次焦点所在的 worktree。label 的 click handler 现在会同时调 panToWorktree 和 focusWorktreeInScene,与 Hub 以及 cmd+] / cmd+[ worktree 级导航的现有约定一致。极远缩放下点击 LOD 模式的项目级合并标签也会聚焦该项目的第一个有内容的 worktree,因此在任何缩放比例下"点了再 cmd+t"都能落到正确位置' +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/blueberrycongee/TermCanvas/0.27.5/blueberrycongee.TermCanvas.yaml b/manifests/b/blueberrycongee/TermCanvas/0.27.5/blueberrycongee.TermCanvas.yaml new file mode 100644 index 0000000000000..68d83d749c875 --- /dev/null +++ b/manifests/b/blueberrycongee/TermCanvas/0.27.5/blueberrycongee.TermCanvas.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: blueberrycongee.TermCanvas +PackageVersion: 0.27.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.installer.yaml b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.installer.yaml new file mode 100644 index 0000000000000..f9e17c5dccb12 --- /dev/null +++ b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: bodaay.hfdownloader +PackageVersion: 3.0.4 +InstallerType: portable +Commands: +- hfdownloader +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bodaay/HuggingFaceModelDownloader/releases/download/v3.0.4/hfdownloader_windows_amd64_v3.0.4.exe + InstallerSha256: B6CA755E68B5EC21041A542E75A146A47D2964C519998505CC4CD212496D2D34 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.locale.en-US.yaml b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.locale.en-US.yaml new file mode 100644 index 0000000000000..f0226032e7200 --- /dev/null +++ b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: bodaay.hfdownloader +PackageVersion: 3.0.4 +PackageLocale: en-US +Publisher: bodaay +PublisherUrl: https://github.com/bodaay +PublisherSupportUrl: https://github.com/bodaay/HuggingFaceModelDownloader/issues +PackageName: HuggingFace Model Downloader +PackageUrl: https://github.com/bodaay/HuggingFaceModelDownloader +License: Apache-2.0 +LicenseUrl: https://github.com/bodaay/HuggingFaceModelDownloader/blob/HEAD/LICENSE +ShortDescription: Simple go utility to download HuggingFace Models and Datasets +Description: The HuggingFace Model Downloader is a utility tool for downloading models and datasets from the HuggingFace website. It offers multithreaded downloading for LFS files and ensures the integrity of downloaded models with SHA256 checksum verification. +Moniker: hfdownloader +Tags: +- huggingface +ReleaseNotes: |- + What's Changed in v3.0.4 + Bug-fix release tackling eight open issues reported against v3.0.3. Focused on download correctness, webui responsiveness, storage flexibility, and analyzer coverage for new quant formats. Every fix ships with regression tests; go test -race ./... is now fully green across every package. + Bug Fixes + - Resumable downloads actually resume now (#70) — downloadSingle and each downloadMultipart part goroutine now open .part files with O_RDWR|O_CREATE (no truncate), stat the existing size, and issue Range: bytes=pos-end requests from that offset. Interrupted downloads resume correctly on rerun, and within-process retries after a flaky-connection cut no longer lose bytes. Previously every Ctrl+C silently re-fetched from zero and single-file downloads literally had no resume code path at all. + - Unsloth Dynamic quant variants correctly labeled (#72) — the GGUF quant regex now supports Q{2..8}_K_XL / _XXL suffixes and IQ1_S / IQ1_M. Previously on repos like unsloth/Qwen3-30B-A3B-GGUF the regex silently collapsed six UD-Q*_K_XL files into Q2_K..Q8_K labels that collided with the real plain-K quants, and missed the two IQ1 files entirely. All 25 GGUF files in that repo now label correctly. Added quality/description map entries for Q2_K_L, Q2..8_K_XL, IQ1_S/M, IQ2_M, IQ3_XXS. + - Multimodal GGUF repos auto-bundle the vision encoder (#76) — analyzeGGUF now partitions .gguf files into LLM quants vs mmproj vision encoders. A vision_encoder SelectableItem is emitted as Recommended by default, so the recommended CLI command for a multimodal repo becomes e.g. -F q4_k_m,mmproj-f16 for unsloth/gemma-3-4b-it-GGUF. Downloading a single quant now pulls in the matching projector automatically, matching LM Studio's behavior. + - Progress no longer oscillates on slow/flaky connections (#75) — the multipart progress ticker now stops cleanly before assembly via an explicit done channel + WaitGroup, and an explicit final full-size reading is emitted after all parts complete. Root cause: the ticker kept stating part files while assembly was deleting them, emitting downloaded=0 events that made the UI appear stuck at 2.4% ↔ 2.5% for hours on slow links. Combined with the #70 fix above, flaky downloads of multi-GB files now converge cleanly. + - Pause no longer claims the file is 100% done — fixed a regression in the #75 tail path where downloadMultipart on cancellation would fall past its errCh drain (cancelled goroutines return silently via sleepCtx without pushing errors) and emit a bogus downloaded == total event followed by assembly over an incomplete part set — corrupting the final file and deleting the very partial bytes the next resume was supposed to continue from. Now bails out with ctx.Err() immediately after the ticker shutdown. Regression test in TestDownloadMultipart_CancelMidStreamDoesNotClaim100. + - Web UI no longer floods the browser with updates (#62) — two-layer fix: + - Server-side 250ms per-job WebSocket broadcast coalescer in front of BroadcastJob. Progress events arriving inside the window collapse to a single flush of the latest state; terminal status changes (completed/failed/cancelled/paused) bypass the gate so pause/cancel transitions still feel instant. + - Frontend renderJobs no longer does container.innerHTML = jobs.map(...).join('') on every tick. Per-job DOM elements are cached and updated in place — progress bar width and stats text change, but the card node, the action buttons, and their event listeners stay stable. Hover states persist and Pause/Cancel buttons are clickable during an active download. + - Dismissed jobs stay dismissed across refresh (#68) — new POST /api/jobs/{id}/dismiss endpoint permanently removes a terminal-state job from the manager. Frontend dismissJob now calls the server before removing from local state, so page reloads and WebSocket reconnects don't repopulate it. Attempts to dismiss queued or running jobs return 409. The primary per-file-deletion ask in the same issue is tracked separately. + - JobManager returns snapshots — data race fixed — CreateJob, GetJob, ListJobs, and the internal WebSocket broadcast path all now return/forward cloned Job snapshots via a new cloneJobLocked helper. Previously the HTTP JSON encoder and the WS broadcaster would read Job fields while runJob was mutating them on a separate goroutine. go test -race ./... is now fully green across every package for the first time. + Features + - --local-dir CLI flag (#71, #73) — new flag mirroring huggingface-cli download --local-dir. Downloads real files into the chosen directory instead of the HF cache's blobs+symlinks layout. Right choice for feeding weights to llama.cpp / ollama, Windows users without Developer Mode, and NFS/SMB/USB transfers. Equivalent to the existing --legacy -o form — both spellings are permanent and interchangeable, and --legacy is no longer marked for removal. + - Installer defaults to ~/.local/bin — no more sudo prompt (#69) — the one-liner bash <(curl -sSL https://g.bodaay.io/hfd) install now picks a user-local install path in this order: + 1. ~/.local/bin if already in PATH + 2. ~/bin if already in PATH + 3. /usr/local/bin if writable + 4. Fallback to ~/.local/bin with a printed export PATH= line + Explicit targets like install /usr/local/bin still work and still use sudo where needed. Root users still get /usr/local/bin by default. + Documentation + - README now has a prominent Storage Modes section documenting both HF-cache-default and flat-file --local-dir modes as first-class, permanent options with when-to-use-which guidance. + - docs/CLI.md and docs/V3_FEATURES.md updated to reflect the un-deprecated --legacy / --output flags and the new --local-dir spelling. + Test Infrastructure + - TestAPI_Health no longer pins to a stale hardcoded version string. + - TestJobManager_CreateJob no longer races its TempDir cleanup against in-flight runJob goroutines — new JobManager.WaitAll(timeout) lets the test block on actual goroutine exit before cleanup runs. + Full Changelog: https://github.com/bodaay/HuggingFaceModelDownloader/compare/v3.0.3...v3.0.4 +ReleaseNotesUrl: https://github.com/bodaay/HuggingFaceModelDownloader/releases/tag/v3.0.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.locale.zh-CN.yaml b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fda13fd0c9bcd --- /dev/null +++ b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.locale.zh-CN.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: bodaay.hfdownloader +PackageVersion: 3.0.4 +PackageLocale: zh-CN +ShortDescription: 下载 HuggingFace 模型和数据集的简单 Go 工具 +Description: HuggingFace 模型下载器是一款从 HuggingFace 网站下载模型和数据集的实用工具,为 LFS 文件提供多线程下载,并通过 SHA256 校验和验证确保下载的模型是完整的。 +Tags: +- 抱抱脸 +ReleaseNotesUrl: https://github.com/bodaay/HuggingFaceModelDownloader/releases/tag/v3.0.4 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.yaml b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.yaml new file mode 100644 index 0000000000000..7fa57aefece5e --- /dev/null +++ b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: bodaay.hfdownloader +PackageVersion: 3.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/bshuzhang/PPLink/16.0.0/bshuzhang.PPLink.locale.en-US.yaml b/manifests/b/bshuzhang/PPLink/16.0.0/bshuzhang.PPLink.locale.en-US.yaml index 6fe4e466a4037..f52e35de5c8f7 100644 --- a/manifests/b/bshuzhang/PPLink/16.0.0/bshuzhang.PPLink.locale.en-US.yaml +++ b/manifests/b/bshuzhang/PPLink/16.0.0/bshuzhang.PPLink.locale.en-US.yaml @@ -11,7 +11,7 @@ PackageName: pp直连 PackageUrl: https://www.ppzhilian.com/ License: Proprietary Copyright: Copyright © 2019 - 2026 -ShortDescription: Point-to-point direct connection, private communication +ShortDescription: Point-to-point direct connection, private communication. Description: Private, convenient, and high-speed file transfer, real-time sharing, and remote control between various devices Tags: - clipboard @@ -24,5 +24,7 @@ Tags: - send - share - transfer +- prc +- china ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/c/CopyTrans/CopyTransHEIC/.validation b/manifests/c/CopyTrans/CopyTransHEIC/.validation deleted file mode 100644 index c9582725637b4..0000000000000 --- a/manifests/c/CopyTrans/CopyTransHEIC/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"f2eeba34-4513-4e8a-bf90-69ff83d055de","TestPlan":"Validation-Domain","PackagePath":"manifests/c/CopyTrans/CopyTransHEIC/2.0.2.7","CommitId":"87d2aa173f78fbed6579d72dfeb7d915e3d00337"}],"StandardInstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/d/DiegoFernandes/jsdesign/.validation b/manifests/d/DiegoFernandes/jsdesign/.validation deleted file mode 100644 index b493a0c71735a..0000000000000 --- a/manifests/d/DiegoFernandes/jsdesign/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"31e0c78d-aba3-4771-901d-65af20e25be5","TestPlan":"Validation-Domain","PackagePath":"manifests/d/DiegoFernandes/jsdesign/1.0.5","CommitId":"1513f09a8eb58f4658d9b781073c06f8cb023243"}]} \ No newline at end of file diff --git a/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.installer.yaml b/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.installer.yaml new file mode 100644 index 0000000000000..398c01a6feb57 --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discloud.CLI +PackageVersion: 0.12.1 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/discloud/cli-dart/releases/download/0.12.1/discloud-cli-x64-setup.exe + InstallerSha256: D55511F1BCB5E082864FC332B84A87481C6DE382B068634CDDC6F15525B22D49 +- Architecture: arm64 + InstallerUrl: https://github.com/discloud/cli-dart/releases/download/0.12.1/discloud-cli-x64-setup.exe + InstallerSha256: D55511F1BCB5E082864FC332B84A87481C6DE382B068634CDDC6F15525B22D49 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-04-11 diff --git a/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.locale.en-US.yaml b/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..fe9b67344ab13 --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discloud.CLI +PackageVersion: 0.12.1 +PackageLocale: en-US +Publisher: Discloud +PublisherUrl: https://github.com/discloud +PublisherSupportUrl: https://docs.discloud.com/faq/where-to-get-help +PrivacyUrl: https://github.com/discloud/legal/blob/main/terms-en.md +Author: Discloud +PackageName: Discloud CLI +PackageUrl: https://github.com/discloud/cli-dart +License: Apache 2.0 +LicenseUrl: https://github.com/discloud/cli-dart/blob/main/LICENSE +Copyright: Copyright © 2026 Discloud +ShortDescription: Discloud CLI Setup +Description: A fast option to manage your apps on Discloud. +Moniker: discloudcli +Tags: +- discloudbot +- host +ReleaseNotesUrl: https://github.com/discloud/cli-dart/releases/tag/0.12.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.yaml b/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.yaml new file mode 100644 index 0000000000000..1d46523dad241 --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Discloud.CLI +PackageVersion: 0.12.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.154.1.0/DuckDuckGo.DesktopBrowser.Preview.installer.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.154.1.0/DuckDuckGo.DesktopBrowser.Preview.installer.yaml new file mode 100644 index 0000000000000..080cf4af31173 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.154.1.0/DuckDuckGo.DesktopBrowser.Preview.installer.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.154.1.0 +Platform: +- Windows.Desktop +- Windows.Universal +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +Protocols: +- http +- https +FileExtensions: +- htm +- html +- pdf +PackageFamilyName: DuckDuckGo.DesktopBrowserPreview_ya2fgkz3nks94 +Capabilities: +- internetClient +- runFullTrust +Installers: +- Architecture: x86 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/preview/0.154.1.0/DuckDuckGo%20Preview_0.154.1.0.msixbundle + InstallerSha256: 1D7141F008649893B67C8A327CAACF8EA22F2EAECED8D22A61A3D913E35900FA + SignatureSha256: 6B8DD3586E7B8018926A0094B72132A604231765712A6C22B6E57B581ECB4C3E +- Architecture: x64 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/preview/0.154.1.0/DuckDuckGo%20Preview_0.154.1.0.msixbundle + InstallerSha256: 1D7141F008649893B67C8A327CAACF8EA22F2EAECED8D22A61A3D913E35900FA + SignatureSha256: 6B8DD3586E7B8018926A0094B72132A604231765712A6C22B6E57B581ECB4C3E +- Architecture: arm64 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/preview/0.154.1.0/DuckDuckGo%20Preview_0.154.1.0.msixbundle + InstallerSha256: 1D7141F008649893B67C8A327CAACF8EA22F2EAECED8D22A61A3D913E35900FA + SignatureSha256: 6B8DD3586E7B8018926A0094B72132A604231765712A6C22B6E57B581ECB4C3E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.154.1.0/DuckDuckGo.DesktopBrowser.Preview.locale.en-US.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.154.1.0/DuckDuckGo.DesktopBrowser.Preview.locale.en-US.yaml new file mode 100644 index 0000000000000..9c5acd92911e6 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.154.1.0/DuckDuckGo.DesktopBrowser.Preview.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.12.0.schema.json + +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.154.1.0 +PackageLocale: en-US +Publisher: DuckDuckGo +PublisherUrl: https://duckduckgo.com/ +PrivacyUrl: https://duckduckgo.com/privacy +Author: Duck Duck Go, Inc. +PackageName: DuckDuckGo Preview +PackageUrl: https://duckduckgo.com/windows-preview +License: Freeware +LicenseUrl: https://duckduckgo.com/terms +Copyright: © 2026 DuckDuckGo +CopyrightUrl: https://duckduckgo.com/terms +ShortDescription: Help Test and Improve New Features with DuckDuckGo Preview for Windows +Tags: +- browser +- chromium +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.154.1.0/DuckDuckGo.DesktopBrowser.Preview.locale.zh-CN.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.154.1.0/DuckDuckGo.DesktopBrowser.Preview.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a1b44b62a9c7f --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.154.1.0/DuckDuckGo.DesktopBrowser.Preview.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.154.1.0 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 帮助测试和改进 DuckDuckGo Preview for Windows 的新功能 +Tags: +- chromium +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.154.1.0/DuckDuckGo.DesktopBrowser.Preview.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.154.1.0/DuckDuckGo.DesktopBrowser.Preview.yaml new file mode 100644 index 0000000000000..9e79bf621f8b7 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.154.1.0/DuckDuckGo.DesktopBrowser.Preview.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.154.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dyad/Dyad/0.43.0/Dyad.Dyad.installer.yaml b/manifests/d/Dyad/Dyad/0.43.0/Dyad.Dyad.installer.yaml new file mode 100644 index 0000000000000..f93a870df5c6a --- /dev/null +++ b/manifests/d/Dyad/Dyad/0.43.0/Dyad.Dyad.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Dyad.Dyad +PackageVersion: 0.43.0 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ReleaseDate: 2026-04-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dyad-sh/dyad/releases/download/v0.43.0/dyad-0.43.0.Setup.exe + InstallerSha256: 571866439C64687AC05C419FD422BF2F2E06B8D21EDBD0291EAC539F607C1EB2 + ProductCode: dyad + AppsAndFeaturesEntries: + - ProductCode: dyad + InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\dyad' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dyad/Dyad/0.43.0/Dyad.Dyad.locale.en-US.yaml b/manifests/d/Dyad/Dyad/0.43.0/Dyad.Dyad.locale.en-US.yaml new file mode 100644 index 0000000000000..003bceb3ba350 --- /dev/null +++ b/manifests/d/Dyad/Dyad/0.43.0/Dyad.Dyad.locale.en-US.yaml @@ -0,0 +1,67 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Dyad.Dyad +PackageVersion: 0.43.0 +PackageLocale: en-US +Publisher: Will Chen +PublisherUrl: https://www.dyad.sh/ +PublisherSupportUrl: https://github.com/dyad-sh/dyad/issues +Author: Dyad +PackageName: dyad +PackageUrl: https://www.dyad.sh/ +License: Apache-2.0 +LicenseUrl: https://github.com/dyad-sh/dyad/blob/HEAD/LICENSE +Copyright: Copyright © 2025 Will Chen +ShortDescription: Dyad is a free, local, open-source AI app builder +Description: Dyad is a free, local, open-source AI app builder +Moniker: dyad +Tags: +- ai-app-builder +- anthropic +- artificial-intelligence +- bolt +- deepseek +- gemini +- generative-ai +- github +- llm +- llms +- lovable +- nextjs +- ollama +- openai +- qwen +- v0 +ReleaseNotes: |- + Full release notes: https://www.dyad.sh/docs/releases/0.43.0 + What's Changed + - Increase Basic Agent free quota from 5 to 10 messages by @wwwillchen in #3147 + - feat: Add React DevTools in development by @nourzakhama2003 in #3112 + - feat: upgrade MiniMax default model to M2.7 by @octo-patch in #3038 + - Fixing formatting issue in language_model_constants.ts by @azizmejri1 in #3156 + - Feat: referencing files from the code editor by @azizmejri1 in #3146 + - feat: block unsafe npm package installs by @keppo-bot[bot] in #3152 + - fix: persist GitHub sync state across Publish tab navigation by @keppo-bot[bot] in #3151 + - feat: add "Group tabs by app" context menu option by @keppo-bot[bot] in #3150 + - Fix preview route discovery states by @keppo-bot[bot] in #3158 + - Do not auto-collapse package-lock.json in github ui by @wwwillchen in #3160 + - Bump to v0.43.0-beta.1 by @wwwillchen in #3161 + - perf: change db to WAL mode by @RyanGroch in #3140 + - Fix bot author allowlists by @keppo-bot[bot] in #3162 + - fix: pin socket firewall npx invocation by @keppo-bot[bot] in #3163 + - Separate ChatInput Prompts per-chat session by @princeaden1 in #3129 + - Adding discard changes button when reviewing uncommitted changes by @azizmejri1 in #3165 + - feat: run add-dependency installs in a PTY by @keppo-bot[bot] in #3167 + - Fix editor file switch race by @wwwillchen in #3168 + - fix: skip unsupported PowerShell scripts in Windows signing by @wwwillchen in #3169 + - Stop anthropic attribution by @wwwillchen in #3170 + - fix: exclude unsupported node-pty artifacts from windows signing by @wwwillchen in #3171 + - Fix socket firewall for windows by @wwwillchen in #3172 + - Deflake local agent consent e2e test by @wwwillchen in #3173 + New Contributors + - @octo-patch made their first contribution in #3038 + Full Changelog: v0.42.0...v0.43.0 +ReleaseNotesUrl: https://github.com/dyad-sh/dyad/releases/tag/v0.43.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dyad/Dyad/0.43.0/Dyad.Dyad.yaml b/manifests/d/Dyad/Dyad/0.43.0/Dyad.Dyad.yaml new file mode 100644 index 0000000000000..f5a589217b473 --- /dev/null +++ b/manifests/d/Dyad/Dyad/0.43.0/Dyad.Dyad.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Dyad.Dyad +PackageVersion: 0.43.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/EEO/CamIn/3.2.1.5/EEO.CamIn.locale.en-US.yaml b/manifests/e/EEO/CamIn/3.2.1.5/EEO.CamIn.locale.en-US.yaml index 444e79da176af..c5a8e771e22c5 100644 --- a/manifests/e/EEO/CamIn/3.2.1.5/EEO.CamIn.locale.en-US.yaml +++ b/manifests/e/EEO/CamIn/3.2.1.5/EEO.CamIn.locale.en-US.yaml @@ -24,5 +24,7 @@ Tags: - record - tutorial - video +- prc +- china ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/e/EdrawSoft/MindMaster/.validation b/manifests/e/EdrawSoft/MindMaster/.validation deleted file mode 100644 index ff48f125127b3..0000000000000 --- a/manifests/e/EdrawSoft/MindMaster/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"fee0fdd8-69dc-47cc-be5d-a8e6fd450b17","TestPlan":"Policy-Test-1.2","PackagePath":"manifests/e/EdrawSoft/MindMaster/9.1.2.177","CommitId":"4885fcd983ce9f3e6b5eb15db927057f994b0689"}]} \ No newline at end of file diff --git a/manifests/f/Feixiang/Feixiang/.validation b/manifests/f/Feixiang/Feixiang/.validation deleted file mode 100644 index a2661c91125cf..0000000000000 --- a/manifests/f/Feixiang/Feixiang/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"6ad0b07d-2308-4400-ae5f-c903e91882da","TestPlan":"Validation-Domain","PackagePath":"manifests/f/Feixiang/Feixiang/2.3.0","CommitId":"942e933602423f449d03a1b869cc9da08e732a5e"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/f/flick9000/WinScript/2.2.0/flick9000.WinScript.installer.yaml b/manifests/f/flick9000/WinScript/2.2.0/flick9000.WinScript.installer.yaml new file mode 100644 index 0000000000000..0b4d51465a341 --- /dev/null +++ b/manifests/f/flick9000/WinScript/2.2.0/flick9000.WinScript.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: flick9000.WinScript +PackageVersion: 2.2.0 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/flick9000/winscript/releases/download/v2.2.0/winscript-installer.exe + InstallerSha256: 59980DC191D13D648FD5C0344DB24609E3094E82105983E5B8389E4875143EDE +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-04-11 diff --git a/manifests/f/flick9000/WinScript/2.2.0/flick9000.WinScript.locale.en-US.yaml b/manifests/f/flick9000/WinScript/2.2.0/flick9000.WinScript.locale.en-US.yaml new file mode 100644 index 0000000000000..9ffa400ebfa43 --- /dev/null +++ b/manifests/f/flick9000/WinScript/2.2.0/flick9000.WinScript.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: flick9000.WinScript +PackageVersion: 2.2.0 +PackageLocale: en-US +Publisher: flick9000 +PublisherUrl: https://github.com/flick9000 +PublisherSupportUrl: https://github.com/flick9000/winscript/issues +PackageName: WinScript +PackageUrl: https://github.com/flick9000/winscript +License: GPL-3.0 +ShortDescription: Open-source tool to build your Windows 10/11 script from scratch. It includes debloat, privacy, performance & app installing scripts. +Tags: +- bloatware +- debloat +- debloater +- install-script +- installer-script +- optimize +- privacy +- privacy-tools +- script +- security +- security-tools +- telemetry +- tweaks +- windows +- windows-10 +- windows-11 +ReleaseNotesUrl: https://github.com/flick9000/winscript/releases/tag/v2.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/flick9000/WinScript/2.2.0/flick9000.WinScript.yaml b/manifests/f/flick9000/WinScript/2.2.0/flick9000.WinScript.yaml new file mode 100644 index 0000000000000..52ee1ce5b1831 --- /dev/null +++ b/manifests/f/flick9000/WinScript/2.2.0/flick9000.WinScript.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: flick9000.WinScript +PackageVersion: 2.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.installer.yaml b/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.installer.yaml new file mode 100644 index 0000000000000..8f78836156bc7 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GAM-Team.gam +PackageVersion: 7.40.01 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}_is1' +ReleaseDate: 2026-04-11 +AppsAndFeaturesEntries: +- ProductCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%SystemDrive%\GAM7' +Installers: +- Architecture: arm64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.40.01/gam-7.40.01-windows-arm64.exe + InstallerSha256: FA892870DB484B70BBFB093E4B2B6C883D8EDDBB0A66C3CF7C22D227B9B15A83 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.locale.en-US.yaml b/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.locale.en-US.yaml new file mode 100644 index 0000000000000..5638ba806f5c2 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GAM-Team.gam +PackageVersion: 7.40.01 +PackageLocale: en-US +Publisher: GAM Team - google-apps-manager@googlegroups.com +PublisherUrl: https://github.com/GAM-team +PublisherSupportUrl: https://github.com/GAM-team/GAM/issues +PackageName: gam +PackageUrl: https://github.com/GAM-team/GAM +License: Apache-2.0 +LicenseUrl: https://github.com/GAM-team/GAM/blob/HEAD/LICENSE +ShortDescription: command line management for Google Workspace +Tags: +- gam +- google +- google-admin-sdk +- google-api +- google-apps +- google-calendar +- google-cloud +- google-drive +- google-workspace +- gsuite +- oauth2 +- oauth2-client +- python +ReleaseNotes: |- + - 7.40.01 + Updated gam print filelist|filecounts to handle the permissionDetails subfield + of the permissions field for My Drives; this useful when trying to display permission inheritance. + An additional API call per file is required to get the permissionDetails subfield. + gam user user@domain.com print filelist fields id,name,mimetype,basicpermissions,permissiondetails oneitemperrow + gam user user@domain.com print filelist fields id,name,mimetype,basicpermissions,permissiondetails pm inherited false em pmfilter oneitemperrow + - See Update History +ReleaseNotesUrl: https://github.com/GAM-team/GAM/releases/tag/v7.40.01 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/GAM-team/GAM/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.yaml b/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.yaml new file mode 100644 index 0000000000000..a57f3e1b25f3f --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: GAM-Team.gam +PackageVersion: 7.40.01 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GamaPlatform/GamaAlpha/.validation b/manifests/g/GamaPlatform/GamaAlpha/.validation deleted file mode 100644 index 62c45bb887346..0000000000000 --- a/manifests/g/GamaPlatform/GamaAlpha/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"1b0f6ea1-b6f3-4bed-907b-f71b4b4ae1b0","TestPlan":"Policy-Test-2.7","PackagePath":"manifests/g/GamaPlatform/GamaAlpha/1.9.3-89d4463","CommitId":"9b7ed9d02b41c9eaba214f48ddb1f2152d9f30d3"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.installer.yaml similarity index 57% rename from manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.installer.yaml rename to manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.installer.yaml index 4d6db39e4212e..b79ddcd83497d 100644 --- a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.installer.yaml +++ b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Google.Chrome.Canary -PackageVersion: 149.0.7785.0 +PackageVersion: 149.0.7786.0 InstallerType: exe Scope: user InstallModes: @@ -37,13 +37,13 @@ FileExtensions: ProductCode: Google Chrome SxS Installers: - Architecture: x86 - InstallerUrl: https://dl.google.com/release2/chrome/ac6ijxhfbwgjjumzpygi2v5kbl5a_149.0.7785.0/149.0.7785.0_chrome_installer_uncompressed.exe - InstallerSha256: 447B14CE43F4F30879A5FAC423C1A45287A8863AFB51E23BD60496B3EE23A623 + InstallerUrl: https://dl.google.com/release2/chrome/agk4gh7rvx2jzaq2ztgpnjkbg4_149.0.7786.0/149.0.7786.0_chrome_installer_uncompressed.exe + InstallerSha256: 7C02BD2492D204905A886728957E8BA435AB3E4967BA525B9661D71A64F21ED9 - Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acbmyjuvandrkhxjhvncnf4e3xta_149.0.7785.0/149.0.7785.0_chrome_installer_uncompressed.exe - InstallerSha256: ACF1971DDEF8B2380E848112E6AC74CB288C6B07CAEF2D020A6404304F8C5F1D + InstallerUrl: https://dl.google.com/release2/chrome/nf6mec7ozmkitllmnuebpwx2gy_149.0.7786.0/149.0.7786.0_chrome_installer_uncompressed.exe + InstallerSha256: 5BA58591E0F35A49A4638C9365B21BC46F017D0EC8C44618012305FD593E932C - Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/psbvqoqkpzd4ltoi4owhwe3uwa_149.0.7785.0/149.0.7785.0_chrome_installer_uncompressed.exe - InstallerSha256: B9FCF179D19F10EBC09D9ACFA545DBF3A03761007B3CB39736BD82D34854039D + InstallerUrl: https://dl.google.com/release2/chrome/acijg6jcygksgdg6nm66jld2pkaa_149.0.7786.0/149.0.7786.0_chrome_installer_uncompressed.exe + InstallerSha256: 802F6B7CC3881BA415807213703D5658ECB8BAD100EA76AAF5ED0D4C99442906 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.en-US.yaml similarity index 96% rename from manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.en-US.yaml rename to manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.en-US.yaml index a0693c7f19df5..91f3136eae2b4 100644 --- a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.en-US.yaml +++ b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Google.Chrome.Canary -PackageVersion: 149.0.7785.0 +PackageVersion: 149.0.7786.0 PackageLocale: en-US Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.nb-NO.yaml similarity index 96% rename from manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.nb-NO.yaml rename to manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.nb-NO.yaml index 89b613bf92412..2a8e93372e078 100644 --- a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.nb-NO.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Google.Chrome.Canary -PackageVersion: 149.0.7785.0 +PackageVersion: 149.0.7786.0 PackageLocale: nb-NO Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.zh-CN.yaml similarity index 96% rename from manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.zh-CN.yaml rename to manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.zh-CN.yaml index caa8fd5c34cac..82bea66476b7e 100644 --- a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Google.Chrome.Canary -PackageVersion: 149.0.7785.0 +PackageVersion: 149.0.7786.0 PackageLocale: zh-CN Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.yaml similarity index 89% rename from manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.yaml rename to manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.yaml index 135156567b035..3bf364cfa50cb 100644 --- a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.yaml +++ b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Google.Chrome.Canary -PackageVersion: 149.0.7785.0 +PackageVersion: 149.0.7786.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/h/HaiYing/OfficeCLI/1.0.43/HaiYing.OfficeCLI.installer.yaml b/manifests/h/HaiYing/OfficeCLI/1.0.43/HaiYing.OfficeCLI.installer.yaml new file mode 100644 index 0000000000000..c35552373cc4f --- /dev/null +++ b/manifests/h/HaiYing/OfficeCLI/1.0.43/HaiYing.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: HaiYing.OfficeCLI +PackageVersion: 1.0.43 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.43/officecli-win-x64.exe + InstallerSha256: 8244D1B2BD594A68C93208BA5C1898EF5263BC87B931EA838250ED5BDFC7FA8C +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.43/officecli-win-arm64.exe + InstallerSha256: 5719D7EA97AB08067D5796FDD0DE96EC7E3C158C8B3360BEF64082EC5A75F410 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/HaiYing/OfficeCLI/1.0.43/HaiYing.OfficeCLI.locale.en-US.yaml b/manifests/h/HaiYing/OfficeCLI/1.0.43/HaiYing.OfficeCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..6210e54d2620b --- /dev/null +++ b/manifests/h/HaiYing/OfficeCLI/1.0.43/HaiYing.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: HaiYing.OfficeCLI +PackageVersion: 1.0.43 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.42...v1.0.43' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.43 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/HaiYing/OfficeCLI/1.0.43/HaiYing.OfficeCLI.locale.zh-CN.yaml b/manifests/h/HaiYing/OfficeCLI/1.0.43/HaiYing.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..80db42102e09a --- /dev/null +++ b/manifests/h/HaiYing/OfficeCLI/1.0.43/HaiYing.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: HaiYing.OfficeCLI +PackageVersion: 1.0.43 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/HaiYing/OfficeCLI/1.0.43/HaiYing.OfficeCLI.yaml b/manifests/h/HaiYing/OfficeCLI/1.0.43/HaiYing.OfficeCLI.yaml new file mode 100644 index 0000000000000..0ac39b0ae97a0 --- /dev/null +++ b/manifests/h/HaiYing/OfficeCLI/1.0.43/HaiYing.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: HaiYing.OfficeCLI +PackageVersion: 1.0.43 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/HamzaAbdulWahab/Bonjou/1.1.0/HamzaAbdulWahab.Bonjou.installer.yaml b/manifests/h/HamzaAbdulWahab/Bonjou/1.1.0/HamzaAbdulWahab.Bonjou.installer.yaml index 5e47de7ae38a4..c43c970cba69c 100644 --- a/manifests/h/HamzaAbdulWahab/Bonjou/1.1.0/HamzaAbdulWahab.Bonjou.installer.yaml +++ b/manifests/h/HamzaAbdulWahab/Bonjou/1.1.0/HamzaAbdulWahab.Bonjou.installer.yaml @@ -8,7 +8,7 @@ Commands: Installers: - Architecture: x64 InstallerUrl: https://github.com/hamzaabdulwahab/bonjou-cli/releases/download/v1.1.0/bonjou.exe - InstallerSha256: c3c6dd5fabf8f03128a92289547a3e8e4b74c46254497052f26349d0106210b6 + InstallerSha256: 696086d121736a8de9e3d75130f83b095ab5fd8a4c9f20c0fda49a33545edb10 PortableCommandAlias: bonjou ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/h/HarumiWeb/Eitango/0.7.2/HarumiWeb.Eitango.installer.yaml b/manifests/h/HarumiWeb/Eitango/0.7.2/HarumiWeb.Eitango.installer.yaml new file mode 100644 index 0000000000000..19ed617c57245 --- /dev/null +++ b/manifests/h/HarumiWeb/Eitango/0.7.2/HarumiWeb.Eitango.installer.yaml @@ -0,0 +1,18 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: HarumiWeb.Eitango +PackageVersion: 0.7.2 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-04-11" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: eitango.exe + PortableCommandAlias: eitango + InstallerUrl: https://github.com/harumiWeb/eitango/releases/download/v0.7.2/eitango_0.7.2_windows_x86_64.zip + InstallerSha256: 6d50a6ee3e9bdaa0bbefa658f951f2e523f77dcffade05b11029d3134f3ab0a3 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/HarumiWeb/Eitango/0.7.2/HarumiWeb.Eitango.locale.en-US.yaml b/manifests/h/HarumiWeb/Eitango/0.7.2/HarumiWeb.Eitango.locale.en-US.yaml new file mode 100644 index 0000000000000..7d741bef09f06 --- /dev/null +++ b/manifests/h/HarumiWeb/Eitango/0.7.2/HarumiWeb.Eitango.locale.en-US.yaml @@ -0,0 +1,23 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: HarumiWeb.Eitango +PackageVersion: 0.7.2 +PackageLocale: en-US +Publisher: HarumiWeb +PublisherUrl: https://github.com/harumiWeb +PublisherSupportUrl: https://github.com/harumiWeb/eitango/issues +PackageName: eitango +PackageUrl: https://github.com/harumiWeb/eitango +License: Apache-2.0 +LicenseUrl: https://github.com/harumiWeb/eitango/blob/v0.7.2/LICENSE +ShortDescription: Terminal-based English vocabulary learning CLI. +Description: Interactive English vocabulary learning CLI built with Go. +Moniker: eitango +Tags: + - go + - cli + - english + - learning + - vocabulary +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/the-code-fixer-23/go-toolkit/0.11.5-alpha/the-code-fixer-23.go-toolkit.yaml b/manifests/h/HarumiWeb/Eitango/0.7.2/HarumiWeb.Eitango.yaml similarity index 73% rename from manifests/t/the-code-fixer-23/go-toolkit/0.11.5-alpha/the-code-fixer-23.go-toolkit.yaml rename to manifests/h/HarumiWeb/Eitango/0.7.2/HarumiWeb.Eitango.yaml index 2d7435edd47f0..ac73ba17344cf 100644 --- a/manifests/t/the-code-fixer-23/go-toolkit/0.11.5-alpha/the-code-fixer-23.go-toolkit.yaml +++ b/manifests/h/HarumiWeb/Eitango/0.7.2/HarumiWeb.Eitango.yaml @@ -1,7 +1,7 @@ # This file was generated by GoReleaser. DO NOT EDIT. # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: the-code-fixer-23.go-toolkit -PackageVersion: 0.11.5-alpha +PackageIdentifier: HarumiWeb.Eitango +PackageVersion: 0.7.2 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.10.2/Hitalin.NoteDeck.installer.yaml b/manifests/h/Hitalin/NoteDeck/0.10.2/Hitalin.NoteDeck.installer.yaml new file mode 100644 index 0000000000000..c1e2c59379bfd --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.10.2/Hitalin.NoteDeck.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.10.2 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ProductCode: NoteDeck +ReleaseDate: 2026-04-11 +AppsAndFeaturesEntries: +- Publisher: notedeck + ProductCode: NoteDeck +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\NoteDeck' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hitalin/notedeck/releases/download/v0.10.2/NoteDeck-0.10.2-windows-x64-setup.exe + InstallerSha256: DFF07CDB671BF201CC742B6AE46BAF6910D9D64ED85AA2A6661C80166D61E0F9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.10.2/Hitalin.NoteDeck.locale.en-US.yaml b/manifests/h/Hitalin/NoteDeck/0.10.2/Hitalin.NoteDeck.locale.en-US.yaml new file mode 100644 index 0000000000000..4156658f895d1 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.10.2/Hitalin.NoteDeck.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.10.2 +PackageLocale: en-US +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/main/LICENSE +ShortDescription: A multi-platform deck client for Misskey and its forks +Description: |- + NoteDeck is a deck client for Misskey and its forks. + It provides efficient multi-server timeline viewing with features like local full-text search, + AI integration, and localhost API that are only possible with a native desktop application. +Tags: +- deck +- fediverse +- misskey +- social-media +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.10.2/Hitalin.NoteDeck.locale.ja-JP.yaml b/manifests/h/Hitalin/NoteDeck/0.10.2/Hitalin.NoteDeck.locale.ja-JP.yaml new file mode 100644 index 0000000000000..df954861f9912 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.10.2/Hitalin.NoteDeck.locale.ja-JP.yaml @@ -0,0 +1,32 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.10.2 +PackageLocale: ja-JP +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PublisherSupportUrl: https://github.com/hitalin/notedeck/issues +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/HEAD/LICENSE +ShortDescription: Misskey とそのフォークに対応したマルチプラットフォーム対応デッキクライアント +Description: |- + NoteDeck は Misskey とそのフォークに対応したデッキクライアントです。 + 複数サーバーのタイムラインを効率よく閲覧でき、ローカル全文検索、AI 統合、localhost API など + デスクトップネイティブならではの機能を備えています。 +Tags: +- deck +- fediverse +- misskey +- social-media +ReleaseNotes: |- + What's Changed + Other Changes + - feat: ランディングページにMisStoreリンクを追加 by @hitalin in #337 + - Release v0.10.2 by @hitalin in #338 + Full Changelog: v0.10.1...v0.10.2 +ReleaseNotesUrl: https://github.com/hitalin/notedeck/releases/tag/v0.10.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.10.2/Hitalin.NoteDeck.yaml b/manifests/h/Hitalin/NoteDeck/0.10.2/Hitalin.NoteDeck.yaml new file mode 100644 index 0000000000000..3a6a0c5b480da --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.10.2/Hitalin.NoteDeck.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.10.2 +DefaultLocale: ja-JP +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/Huawei/IdeaShare/7.06.1.71/Huawei.IdeaShare.locale.en-US.yaml b/manifests/h/Huawei/IdeaShare/7.06.1.71/Huawei.IdeaShare.locale.en-US.yaml index bb4bbae4b9dac..6509232bdcc01 100644 --- a/manifests/h/Huawei/IdeaShare/7.06.1.71/Huawei.IdeaShare.locale.en-US.yaml +++ b/manifests/h/Huawei/IdeaShare/7.06.1.71/Huawei.IdeaShare.locale.en-US.yaml @@ -14,11 +14,13 @@ PackageUrl: https://www.huaweicloud.com/intl/product/ideashare.html License: Freeware Copyright: Copyright © Huawei Technologies Co., Ltd. 2026 All rights reserved. CopyrightUrl: https://www.huaweicloud.com/intl/declaration/statement.html -ShortDescription: Mirror your Windows PC screen to Huawei IdeaHub +ShortDescription: Mirror your Windows PC screen to Huawei IdeaHub. Tags: - cast - ideahub - mirror - projection +- prc +- china ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.17.0/hellodigua.ChatLab.installer.yaml b/manifests/h/hellodigua/ChatLab/0.17.0/hellodigua.ChatLab.installer.yaml new file mode 100644 index 0000000000000..81910b77fcb47 --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.17.0/hellodigua.ChatLab.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.17.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 5c93c6d5-cfd9-53ea-a37a-26c1e3d35c8d +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/hellodigua/ChatLab/releases/download/v0.17.0/ChatLab-0.17.0-setup.exe + InstallerSha256: 70E5B489D01C2EFD577B6C0EC898DEDF2C326803BD5569F5B9CC86CD48CCD721 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/hellodigua/ChatLab/releases/download/v0.17.0/ChatLab-0.17.0-setup.exe + InstallerSha256: 70E5B489D01C2EFD577B6C0EC898DEDF2C326803BD5569F5B9CC86CD48CCD721 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.17.0/hellodigua.ChatLab.locale.en-US.yaml b/manifests/h/hellodigua/ChatLab/0.17.0/hellodigua.ChatLab.locale.en-US.yaml new file mode 100644 index 0000000000000..dfcbf34f19148 --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.17.0/hellodigua.ChatLab.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.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.17.0 +PackageLocale: en-US +Publisher: digua +PublisherUrl: https://digua.moe/ +PublisherSupportUrl: https://github.com/hellodigua/ChatLab/issues +PackageName: ChatLab +PackageUrl: https://chatlab.fun/ +License: AGPL-3.0 +LicenseUrl: https://github.com/hellodigua/ChatLab/blob/HEAD/LICENSE +Copyright: Copyright © 2026 ChatLab +ShortDescription: 'A Local-first chat analysis tool: Relive your social memories powered by SQL and AI Agents.' +Description: |- + ChatLab is a free, open-source, and local-first application dedicated to analyzing chat records. Through an AI Agent and a flexible SQL engine, you can freely dissect, query, and even reconstruct your social data. + We refuse to upload your privacy to the cloud; instead, we bring powerful analytics directly to your computer. + Currently supported: Chat record analysis for LINE, WeChat, QQ, WhatsApp, Instagram and Discord. Upcoming support: Messenger, iMessage. + The project is still in early iteration, so there are many bugs and unfinished features. If you encounter any issues, feel free to provide feedback. + Core Features + - 🚀 Ultimate Performance: Utilizing stream computing and multi-threaded parallel architecture, it maintains fluid interaction and response even with millions of chat records. + - 🔒 Privacy Protection: Chat records and configurations are stored in your local database, and all analysis is performed locally (with the exception of AI features). + - 🤖 Intelligent AI Agent: Integrated with 10+ Function Calling tools and supporting dynamic scheduling to deeply excavate interesting insights from chat records. + - 📊 Multi-dimensional Data Visualization: Provides intuitive analysis charts for activity trends, time distribution patterns, member rankings, and more. + - 🧩 Format Standardization: Through a powerful data abstraction layer, it bridges the format differences between various chat applications, allowing any chat records to be analyzed. +Tags: +- chat +- chat-records +ReleaseNotesUrl: https://github.com/hellodigua/ChatLab/releases/tag/v0.17.0 +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://chatlab.fun/usage/how-to-export.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.17.0/hellodigua.ChatLab.locale.zh-CN.yaml b/manifests/h/hellodigua/ChatLab/0.17.0/hellodigua.ChatLab.locale.zh-CN.yaml new file mode 100644 index 0000000000000..77ba51b9a2bae --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.17.0/hellodigua.ChatLab.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.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.17.0 +PackageLocale: zh-CN +PackageUrl: https://chatlab.fun/cn/ +ShortDescription: 本地化的聊天记录分析工具,通过 SQL 和 AI Agent 回顾你的社交记忆。 +Description: |- + ChatLab 是一个免费、开源、本地化的,专注于分析聊天记录的应用。通过 AI Agent 和灵活的 SQL 引擎,你可以自由地拆解、查询甚至重构你的社交数据。 + 目前已支持: WhatsApp、LINE、微信、QQ、Discord、Instagram 的聊天记录分析,即将支持: iMessage、Messenger、Kakao Talk。 + 核心特性 + - 🚀 极致性能:使用流式计算与多线程并行架构,就算是百万条级别的聊天记录,依然拥有丝滑交互和响应。 + - 🔒 保护隐私:聊天记录和配置都存在你的本地数据库,所有分析都在本地进行(AI 功能例外)。 + - 🤖 智能 AI Agent:集成 10+ Function Calling 工具,支持动态调度,深度挖掘聊天记录中的更多有趣。 + - 📊 多维数据可视化:提供活跃度趋势、时间规律分布、成员排行等多个维度的直观分析图表。 + - 🧩 格式标准化:通过强大的数据抽象层,抹平不同聊天软件的格式差异,任何聊天记录都能分析。 +Tags: +- 聊天 +- 聊天记录 +ReleaseNotes: |- + What's New + This release strengthens WhatsApp import parsing and specified-format imports, while refreshing Overview cards and adding sharing, screenshots, and debugging utilities. + 更新内容 + 重构并优化总览、视图等卡片的样式,这个版本的审美大幅度提升!并完善 WhatsApp 导入解析逻辑,同时在导入失败后支持指定格式导入,完善了截图与调试能力。 +ReleaseNotesUrl: https://github.com/hellodigua/ChatLab/releases/tag/v0.9.3 +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://chatlab.fun/cn/usage/how-to-export.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.17.0/hellodigua.ChatLab.yaml b/manifests/h/hellodigua/ChatLab/0.17.0/hellodigua.ChatLab.yaml new file mode 100644 index 0000000000000..317c83694701c --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.17.0/hellodigua.ChatLab.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.17.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/iDescriptor/iDescriptor/v0.4.0/iDescriptor.iDescriptor.installer.yaml b/manifests/i/iDescriptor/iDescriptor/v0.4.0/iDescriptor.iDescriptor.installer.yaml new file mode 100644 index 0000000000000..2a680098c0e4c --- /dev/null +++ b/manifests/i/iDescriptor/iDescriptor/v0.4.0/iDescriptor.iDescriptor.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: iDescriptor.iDescriptor +PackageVersion: v0.4.0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +UpgradeBehavior: uninstallPrevious +ProductCode: '{EF2F8AEB-D513-454E-A8CC-74810B24F661}' +ReleaseDate: 2026-04-11 +AppsAndFeaturesEntries: +- ProductCode: '{EF2F8AEB-D513-454E-A8CC-74810B24F661}' + UpgradeCode: '{D6C5B4A3-F2E1-D0C9-B8A7-F6E5D4C3B2A1}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\.\iDescriptor' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iDescriptor/iDescriptor/releases/download/v0.4.0/iDescriptor-v0.4.0-Windows_x86_64.msi + InstallerSha256: 8B4230D7A6C5B96126BE40D20869EB395BDB3D82F32E81B7B040D73EE8E69C35 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/iDescriptor/iDescriptor/v0.4.0/iDescriptor.iDescriptor.locale.en-US.yaml b/manifests/i/iDescriptor/iDescriptor/v0.4.0/iDescriptor.iDescriptor.locale.en-US.yaml new file mode 100644 index 0000000000000..cad6e8345782c --- /dev/null +++ b/manifests/i/iDescriptor/iDescriptor/v0.4.0/iDescriptor.iDescriptor.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.12.0.schema.json + +PackageIdentifier: iDescriptor.iDescriptor +PackageVersion: v0.4.0 +PackageLocale: en-US +Publisher: iDescriptor +PublisherUrl: https://github.com/iDescriptor +PublisherSupportUrl: https://github.com/iDescriptor/iDescriptor/issues +Author: https://github.com/uncor3 +PackageName: iDescriptor +PackageUrl: https://idescriptor.github.io/ +License: AGPL-3.0 +LicenseUrl: https://github.com/iDescriptor/iDescriptor/blob/v0.1.0/LICENSE +ShortDescription: A free, open-source, and cross-platform iDevice management tool. +Tags: +- apple +- cpp +- idevice +- iphone +- libimobiledevice +ReleaseNotes: |- + What's new in this release? + - Wireless device support: Yes, you can now connect to your iDevice wirelessly + - iOS 17+ support: Previously, you could not use virtual location and other features on iOS 17 and above, but now you can! + - Status Balloon: We have added a status widget that shows ongoing operations (exporting, importing, etc.) and their progress + - Moved to Rust: We have moved the backend to Rust, which has improved performance and stability. + - New UI: We have huge UI improvements for Windows 11 (Mica effect), we will be improving the UI for other platforms in the future. + Since we moved to a Rust backend, old device support (iOS 10 and below) isn't as good as it used to be but we will be improving it in the future. +ReleaseNotesUrl: https://github.com/iDescriptor/iDescriptor/releases/tag/v0.4.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iDescriptor/iDescriptor/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/iDescriptor/iDescriptor/v0.4.0/iDescriptor.iDescriptor.yaml b/manifests/i/iDescriptor/iDescriptor/v0.4.0/iDescriptor.iDescriptor.yaml new file mode 100644 index 0000000000000..3db5879fc23aa --- /dev/null +++ b/manifests/i/iDescriptor/iDescriptor/v0.4.0/iDescriptor.iDescriptor.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: iDescriptor.iDescriptor +PackageVersion: v0.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/iQIYI/iQIYI/14.3.5.9877/iQIYI.iQIYI.locale.en-US.yaml b/manifests/i/iQIYI/iQIYI/14.3.5.9877/iQIYI.iQIYI.locale.en-US.yaml index 9936e0536209b..add281c68c668 100644 --- a/manifests/i/iQIYI/iQIYI/14.3.5.9877/iQIYI.iQIYI.locale.en-US.yaml +++ b/manifests/i/iQIYI/iQIYI/14.3.5.9877/iQIYI.iQIYI.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://www.iqiyi.com/appstore.html License: Proprietary LicenseUrl: https://www.iqiyi.com/user/register/protocol.html Copyright: Copyright © 2026 iQIYI All Rights Reserved -ShortDescription: iQIYI Windows client app +ShortDescription: iQIYI Windows client app. Description: iQIYI comes with smooth streaming service, easy to use interface & tons of popular dramas, movies and TV shows! Tags: - film @@ -26,6 +26,8 @@ Tags: - series - show - video +- prc +- china PurchaseUrl: https://vip.iqiyi.com/ ManifestType: locale ManifestVersion: 1.12.0 diff --git a/manifests/j/JLC/LCEDA/6.5.55/JLC.LCEDA.locale.en-US.yaml b/manifests/j/JLC/LCEDA/6.5.55/JLC.LCEDA.locale.en-US.yaml index 62eb6ff0631ce..6fe3f9a58bbd5 100644 --- a/manifests/j/JLC/LCEDA/6.5.55/JLC.LCEDA.locale.en-US.yaml +++ b/manifests/j/JLC/LCEDA/6.5.55/JLC.LCEDA.locale.en-US.yaml @@ -14,11 +14,13 @@ PackageUrl: https://lceda.cn/page/download License: Proprietary LicenseUrl: https://lceda.cn/page/legal Copyright: Copyright (C) 2026 LCEDA.cn. All rights reserved. -ShortDescription: Simple and efficient Chinese PCB design software +ShortDescription: Simple and efficient Chinese PCB design software. Tags: - eda - electronic-design-automation - pcb +- prc +- china ReleaseNotesUrl: https://lceda.cn/page/update-record PurchaseUrl: https://lceda.cn/page/pricing Documentations: diff --git a/manifests/j/JayPrall/ColorCop/5.5.7/JayPrall.ColorCop.installer.yaml b/manifests/j/JayPrall/ColorCop/5.5.7/JayPrall.ColorCop.installer.yaml new file mode 100644 index 0000000000000..5241f42e37c2f --- /dev/null +++ b/manifests/j/JayPrall/ColorCop/5.5.7/JayPrall.ColorCop.installer.yaml @@ -0,0 +1,25 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: JayPrall.ColorCop +PackageVersion: 5.5.7 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +ProductCode: '{197A931D-2802-405D-B53E-67DF09D5BE2E}}_is1' +ReleaseDate: 2026-04-11 +AppsAndFeaturesEntries: +- DisplayName: Color Cop 5.5.7 + ProductCode: '{197A931D-2802-405D-B53E-67DF09D5BE2E}}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Color Cop' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/ColorCop/ColorCop/releases/download/v5.5.7/colorcop-setup.exe + InstallerSha256: 0DC47A6C693F76E04C7E6867CAED164960A42565C058BFC5A2FB223DD91CD1A4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JayPrall/ColorCop/5.5.7/JayPrall.ColorCop.locale.en-GB.yaml b/manifests/j/JayPrall/ColorCop/5.5.7/JayPrall.ColorCop.locale.en-GB.yaml new file mode 100644 index 0000000000000..3c40be8d2f263 --- /dev/null +++ b/manifests/j/JayPrall/ColorCop/5.5.7/JayPrall.ColorCop.locale.en-GB.yaml @@ -0,0 +1,18 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: JayPrall.ColorCop +PackageVersion: 5.5.7 +PackageLocale: en-GB +Publisher: Jay Prall +PackageName: Color Cop +PackageUrl: https://github.com/ColorCop/ColorCop +License: MIT +ShortDescription: A Windows-based colour picker utility built with Microsoft Foundation Classes (MFC). +Tags: +- color-picker +- colorpicker +- colour-picker +- colourpicker +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JayPrall/ColorCop/5.5.7/JayPrall.ColorCop.locale.en-US.yaml b/manifests/j/JayPrall/ColorCop/5.5.7/JayPrall.ColorCop.locale.en-US.yaml new file mode 100644 index 0000000000000..9337c5cf6259c --- /dev/null +++ b/manifests/j/JayPrall/ColorCop/5.5.7/JayPrall.ColorCop.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: JayPrall.ColorCop +PackageVersion: 5.5.7 +PackageLocale: en-US +Publisher: Jay Prall +PublisherUrl: https://github.com/ColorCop +PublisherSupportUrl: https://github.com/ColorCop/ColorCop/issues +PackageName: Color Cop +PackageUrl: https://github.com/ColorCop/ColorCop +License: MIT +LicenseUrl: https://github.com/ColorCop/ColorCop/blob/HEAD/LICENSE.txt +ShortDescription: A Windows-based color picker utility built with Microsoft Foundation Classes (MFC). +Tags: +- color-picker +- colorpicker +- colour-picker +- colourpicker +ReleaseNotes: |- + ColorCop Release + This release was generated automatically from tag v5.5.7. + The changelog and commit summary appear below. + What's Changed + - ci: rename choco workflow and add WinGet publish workflow by @j4y in #138 + - fix(ci/winget): use release-tag input and expose full tag in metadata by @j4y in #139 + - Document Chocolately and Wiinget post release actions by @j4y in #140 + - refactor(headers): modernize ColorCop headers and remove obsolete MFC… by @j4y in #141 + - chore(build): upgrade project to C++20 by @j4y in #142 + - fix(vcxproj): remove AdditionalManifestFiles to prevent duplicate man… by @j4y in #143 + - refactor: replace C-style casts with static_cast and simplify cpplint… by @j4y in #144 + - chore(deps): bump jdx/mise-action from 3 to 4 by @dependabot[bot] in #146 + - chore(deps): bump microsoft/setup-msbuild from 2 to 3 by @dependabot[bot] in #145 + - refactor(mfc): modernize PCH usage and replace legacy min/max helpers by @j4y in #147 + - Security policy by @j4y in #149 + - refactor(colorcop): fix ScreenToClient bug and correct prefix checks by @j4y in #150 + - Systray by @j4y in #151 + - refactor(color): modernize websafe snap logic and remove narrowing wa… by @j4y in #152 + - chore(vcxproj): add unicode, sdk pin, caret diagnostics and conforman… by @j4y in #153 + - refactor(ui): modernize OnInitDialog and label font flags by @j4y in #155 + - chore: build on push to main by @j4y in #156 + - Refactor default settings and add logging by @j4y in #157 + - Remove unused by @j4y in #158 + - fix(color): replace incorrect CMY math with proper RGB→CMYK conversio… by @j4y in #159 + - Release 5.5.7 by @j4y in #160 + Full Changelog: v5.5.6...v5.5.7 +ReleaseNotesUrl: https://github.com/ColorCop/ColorCop/releases/tag/v5.5.7 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JayPrall/ColorCop/5.5.7/JayPrall.ColorCop.yaml b/manifests/j/JayPrall/ColorCop/5.5.7/JayPrall.ColorCop.yaml new file mode 100644 index 0000000000000..bce93d77741df --- /dev/null +++ b/manifests/j/JayPrall/ColorCop/5.5.7/JayPrall.ColorCop.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: JayPrall.ColorCop +PackageVersion: 5.5.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.7/Jellyfin2Samsung.Jellyfin2Samsung.installer.yaml b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.7/Jellyfin2Samsung.Jellyfin2Samsung.installer.yaml new file mode 100644 index 0000000000000..b208315eced4d --- /dev/null +++ b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.7/Jellyfin2Samsung.Jellyfin2Samsung.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Jellyfin2Samsung.Jellyfin2Samsung +PackageVersion: 2.2.0.7 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{68C73DF4-1FA4-4ABE-A73F-23EB84BD4354}' +ReleaseDate: 2026-04-11 +AppsAndFeaturesEntries: +- ProductCode: '{68C73DF4-1FA4-4ABE-A73F-23EB84BD4354}' + UpgradeCode: '{6F3E2A1B-4C5D-4E6F-A7B8-9C0D1E2F3A4B}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Jellyfin2Samsung\Assets' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/releases/download/v2.2.0.7/Jellyfin2Samsung-v2.2.0.7-win-x64.msi + InstallerSha256: A42A9875FA81D5D600D4FF9E706BCCF0959BD0C90C0FADF3F49F050814201B17 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.7/Jellyfin2Samsung.Jellyfin2Samsung.locale.en-US.yaml b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.7/Jellyfin2Samsung.Jellyfin2Samsung.locale.en-US.yaml new file mode 100644 index 0000000000000..a94aa973be425 --- /dev/null +++ b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.7/Jellyfin2Samsung.Jellyfin2Samsung.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Jellyfin2Samsung.Jellyfin2Samsung +PackageVersion: 2.2.0.7 +PackageLocale: en-US +Publisher: Jellyfin2Samsung +PublisherUrl: https://github.com/Jellyfin2Samsung +PublisherSupportUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/issues +PackageName: Jellyfin2Samsung +PackageUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer +License: MIT +LicenseUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/blob/HEAD/LICENSE +ShortDescription: Bridge tool to install Jellyfin on all Samsung Tizen Devices +Tags: +- jellyfin +- jellyfin-tizen +- sdb +- tizen +- tizen-studio +- tizen-tv +ReleaseNotes: |- + 📦 [v2.2.0.7] – 2026-04-11 + ✅ What's New & Improved + - NixOS Shell added by @Confused-Engineer #321 + - Merged capability calls to prevent unexpected connection error #318 + - CustomWGT Path cleared after installation #320 + ─────────────────────┬─────────┬─────────────── + Platform │Status │Notes + ─────────────────────┼─────────┼─────────────── + 🍎 macOS (.app + dmg)│✅ Stable│ARM64 + Intel + ─────────────────────┼─────────┼─────────────── + 🍎 macOS (CLI) │✅ Stable│Per-arch tar.gz + ─────────────────────┼─────────┼─────────────── + 🐧 Linux │✅ Stable│tar.gz / .deb + ─────────────────────┼─────────┼─────────────── + 🪟 Windows │✅ Stable│CI-built + ─────────────────────┴─────────┴─────────────── + 🛡️ Security Notice + Antivirus warnings may occur and are likely false positives. +ReleaseNotesUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/releases/tag/v2.2.0.7 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.7/Jellyfin2Samsung.Jellyfin2Samsung.yaml b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.7/Jellyfin2Samsung.Jellyfin2Samsung.yaml new file mode 100644 index 0000000000000..33b68ad2e815f --- /dev/null +++ b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.7/Jellyfin2Samsung.Jellyfin2Samsung.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Jellyfin2Samsung.Jellyfin2Samsung +PackageVersion: 2.2.0.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/JinweiZhiguang/MasterGo/1.10.6/JinweiZhiguang.MasterGo.locale.en-US.yaml b/manifests/j/JinweiZhiguang/MasterGo/1.10.6/JinweiZhiguang.MasterGo.locale.en-US.yaml index e474c65598003..4c982ba0befe4 100644 --- a/manifests/j/JinweiZhiguang/MasterGo/1.10.6/JinweiZhiguang.MasterGo.locale.en-US.yaml +++ b/manifests/j/JinweiZhiguang/MasterGo/1.10.6/JinweiZhiguang.MasterGo.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://mastergo.com/resource License: Proprietary LicenseUrl: https://mastergo.com/serviceAgreement Copyright: Copyright © 2025 Beijing Jinwei Zhiguang Information Technology Co., Ltd. -ShortDescription: Professional UI/UX design tool for teams +ShortDescription: Professional UI/UX design tool for teams. Description: MasterGo is a one-stop online product design tool for team collaboration, which supports multi-user real-time collaboration and features online product design, prototype building and design, web development design, interaction design, etc. It helps build a design system quickly and provides product designers, interaction designers, engineers and product managers with a simpler and more flexible working mode. Tags: - design @@ -30,6 +30,8 @@ Tags: - user-interface - ux - wireframe +- prc +- china ReleaseNotesUrl: https://mastergo.com/updateRecord PurchaseUrl: https://mastergo.com/pricing Documentations: diff --git a/manifests/j/JordanCoin/docmap/0.3.0/JordanCoin.docmap.installer.yaml b/manifests/j/JordanCoin/docmap/0.3.0/JordanCoin.docmap.installer.yaml new file mode 100644 index 0000000000000..765c8777ce559 --- /dev/null +++ b/manifests/j/JordanCoin/docmap/0.3.0/JordanCoin.docmap.installer.yaml @@ -0,0 +1,18 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: JordanCoin.docmap +PackageVersion: 0.3.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-04-11" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: docmap.exe + PortableCommandAlias: docmap + InstallerUrl: https://github.com/JordanCoin/docmap/releases/download/v0.3.0/docmap_0.3.0_windows_amd64.zip + InstallerSha256: c9e170c898a5efdc615978576b75825794883e318b678f1ebdb0b8a6ce4c8e4f + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JordanCoin/docmap/0.3.0/JordanCoin.docmap.locale.en-US.yaml b/manifests/j/JordanCoin/docmap/0.3.0/JordanCoin.docmap.locale.en-US.yaml new file mode 100644 index 0000000000000..cfbd413359d6f --- /dev/null +++ b/manifests/j/JordanCoin/docmap/0.3.0/JordanCoin.docmap.locale.en-US.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: JordanCoin.docmap +PackageVersion: 0.3.0 +PackageLocale: en-US +Publisher: JordanCoin +PublisherUrl: https://github.com/JordanCoin +PublisherSupportUrl: https://github.com/JordanCoin/docmap/issues +PackageName: docmap +PackageUrl: https://github.com/JordanCoin/docmap +License: MIT +LicenseUrl: https://github.com/JordanCoin/docmap/blob/main/LICENSE +ShortDescription: Instant documentation structure for LLMs and humans +Description: | + docmap generates a compact, structured map of your documentation + that LLMs can instantly understand. Navigate massive docs without + burning tokens. +Moniker: docmap +Tags: + - cli + - developer-tools + - ai + - llm + - documentation +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JordanCoin/docmap/0.3.0/JordanCoin.docmap.yaml b/manifests/j/JordanCoin/docmap/0.3.0/JordanCoin.docmap.yaml new file mode 100644 index 0000000000000..0b5a72f7774e2 --- /dev/null +++ b/manifests/j/JordanCoin/docmap/0.3.0/JordanCoin.docmap.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: JordanCoin.docmap +PackageVersion: 0.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kingdee/CloudHub/5.0.5/Kingdee.CloudHub.locale.en-US.yaml b/manifests/k/Kingdee/CloudHub/5.0.5/Kingdee.CloudHub.locale.en-US.yaml index c78d301b45b1d..e946eb2331b6e 100644 --- a/manifests/k/Kingdee/CloudHub/5.0.5/Kingdee.CloudHub.locale.en-US.yaml +++ b/manifests/k/Kingdee/CloudHub/5.0.5/Kingdee.CloudHub.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://www.yunzhijia.com/home/?m=open&a=download License: Proprietary LicenseUrl: https://www.yunzhijia.com/public/agreement/client-agreement.html Copyright: Copyright © 1993 - 2026 CloudHub. All Rights Reserved. -ShortDescription: New Generation Intelligent Collaborative Cloud Service +ShortDescription: New Generation Intelligent Collaborative Cloud Service. Description: Cloud Hub is a new generation intelligent collaborative cloud service for enterprises aimed at replacing traditional applications such as OA, portal, approval and attendance, and fully adapted to Chinese information technology application innovation ecology. According to IDC's data, Cloud Hub has maintained its position as the market leader in China's enterprise collaborative SaaS market for five consecutive years. Typical customers include top enterprises from various industries such as China South Industries Group Corporation, HBIS Group, OPPO, Country Garden and HMN Tech, as well as medium and large enterprises and specialized innovative enterprises like Intellifusion, Chu's Agriculture and Hunan Lihe. Tags: - attendance @@ -31,6 +31,8 @@ Tags: - office - saas - working +- prc +- china PurchaseUrl: https://www.yunzhijia.com/yzjomc-web/ ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/k/Kingsoft/KMeeting/1.87.0/Kingsoft.KMeeting.locale.en-US.yaml b/manifests/k/Kingsoft/KMeeting/1.87.0/Kingsoft.KMeeting.locale.en-US.yaml index dbb15f220627b..67920805a8c3d 100644 --- a/manifests/k/Kingsoft/KMeeting/1.87.0/Kingsoft.KMeeting.locale.en-US.yaml +++ b/manifests/k/Kingsoft/KMeeting/1.87.0/Kingsoft.KMeeting.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://meeting.kdocs.cn/meeting/welcome License: Proprietary LicenseUrl: https://privacy.wps.cn/policies/agreements/wps-online-service Copyright: Copyright ©2026 Kingsoft Corp -ShortDescription: Enterprise Video Conferencing Solutions +ShortDescription: Enterprise Video Conferencing Solutions. Description: Kingsoft Meeting is a convenient, economical, and secure enterprise video conferencing solution. It can connect with the Kingsoft Office product ecosystem and provide a smooth meeting collaboration experience. Users can join meetings with one click, share documents, manage schedules, switch devices, lock meetings, and more. Kingsoft Meeting supports multi-device meetings, including phones, tablets, computers, TVs, etc., covering more than 200 countries and regions around the world. It supports 1080P HD video and audio smooth transmission, ensuring the quality of communication. Kingsoft Meeting also uses audio and video transmission encryption technology to ensure the security and reliability of meetings. Tags: - conference @@ -22,6 +22,8 @@ Tags: - meeting - video-conferencing - voice-conferencing +- prc +- china PurchaseUrl: https://meeting.kdocs.cn/meeting/welcome/buy ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/k/KitLib/Kite/0.2.0/KitLib.Kite.locale.en-US.yaml b/manifests/k/KitLib/Kite/0.2.0/KitLib.Kite.locale.en-US.yaml index e908ac2d7e5de..16cfa451620cf 100644 --- a/manifests/k/KitLib/Kite/0.2.0/KitLib.Kite.locale.en-US.yaml +++ b/manifests/k/KitLib/Kite/0.2.0/KitLib.Kite.locale.en-US.yaml @@ -12,7 +12,7 @@ PackageName: kite PackageUrl: https://kite.kitlib.cn/ License: Proprietary Copyright: © 2024 - Kite Todo. All rights reserved. -ShortDescription: A to-do app for minimalists +ShortDescription: A to-do app for minimalists. Description: Kite To-Do is a lightweight and streamlined to-do app for planning by day with no ads and no login required. It focuses on privacy and stores data locally. It supports pomodoro, countdown, exporting to Markdown and more. Tags: - calendar @@ -22,5 +22,7 @@ Tags: - task - to-do - todo +- prc +- china ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/k/Krisp/Krisp/.validation b/manifests/k/Krisp/Krisp/.validation deleted file mode 100644 index 2d014b9b5dbcf..0000000000000 --- a/manifests/k/Krisp/Krisp/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"09e7afa9-4aa7-46f8-b897-95c63fc731c9","TestPlan":"Validation-Executable-Error","PackagePath":"manifests/k/Krisp/Krisp/1.31.3"}]} \ No newline at end of file diff --git a/manifests/k/kts982/WinTUI/2.2.0/kts982.WinTUI.installer.yaml b/manifests/k/kts982/WinTUI/2.2.0/kts982.WinTUI.installer.yaml new file mode 100644 index 0000000000000..ea1b60c95c044 --- /dev/null +++ b/manifests/k/kts982/WinTUI/2.2.0/kts982.WinTUI.installer.yaml @@ -0,0 +1,18 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: kts982.WinTUI +PackageVersion: 2.2.0 +MinimumOSVersion: 10.0.17763.0 +InstallerType: portable +Commands: + - wintui +UpgradeBehavior: install +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/kts982/wintui/releases/download/v2.2.0/wintui_2.2.0_windows_amd64.exe + InstallerSha256: B398973B17A99AA8BAC579303598401FB9AFC03C0D1FC21246C3629C84A3CA8F + - Architecture: arm64 + InstallerUrl: https://github.com/kts982/wintui/releases/download/v2.2.0/wintui_2.2.0_windows_arm64.exe + InstallerSha256: E2253BF1F2BC88D71C83D48D30F47D24A616FA80189317BA0945774F4BC957DA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/kts982/WinTUI/2.2.0/kts982.WinTUI.locale.en-US.yaml b/manifests/k/kts982/WinTUI/2.2.0/kts982.WinTUI.locale.en-US.yaml new file mode 100644 index 0000000000000..43f82e706f999 --- /dev/null +++ b/manifests/k/kts982/WinTUI/2.2.0/kts982.WinTUI.locale.en-US.yaml @@ -0,0 +1,39 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: kts982.WinTUI +PackageVersion: 2.2.0 +PackageLocale: en-US +Publisher: kts982 +PublisherUrl: https://github.com/kts982 +PublisherSupportUrl: https://github.com/kts982/wintui/issues +Author: Kostas T. +PackageName: WinTUI +PackageUrl: https://github.com/kts982/wintui +License: MIT +LicenseUrl: https://github.com/kts982/wintui/blob/main/LICENSE +ShortDescription: Terminal UI for winget on Windows. +Description: >- + WinTUI is a terminal user interface for Windows Package Manager featuring a + split-panel workspace for browsing, searching, installing, upgrading, and + managing packages. Includes disk-persistent cache for instant startup, + background refresh, integrated search with install queue, batch operations + with a single UAC prompt, per-package rules and ignore filters, live + command preview, system health checks, temp cleanup, and a headless CLI + mode for scripting. +Moniker: wintui +Tags: + - winget + - windows + - tui + - terminal + - package-manager + - cli +ReleaseNotes: |- + - Added per-package rules editor (`p` in the detail view) with scope, architecture, and elevate overrides, saved atomically under source-qualified keys. + - Added ignore toggle (`i` in the detail view) that hides a package or a specific version from the Updates list; the Updates header shows a `(N hidden)` count and stale version-ignores expire automatically. + - Added live command preview in the detail view showing the exact winget command that would run with active overrides applied. + - Added `?` in the batch confirm modal to expand the same per-item command preview for every staged package. + - Made the batch modal body scrollable with `↑↓`, `PgUp/PgDn`, `Home/End` so large batches no longer push the actions line or bottom border off-screen. +ReleaseNotesUrl: https://github.com/kts982/wintui/releases/tag/v2.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/kts982/WinTUI/2.2.0/kts982.WinTUI.yaml b/manifests/k/kts982/WinTUI/2.2.0/kts982.WinTUI.yaml new file mode 100644 index 0000000000000..e98079c40f185 --- /dev/null +++ b/manifests/k/kts982/WinTUI/2.2.0/kts982.WinTUI.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: kts982.WinTUI +PackageVersion: 2.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/Lenovo/SUHelper/10.2501.15.0/Lenovo.SUHelper.installer.yaml b/manifests/l/Lenovo/SUHelper/10.2501.15.0/Lenovo.SUHelper.installer.yaml deleted file mode 100644 index caf1ec723919f..0000000000000 --- a/manifests/l/Lenovo/SUHelper/10.2501.15.0/Lenovo.SUHelper.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: Lenovo.SUHelper -PackageVersion: 10.2501.15.0 -InstallerType: zip -NestedInstallerType: inno -NestedInstallerFiles: -- RelativeFilePath: SystemUpdate\SUHelperSetup.exe -Installers: -- Architecture: x64 - InstallerUrl: https://download.lenovo.com/pccbbs/thinkvantage_en/metroapps/Vantage/LenovoCommercialVantage_10.2501.15.0_v3.zip - InstallerSha256: 1EF936315A2AC7FC326E18709D1F5C314EEC2670411FFAFD5E27BD809BA61036 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/l/Lenovo/SUHelper/10.2501.15.0/Lenovo.SUHelper.locale.en-US.yaml b/manifests/l/Lenovo/SUHelper/10.2501.15.0/Lenovo.SUHelper.locale.en-US.yaml deleted file mode 100644 index dfffb00870c16..0000000000000 --- a/manifests/l/Lenovo/SUHelper/10.2501.15.0/Lenovo.SUHelper.locale.en-US.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: Lenovo.SUHelper -PackageVersion: 10.2501.15.0 -PackageLocale: en-US -Publisher: Lenovo -PublisherUrl: https://www.lenovo.com/ -PrivacyUrl: https://www.lenovo.com/us/en/privacy/ -PackageName: SUHelper -License: Proprietary -LicenseUrl: https://download.lenovo.com/lenovo/lla/coe-30002-01_lenovo_license_agreement.pdf -ShortDescription: SUHelper addin for Lenovo Commercial Vantage -Tags: -- vantage -- suhelper -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/Skype/.validation b/manifests/m/Microsoft/Skype/.validation deleted file mode 100644 index a70c1c605142b..0000000000000 --- a/manifests/m/Microsoft/Skype/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"59f9b435-d174-412b-b9a6-2c2744a45dd8","TestPlan":"Policy-Test-2.5","PackagePath":"manifests/m/Microsoft/Skype/8.138","CommitId":"5c84b42d5d137ea196bd34a8e8d647aad05e19bd"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/m/ModelScope/FlowBench/0.6.0/ModelScope.FlowBench.locale.en-US.yaml b/manifests/m/ModelScope/FlowBench/0.6.0/ModelScope.FlowBench.locale.en-US.yaml index 49d197b819369..cd6b981417448 100644 --- a/manifests/m/ModelScope/FlowBench/0.6.0/ModelScope.FlowBench.locale.en-US.yaml +++ b/manifests/m/ModelScope/FlowBench/0.6.0/ModelScope.FlowBench.locale.en-US.yaml @@ -10,10 +10,14 @@ License: Proprietary LicenseUrl: https://www.modelscope.cn/protocol/terms-privacy-policy Copyright: © 2022-2025 ModelScope.cn all rights reserved CopyrightUrl: https://www.modelscope.cn/protocol/terms-privacy-policy -ShortDescription: One-stop AI creativity platform +ShortDescription: One-stop AI creativity platform. Tags: - ai - comfy - comfyui +- artificial-intelligence +- artificialintelligence +- prc +- china ManifestType: locale ManifestVersion: 1.10.0 diff --git a/manifests/m/Muye/FlickerList/5.4.3/Muye.FlickerList.locale.en-US.yaml b/manifests/m/Muye/FlickerList/5.4.3/Muye.FlickerList.locale.en-US.yaml index 7d6d6a64dcaca..6a25d3330a690 100644 --- a/manifests/m/Muye/FlickerList/5.4.3/Muye.FlickerList.locale.en-US.yaml +++ b/manifests/m/Muye/FlickerList/5.4.3/Muye.FlickerList.locale.en-US.yaml @@ -5,16 +5,16 @@ PackageIdentifier: Muye.FlickerList PackageVersion: 5.4.3 PackageLocale: en-US Publisher: Flicker List Team -PublisherUrl: https://flicker.cool/en/ -PublisherSupportUrl: https://flicker.cool/en/contact -PrivacyUrl: https://flicker.cool/en/privacy +# PublisherUrl: https://flicker.cool/en/ # Commented out due to SSL certificate error. +# PublisherSupportUrl: https://flicker.cool/en/contact # Commented out due to SSL certificate error. +# PrivacyUrl: https://flicker.cool/en/privacy # Commented out due to SSL certificate error. Author: Beijing Muye Technology Co., Ltd. PackageName: Flicker List -PackageUrl: https://flicker.cool/en/ +# PackageUrl: https://flicker.cool/en/ # Commented out due to SSL certificate error. License: Proprietary -LicenseUrl: https://flicker.cool/en/agreement +# LicenseUrl: https://flicker.cool/en/agreement # Commented out due to SSL certificate error. Copyright: Copyright © 2024 Flicker List Team -ShortDescription: A pretty different floating todo-list APP +ShortDescription: A pretty different floating todo-list APP. Description: Flicker List Checklist is a checklist software that can always be suspended on the desktop. As an assistant to study and work, she can help you with efficient study, work, and life arrangements, and can help you make daily and weekly plans, set up meeting reminders, birthday reminders, and other event reminders, and can also help you schedule, organize memos, organize shopping lists, and more. The Flicker List provides a floating window that can always be suspended on the desktop. You can reach other functions of the software through the floating window with one click to improve your work efficiency. Tags: - agenda @@ -29,5 +29,7 @@ Tags: - task - to-do - todo +- prc +- china ManifestType: defaultLocale ManifestVersion: 1.6.0 diff --git a/manifests/m/Muye/FlickerList/5.4.3/Muye.FlickerList.locale.zh-CN.yaml b/manifests/m/Muye/FlickerList/5.4.3/Muye.FlickerList.locale.zh-CN.yaml index 4fb88fbaa069e..5792fb3392165 100644 --- a/manifests/m/Muye/FlickerList/5.4.3/Muye.FlickerList.locale.zh-CN.yaml +++ b/manifests/m/Muye/FlickerList/5.4.3/Muye.FlickerList.locale.zh-CN.yaml @@ -5,14 +5,14 @@ PackageIdentifier: Muye.FlickerList PackageVersion: 5.4.3 PackageLocale: zh-CN Publisher: Flicker List Team -PublisherUrl: https://flicker.cool/ -PublisherSupportUrl: https://flicker.cool/contact -PrivacyUrl: https://flicker.cool/privacy +# PublisherUrl: https://flicker.cool/ +# PublisherSupportUrl: https://flicker.cool/contact +# PrivacyUrl: https://flicker.cool/privacy Author: 北京木叶科技有限公司 PackageName: Flicker List -PackageUrl: https://flicker.cool/ +# PackageUrl: https://flicker.cool/ License: 专有软件 -LicenseUrl: https://flicker.cool/agreement +# LicenseUrl: https://flicker.cool/agreement Copyright: Copyright © 2024 Flicker List Team ShortDescription: 一款不一样的悬浮清单软件 Description: 闪点清单是一款可以始终悬浮在桌面的清单软件,作为一款学习、工作的助手,她可以帮助你进行高效率学习、工作、生活安排,可以帮助你制定每天、每周计划,设置会议提醒、生日提醒、和其他事项提醒,还可以帮助你安排日程、整理备忘录、整理购物清单等等。闪点清单提供可以始终悬浮在桌面的悬浮窗,可以通过浮窗一键触达软件其他功能,提高你的工作效率。 diff --git a/manifests/n/NetEase/CloudMusic/3.1.30.205130/NetEase.CloudMusic.locale.en-US.yaml b/manifests/n/NetEase/CloudMusic/3.1.30.205130/NetEase.CloudMusic.locale.en-US.yaml index 33545a807dff6..dd381759dd3a2 100644 --- a/manifests/n/NetEase/CloudMusic/3.1.30.205130/NetEase.CloudMusic.locale.en-US.yaml +++ b/manifests/n/NetEase/CloudMusic/3.1.30.205130/NetEase.CloudMusic.locale.en-US.yaml @@ -1,4 +1,3 @@ -# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: NetEase.CloudMusic @@ -14,7 +13,7 @@ PackageUrl: https://music.163.com/#/download License: Proprietary LicenseUrl: https://st.music.163.com/official-terms/service Copyright: © NetEase Corporation. All rights reserved. -ShortDescription: A music product focused on discovery and sharing +ShortDescription: A music product focused on discovery and sharing. Description: NetEase CloudMusic is one of the most popular music streaming platforms among young users and the leading music community in the industry. In NetEase CloudMusic, you can not only listen to a large number of genuine music, but also meet music-loving partners like you. Use music to connect each other and convey the power of pleasure. Tags: - album @@ -26,6 +25,8 @@ Tags: - playlist - song - sound +- prc +- china ReleaseNotesUrl: https://music.163.com/#/pcupdatelog ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/n/Nutstore/Nutstore/7.2.3/Nutstore.Nutstore.locale.en-US.yaml b/manifests/n/Nutstore/Nutstore/7.2.3/Nutstore.Nutstore.locale.en-US.yaml index 9f3bd80f7ada6..d46b8bdc7fcf7 100644 --- a/manifests/n/Nutstore/Nutstore/7.2.3/Nutstore.Nutstore.locale.en-US.yaml +++ b/manifests/n/Nutstore/Nutstore/7.2.3/Nutstore.Nutstore.locale.en-US.yaml @@ -1,4 +1,3 @@ -# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json PackageIdentifier: Nutstore.Nutstore @@ -14,7 +13,7 @@ PackageUrl: https://www.jianguoyun.com/s/downloads License: Proprietary LicenseUrl: https://help.jianguoyun.com/?page_id=490#jpte Copyright: ©2011-2024 Shanghai YiCun Network Tech Co., Ltd. -ShortDescription: Share your files anytime, anywhere, with any device +ShortDescription: Share your files anytime, anywhere, with any device. Description: Nutstore is a free cloud storage service that helps you access your files anywhere at any time and share them with friends easily. Moniker: jianguoyun Tags: @@ -29,5 +28,7 @@ Tags: - sync - upload - webdav +- prc +- china ManifestType: defaultLocale ManifestVersion: 1.9.0 diff --git a/manifests/n/Nvidia/GeForceExperience/.validation b/manifests/n/Nvidia/GeForceExperience/.validation deleted file mode 100644 index 87442b5a333c4..0000000000000 --- a/manifests/n/Nvidia/GeForceExperience/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"4012b470-237a-43ea-b144-da820c1217c4","TestPlan":"Validation-No-Executables","PackagePath":"manifests/n/Nvidia/GeForceExperience/3.24.0.123"}]} \ No newline at end of file diff --git a/manifests/o/OOMOL/OOMOLStudio/1.5.3/OOMOL.OOMOLStudio.installer.yaml b/manifests/o/OOMOL/OOMOLStudio/1.5.3/OOMOL.OOMOLStudio.installer.yaml new file mode 100644 index 0000000000000..85abb670a5f68 --- /dev/null +++ b/manifests/o/OOMOL/OOMOLStudio/1.5.3/OOMOL.OOMOLStudio.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OOMOL.OOMOLStudio +PackageVersion: 1.5.3 +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- oomol +ProductCode: '{CC6B787D-37A0-49E8-AE24-8559A032BE0C}_is1' +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x64 + InstallerUrl: https://static.oomol.com/release/stable/win32/x64/OOMOL%20Studio-1.5.3-2026-04-11.19.exe + InstallerSha256: 1DE2C640BA50D7DFCF8DC6BAC89EDDE9A715DB01209FCB62E0E75ECBF5916810 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/OOMOL/OOMOLStudio/1.5.3/OOMOL.OOMOLStudio.locale.en-US.yaml b/manifests/o/OOMOL/OOMOLStudio/1.5.3/OOMOL.OOMOLStudio.locale.en-US.yaml new file mode 100644 index 0000000000000..ecdee66cf483c --- /dev/null +++ b/manifests/o/OOMOL/OOMOLStudio/1.5.3/OOMOL.OOMOLStudio.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OOMOL.OOMOLStudio +PackageVersion: 1.5.3 +PackageLocale: en-US +Publisher: OOMOL Corporation +PublisherUrl: https://oomol.com/ +PublisherSupportUrl: https://oomol.com/support/ +PrivacyUrl: https://oomol.com/privacy/ +Author: Hangzhou Kene Software Co., Ltd. +PackageName: OOMOL Studio +PackageUrl: https://oomol.com/downloads/ +License: Proprietary +LicenseUrl: https://oomol.com/terms/ +Copyright: Copyright © 2026 OOMOL Contributors. +CopyrightUrl: https://oomol.com/terms/ +ShortDescription: AI Workflow IDE +Description: Oomol Studio makes it easy to connect code snippets and API services through intuitive visual interactions +Tags: +- ai +- code +- coding +- develop +- development +- editing +- editor +- programming +ReleaseNotesUrl: https://oomol.com/updates +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://oomol.com/docs/get-started/quickstarts +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OOMOL/OOMOLStudio/1.5.3/OOMOL.OOMOLStudio.locale.zh-CN.yaml b/manifests/o/OOMOL/OOMOLStudio/1.5.3/OOMOL.OOMOLStudio.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f96408862a2ae --- /dev/null +++ b/manifests/o/OOMOL/OOMOLStudio/1.5.3/OOMOL.OOMOLStudio.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.12.0.schema.json + +PackageIdentifier: OOMOL.OOMOLStudio +PackageVersion: 1.5.3 +PackageLocale: zh-CN +PublisherUrl: https://oomol.com/zh-CN/ +PublisherSupportUrl: https://oomol.com/zh-CN/support/ +PrivacyUrl: https://oomol.com/zh-CN/privacy/ +Author: 杭州可讷软件有限公司 +PackageUrl: https://oomol.com/zh-CN/downloads +License: 专有软件 +LicenseUrl: https://oomol.com/zh-CN/terms/ +CopyrightUrl: https://oomol.com/zh-CN/terms/ +ShortDescription: AI 工作流 IDE +Description: Oomol Studio 通过直观的视觉交互轻松连接代码片段和 API 服务,帮助用户缩短从想法到产品的距离 +Tags: +- ai +- 人工智能 +- 代码 +- 开发 +- 悟墨 +- 编程 +- 编辑 +- 编辑器 +ReleaseNotesUrl: https://oomol.com/zh-CN/updates +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://oomol.com/zh-CN/docs/get-started/quickstarts +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OOMOL/OOMOLStudio/1.5.3/OOMOL.OOMOLStudio.yaml b/manifests/o/OOMOL/OOMOLStudio/1.5.3/OOMOL.OOMOLStudio.yaml new file mode 100644 index 0000000000000..512f86012c9b3 --- /dev/null +++ b/manifests/o/OOMOL/OOMOLStudio/1.5.3/OOMOL.OOMOLStudio.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: OOMOL.OOMOLStudio +PackageVersion: 1.5.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PaodingAI/PDFlux/6.2.67/PaodingAI.PDFlux.locale.en-US.yaml b/manifests/p/PaodingAI/PDFlux/6.2.67/PaodingAI.PDFlux.locale.en-US.yaml index bd702e66d6e40..6598b341db4b9 100644 --- a/manifests/p/PaodingAI/PDFlux/6.2.67/PaodingAI.PDFlux.locale.en-US.yaml +++ b/manifests/p/PaodingAI/PDFlux/6.2.67/PaodingAI.PDFlux.locale.en-US.yaml @@ -12,7 +12,7 @@ PackageName: PDFlux PackageUrl: https://pdflux.com License: Proprietary Copyright: Copyright © 2016-2024 Beijing Paoding Technology Co., Ltd. -ShortDescription: PDF document, content and data extraction tool +ShortDescription: PDF document, content and data extraction tool. Description: |- Accurately identify elements such as tables, paragraphs, and pictures in PDF, and extract table data in PDF efficiently and accurately. Supports exporting the results into various formats such as Excel, and can also export into structured JSON data. @@ -26,6 +26,8 @@ Tags: - pdf - recognition - recognize +- prc +- china Documentations: - DocumentLabel: Guide DocumentUrl: https://pdflux.com/guide diff --git a/manifests/p/Postman/Postman/Canary/11.2.14-canary240621-0734/Postman.Postman.Canary.installer.yaml b/manifests/p/Postman/Postman/Canary/11.2.14-canary240621-0734/Postman.Postman.Canary.installer.yaml deleted file mode 100644 index ba4fb092625c5..0000000000000 --- a/manifests/p/Postman/Postman/Canary/11.2.14-canary240621-0734/Postman.Postman.Canary.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Automatically updated by the winget bot at 2024/Jun/21 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Postman.Postman.Canary -PackageVersion: 11.2.14-canary240621-0734 -MinimumOSVersion: 10.0.0.0 -InstallerType: exe -InstallerSwitches: - Silent: -s - SilentWithProgress: -s -UpgradeBehavior: install -Installers: -- Architecture: neutral - InstallerUrl: https://dl.pstmn.io/download/channel/canary/windows_64 - InstallerSha256: 223481D29E0572A698797F229B03EA2C1FFD98BED3122404D8003EC6D299C1EB - ProductCode: 'PostmanCanary' -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/p/Postman/Postman/Canary/11.2.14-canary240621-0734/Postman.Postman.Canary.locale.en-US.yaml b/manifests/p/Postman/Postman/Canary/11.2.14-canary240621-0734/Postman.Postman.Canary.locale.en-US.yaml deleted file mode 100644 index 27958d3460dc6..0000000000000 --- a/manifests/p/Postman/Postman/Canary/11.2.14-canary240621-0734/Postman.Postman.Canary.locale.en-US.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Automatically updated by the winget bot at 2024/Jun/21 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Postman.Postman.Canary -PackageVersion: 11.2.14-canary240621-0734 -PackageLocale: en-US -Publisher: Postman -PublisherUrl: https://www.postman.com/ -PublisherSupportUrl: https://www.postman.com/support -PrivacyUrl: https://www.postman.com/legal/privacy-policy -PackageName: PostmanCanary -PackageUrl: https://www.postman.com/ -License: Proprietary -LicenseUrl: https://www.postman.com/legal/terms/ -Copyright: Copyright (c) 2021 Postman, Inc. All rights reserved. -ShortDescription: API platform for building and using APIs -Description: Postman is a collaboration platform for API development. Postman's features simplify each step of building an API and streamline collaboration so you can create better APIs — faster. -Moniker: postman-canary -Tags: -- api -- development -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/p/Postman/Postman/Canary/11.2.14-canary240621-0734/Postman.Postman.Canary.yaml b/manifests/p/Postman/Postman/Canary/11.2.14-canary240621-0734/Postman.Postman.Canary.yaml deleted file mode 100644 index a9bcc460a8d27..0000000000000 --- a/manifests/p/Postman/Postman/Canary/11.2.14-canary240621-0734/Postman.Postman.Canary.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2024/Jun/21 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: Postman.Postman.Canary -PackageVersion: 11.2.14-canary240621-0734 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/q/qr243vbi/NekoBox/5.10.36/qr243vbi.NekoBox.installer.yaml b/manifests/q/qr243vbi/NekoBox/5.10.36/qr243vbi.NekoBox.installer.yaml new file mode 100644 index 0000000000000..774dec95478c8 --- /dev/null +++ b/manifests/q/qr243vbi/NekoBox/5.10.36/qr243vbi.NekoBox.installer.yaml @@ -0,0 +1,30 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: qr243vbi.NekoBox +PackageVersion: 5.10.36 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ProductCode: NekoBox +ReleaseDate: 2026-04-11 +AppsAndFeaturesEntries: +- ProductCode: NekoBox + DisplayName: NekoBox + Publisher: qr243vbi +InstallModes: + - silentWithProgress + - silent +InstallerSwitches: + Silent: "/S /NOSCRIPT=1 /WINGET=1" + SilentWithProgress: "/S /NOSCRIPT=1 /WINGET=1" +InstallationMetadata: + DefaultInstallLocation: '%AppData%\NekoBox' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/qr243vbi/nekobox/releases/download/5.10.36/nekobox-5.10.36-windows64-installer.exe + InstallerSha256: 4071cce063c49f34b72a4de0071c92bf92cc2d668cd2eaa5f76682cace46463c +- Architecture: arm64 + InstallerUrl: https://github.com/qr243vbi/nekobox/releases/download/5.10.36/nekobox-5.10.36-windows-arm64-installer.exe + InstallerSha256: b41fc9fd76731d1e8ed128300a04511fa7d93a5bb460fb2e737dded9b693413d +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/q/qr243vbi/NekoBox/5.10.36/qr243vbi.NekoBox.locale.en-US.yaml b/manifests/q/qr243vbi/NekoBox/5.10.36/qr243vbi.NekoBox.locale.en-US.yaml new file mode 100644 index 0000000000000..4bd74e855a58b --- /dev/null +++ b/manifests/q/qr243vbi/NekoBox/5.10.36/qr243vbi.NekoBox.locale.en-US.yaml @@ -0,0 +1,31 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: qr243vbi.NekoBox +PackageVersion: 5.10.36 +PackageLocale: en-US +Publisher: qr243vbi +PublisherUrl: https://github.com/qr243vbi +PublisherSupportUrl: https://github.com/qr243vbi/nekobox/issues +PackageName: NekoBox +PackageUrl: https://github.com/qr243vbi/nekobox +License: GPL-3.0 +LicenseUrl: https://github.com/qr243vbi/nekobox/blob/HEAD/LICENSE +ShortDescription: Cross-platform GUI proxy utility (Empowered by sing-box) +Tags: +- sing-box +- v2ray +- VLESS +- Vmess +- ShadowSocks +- Tor +- Mieru +- Trojan +- Hysteria +- Wireguard +- NyameBox +- TUIC +- SSH +- VPN +- ShadowTLS +- AnyTLS +ManifestType: defaultLocale +ManifestVersion: 1.10.0 \ No newline at end of file diff --git a/manifests/t/ThaUnknown/Miru/6.3.9/ThaUnknown.Miru.yaml b/manifests/q/qr243vbi/NekoBox/5.10.36/qr243vbi.NekoBox.yaml similarity index 53% rename from manifests/t/ThaUnknown/Miru/6.3.9/ThaUnknown.Miru.yaml rename to manifests/q/qr243vbi/NekoBox/5.10.36/qr243vbi.NekoBox.yaml index 19ac71d5ede05..311f6f5a03746 100644 --- a/manifests/t/ThaUnknown/Miru/6.3.9/ThaUnknown.Miru.yaml +++ b/manifests/q/qr243vbi/NekoBox/5.10.36/qr243vbi.NekoBox.yaml @@ -1,8 +1,7 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 6.3.9 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: qr243vbi.NekoBox +PackageVersion: 5.10.36 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 \ No newline at end of file diff --git a/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.installer.yaml b/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.installer.yaml new file mode 100644 index 0000000000000..21863860e9da1 --- /dev/null +++ b/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: REVENGE.StremioEnhanced +PackageVersion: 1.1.3 +InstallerLocale: en-US +InstallerType: nullsoft +ProductCode: 4069370c-462a-53a0-8015-5cfc529c3919 +AppsAndFeaturesEntries: +- DisplayName: Stremio Enhanced + Publisher: REVENGE + ProductCode: 4069370c-462a-53a0-8015-5cfc529c3919 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/REVENGE977/stremio-enhanced/releases/download/v1.1.3/Stremio.Enhanced.Setup.1.1.3.exe + InstallerSha256: 7A9DF429A28CAC304511A239C88EAF5A73C7F32B8B8605E31097885CF3045D0C +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-04-10 diff --git a/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.locale.en-US.yaml b/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.locale.en-US.yaml new file mode 100644 index 0000000000000..3be3f53c84010 --- /dev/null +++ b/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: REVENGE.StremioEnhanced +PackageVersion: 1.1.3 +PackageLocale: en-US +Publisher: REVENGE977 +PublisherUrl: https://github.com/REVENGE977 +PublisherSupportUrl: https://github.com/REVENGE977/stremio-enhanced/issues +PackageName: Stremio Enhanced +PackageUrl: https://github.com/REVENGE977/stremio-enhanced +License: MIT +LicenseUrl: https://github.com/REVENGE977/stremio-enhanced/blob/HEAD/LICENSE.md +Copyright: Copyright © 2026 REVENGE +ShortDescription: Electron-based Stremio client with support for plugins and themes. This is a community project and is not affiliated with Stremio in any way. +Tags: +- customization +- discordrpc +- electron +- enhanced +- plugins +- stremio +- stremio-addon +- stremio-client +- stremio-enhanced +- stremio-local-addon-manager +- stremio-theme +- stremio-themes +- stremio-web +ReleaseNotes: |- + - Minor bug fix: Fixed community marketplace install/uninstall buttons not working. + - Minor bug fix: Fixed a bug where if the user uninstalls a theme from the community marketplace, the currently active theme would get disabled regardless of whether it's the theme they uninstalled or not. + - Minor bug fix: Fixed an issue where the app wouldn't fullscreen properly on Linux. + + +ReleaseNotesUrl: https://github.com/REVENGE977/stremio-enhanced/releases/tag/v1.1.3 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/REVENGE977/stremio-enhanced/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.yaml b/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.yaml new file mode 100644 index 0000000000000..68d79713c099b --- /dev/null +++ b/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: REVENGE.StremioEnhanced +PackageVersion: 1.1.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.locale.en-US.yaml b/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.locale.en-US.yaml index 91091a41ebaa8..4eb1b4f3f8ffa 100644 --- a/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.locale.en-US.yaml +++ b/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://reqable.com/ License: Proprietary LicenseUrl: https://reqable.com/policy Copyright: Copyright (C) 2026 Reqable All rights reserved. -ShortDescription: Advanced API Debugging Proxy +ShortDescription: Advanced API Debugging Proxy. Description: Reqable is a flutter-based, cross-platform app, which enables developers to capture, inspect, and manipulate HTTP(s) requests/responses with ease. Support Windows, macOS, linux, iOS and Android devices. Tags: - capture @@ -25,6 +25,8 @@ Tags: - response - traffic - web +- prc +- china ReleaseNotes: |- 💪 [OPT] Add SSE option to the traffic quick filter bar. 💪 [OPT] Rename protocol names in the traffic quick filter bar. diff --git a/manifests/r/Revopoint/RevoMeasure/1.1.0.0325/Revopoint.RevoMeasure.locale.zh-CN.yaml b/manifests/r/Revopoint/RevoMeasure/1.1.0.0325/Revopoint.RevoMeasure.locale.zh-CN.yaml index 404b4398c73f5..1019137482966 100644 --- a/manifests/r/Revopoint/RevoMeasure/1.1.0.0325/Revopoint.RevoMeasure.locale.zh-CN.yaml +++ b/manifests/r/Revopoint/RevoMeasure/1.1.0.0325/Revopoint.RevoMeasure.locale.zh-CN.yaml @@ -36,7 +36,7 @@ ReleaseNotes: |- 11. 优化了部分功能的用户体验 ReleaseNotesUrl: https://www.revopoint3d.com/pages/support-download#UpdateHistory Documentations: -- DocumentLabel: User Manual +- DocumentLabel: 用户手册 DocumentUrl: https://revopedia.revopoint3d.com/zh/RevoMeasure/usermanual ManifestType: locale ManifestVersion: 1.12.0 diff --git a/manifests/r/Ruihu/Apifox/2.8.22/Ruihu.Apifox.locale.en-US.yaml b/manifests/r/Ruihu/Apifox/2.8.22/Ruihu.Apifox.locale.en-US.yaml index 8af3129920871..f56224ceb9f7e 100644 --- a/manifests/r/Ruihu/Apifox/2.8.22/Ruihu.Apifox.locale.en-US.yaml +++ b/manifests/r/Ruihu/Apifox/2.8.22/Ruihu.Apifox.locale.en-US.yaml @@ -6,7 +6,7 @@ PackageVersion: 2.8.22 PackageLocale: en-US Author: Guangzhou Ruihu Technology Co., Ltd. License: Freeware -ShortDescription: All-in-one collaboration platform for API documentation, API debugging, API Mock and API test automation +ShortDescription: All-in-one collaboration platform for API documentation, API debugging, API Mock and API test automation. Description: |- Apifox is an all-in-one collaboration platform for API documentation, API debugging, API Mock and API test automation, positioning Postman + Swagger + Mock + JMeter. With one system and one data, it solves data sync problems among multiple systems. @@ -23,5 +23,7 @@ Tags: - network - request - response +- prc +- china ManifestType: locale ManifestVersion: 1.12.0 diff --git a/manifests/r/raphamorim/rio/0.3.5/raphamorim.rio.installer.yaml b/manifests/r/raphamorim/rio/0.3.5/raphamorim.rio.installer.yaml new file mode 100644 index 0000000000000..7fd2e9c38fd56 --- /dev/null +++ b/manifests/r/raphamorim/rio/0.3.5/raphamorim.rio.installer.yaml @@ -0,0 +1,39 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.3.5 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2026-04-11 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Rio' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/raphamorim/rio/releases/download/v0.3.5/Rio-installer-x86_64.msi + InstallerSha256: 2DC90EEA6C8ECC18E3BFA7672DAE870F23988DF71289D259A1359943115482A5 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ProductCode: '{B1A795F7-D813-4254-BEC6-92FDDC534E23}' + AppsAndFeaturesEntries: + - ProductCode: '{B1A795F7-D813-4254-BEC6-92FDDC534E23}' + UpgradeCode: '{87C21C74-DBD5-4584-89D5-46D9CD0C40A8}' +- Architecture: arm64 + InstallerUrl: https://github.com/raphamorim/rio/releases/download/v0.3.5/Rio-installer-aarch64.msi + InstallerSha256: 7E63CCFB57E0EFF7CF11741631DC4D5233D315C0C19F48E368204EF65AA40546 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 + ProductCode: '{738854C6-D3DF-48BD-85B8-F832C9A9E1D2}' + AppsAndFeaturesEntries: + - ProductCode: '{738854C6-D3DF-48BD-85B8-F832C9A9E1D2}' + UpgradeCode: '{87C21C74-DBD5-4584-89D5-46D9CD0C40A8}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/raphamorim/rio/0.3.5/raphamorim.rio.locale.en-US.yaml b/manifests/r/raphamorim/rio/0.3.5/raphamorim.rio.locale.en-US.yaml new file mode 100644 index 0000000000000..46a31775a25de --- /dev/null +++ b/manifests/r/raphamorim/rio/0.3.5/raphamorim.rio.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.3.5 +PackageLocale: en-US +Publisher: Raphael Amorim +PublisherUrl: https://github.com/raphamorim/rio +PublisherSupportUrl: https://github.com/raphamorim/rio/issues +Author: Raphael Amorim +PackageName: Rio +PackageUrl: https://github.com/raphamorim/rio +License: MIT +LicenseUrl: https://github.com/raphamorim/rio/blob/HEAD/LICENSE +Copyright: Copyright (c) 2022-present Raphael Amorim +CopyrightUrl: https://raw.githubusercontent.com/raphamorim/rio/main/LICENSE +ShortDescription: Rio terminal is a hardware-accelerated GPU terminal emulator, focusing to run in desktops and browsers. +Description: |- + Rio terminal is a hardware-accelerated GPU terminal emulator, focusing to run in desktops and browsers. + The supported platforms currently consist of BSD, Linux, MacOS and Windows. +Moniker: rio +Tags: +- cross-platform +- terminal +- terminal-emulators +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/raphamorim/rio/0.3.5/raphamorim.rio.yaml b/manifests/r/raphamorim/rio/0.3.5/raphamorim.rio.yaml new file mode 100644 index 0000000000000..bd8c2b726f670 --- /dev/null +++ b/manifests/r/raphamorim/rio/0.3.5/raphamorim.rio.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.3.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/rejetto/hfs/3.0.10/rejetto.hfs.installer.yaml b/manifests/r/rejetto/hfs/3.0.10/rejetto.hfs.installer.yaml new file mode 100644 index 0000000000000..3bb4f84a054b0 --- /dev/null +++ b/manifests/r/rejetto/hfs/3.0.10/rejetto.hfs.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: rejetto.hfs +PackageVersion: 3.0.10 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: hfs.exe +ReleaseDate: 2026-04-11 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/rejetto/hfs/releases/download/v3.0.10/hfs-windows-x64-3.0.10.zip + InstallerSha256: DB2439CF96D70A795026E1B859EC823FC31968674D6C90F894C76523838BAEC5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/rejetto/hfs/3.0.10/rejetto.hfs.locale.en-US.yaml b/manifests/r/rejetto/hfs/3.0.10/rejetto.hfs.locale.en-US.yaml new file mode 100644 index 0000000000000..74896e6dfc9a0 --- /dev/null +++ b/manifests/r/rejetto/hfs/3.0.10/rejetto.hfs.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: rejetto.hfs +PackageVersion: 3.0.10 +PackageLocale: en-US +Publisher: rejetto +PublisherUrl: https://github.com/rejetto +PublisherSupportUrl: https://github.com/rejetto/hfs/issues +PackageName: hfs +PackageUrl: https://github.com/rejetto/hfs +License: GPL-3.0 +LicenseUrl: https://github.com/rejetto/hfs/blob/HEAD/LICENSE.txt +ShortDescription: HFS is a web file server to run on your computer. Share folders or even a single file thanks to the virtual file system. +Tags: +- file-server +- file-sharing +- http-server +- nodejs +- typescript +- web +ReleaseNotes: |- + bug fixes + Full Changelog: v3.0.9...v3.0.10 +ReleaseNotesUrl: https://github.com/rejetto/hfs/releases/tag/v3.0.10 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/rejetto/hfs/3.0.10/rejetto.hfs.yaml b/manifests/r/rejetto/hfs/3.0.10/rejetto.hfs.yaml new file mode 100644 index 0000000000000..06c67d986ab8d --- /dev/null +++ b/manifests/r/rejetto/hfs/3.0.10/rejetto.hfs.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: rejetto.hfs +PackageVersion: 3.0.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/Seewo/EasiNote/5.2.4.9612/Seewo.EasiNote.locale.en-US.yaml b/manifests/s/Seewo/EasiNote/5.2.4.9612/Seewo.EasiNote.locale.en-US.yaml index 3ac1b6fdb0685..e47460d6cf768 100644 --- a/manifests/s/Seewo/EasiNote/5.2.4.9612/Seewo.EasiNote.locale.en-US.yaml +++ b/manifests/s/Seewo/EasiNote/5.2.4.9612/Seewo.EasiNote.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://easinote.seewo.com/ License: Proprietary LicenseUrl: https://cstore-public.seewo.com/momAdmin/44664df635c4499aaca407315caae787.html Copyright: Copyright © 2011-2026 GuangZhou Shirui. All Rights Reserved. -ShortDescription: An interactive slide tool specially designed for teaching scenarios +ShortDescription: An interactive slide tool specially designed for teaching scenarios. Description: EasiNote 5 is an interactive slide tool specially designed for teaching scenarios, providing various commonly used functions such as cloud synchronization, subject tools, mind maps, classroom activities, super classification and so on. With just a few simple operations you can present your knowledge points vividly. Tags: - education @@ -23,6 +23,8 @@ Tags: - teach - teaching - template +- prc +- china ReleaseNotesUrl: https://easinote.seewo.com/updateLog ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/s/SilouhetteStudio/Silouhette/.validation b/manifests/s/SilouhetteStudio/Silouhette/.validation deleted file mode 100644 index d6558fd57f81a..0000000000000 --- a/manifests/s/SilouhetteStudio/Silouhette/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"f21c7c54-7c2a-475c-8ac4-2d8a9a4922fb","TestPlan":"Validation-Domain","PackagePath":"manifests/s/SilouhetteStudio/Silouhette/4.5.770","CommitId":"e290a58e06100d9798291eb9bcc268816b7ec100"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/s/SmartGameBooster/SmartGameBooster/.validation b/manifests/s/SmartGameBooster/SmartGameBooster/.validation deleted file mode 100644 index 851b3f4962263..0000000000000 --- a/manifests/s/SmartGameBooster/SmartGameBooster/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"3798427a-25d7-42f8-ab56-fdece7483630","TestPlan":"Validation-Domain","PackagePath":"manifests/s/SmartGameBooster/SmartGameBooster/5.2.3","CommitId":"37582b428a066166fc9098c71462ea77ae5f52a3"}]} \ No newline at end of file diff --git a/manifests/s/Sohu/SHPlayer/7.2.9.0/Sohu.SHPlayer.locale.en-US.yaml b/manifests/s/Sohu/SHPlayer/7.2.9.0/Sohu.SHPlayer.locale.en-US.yaml index b4910c3268dc7..3df024fb1edc8 100644 --- a/manifests/s/Sohu/SHPlayer/7.2.9.0/Sohu.SHPlayer.locale.en-US.yaml +++ b/manifests/s/Sohu/SHPlayer/7.2.9.0/Sohu.SHPlayer.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://tv.sohu.com/down/index.shtml?downLoad=windows License: Proprietary LicenseUrl: https://tv.sohu.com/upload/ifox/v4/argument/index.html Copyright: Copyright(c) 2026 Sohu.com Inc. All Rights Reserved. -ShortDescription: Versatile media player by Sohu Video +ShortDescription: Versatile media player by Sohu Video. Description: Sohu Player is a media player by Sohu Video with new experience and streaming acceleration, supporting local media files in mainstream formats and online videos on demand. Tags: - animation @@ -29,5 +29,7 @@ Tags: - series - show - video +- prc +- china ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/s/StarFinanz/StarMoney14Deluxe/.validation b/manifests/s/StarFinanz/StarMoney14Deluxe/.validation deleted file mode 100644 index 7831cebcc6bce..0000000000000 --- a/manifests/s/StarFinanz/StarMoney14Deluxe/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"f6418d5d-a4c9-4d22-9ba7-9382d8ed4066","TestPlan":"Policy-Test-1.8","PackagePath":"manifests/s/StarFinanz/StarMoney14Deluxe/14","CommitId":"a16d4964edd8427057e16b17674e968936e43923"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/t/THS/THS/9.50.71/THS.THS.locale.en-US.yaml b/manifests/t/THS/THS/9.50.71/THS.THS.locale.en-US.yaml index ecf08567509f1..c714b6997e585 100644 --- a/manifests/t/THS/THS/9.50.71/THS.THS.locale.en-US.yaml +++ b/manifests/t/THS/THS/9.50.71/THS.THS.locale.en-US.yaml @@ -21,5 +21,7 @@ Tags: - index - market - stock +- prc +- china ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/QQWubi/2.4/Tencent.QQWubi.locale.en-US.yaml b/manifests/t/Tencent/QQWubi/2.4/Tencent.QQWubi.locale.en-US.yaml index f5764a5ed7b75..07c1ee735a939 100644 --- a/manifests/t/Tencent/QQWubi/2.4/Tencent.QQWubi.locale.en-US.yaml +++ b/manifests/t/Tencent/QQWubi/2.4/Tencent.QQWubi.locale.en-US.yaml @@ -5,17 +5,17 @@ PackageIdentifier: Tencent.QQWubi PackageVersion: "2.4" PackageLocale: en-US Publisher: 腾讯公司 -PublisherUrl: http://qq.pinyin.cn/ -PublisherSupportUrl: http://qq.pinyin.cn/help/ +PublisherUrl: https://qq.pinyin.cn/ +PublisherSupportUrl: https://qq.pinyin.cn/help/ # PrivacyUrl: Author: Beijing Sogou Technology Development Co., Ltd. PackageName: QQ五笔输入法 -PackageUrl: http://qq.pinyin.cn/wubi/ +PackageUrl: https://qq.pinyin.cn/wubi/ License: Freeware # LicenseUrl: Copyright: Copyright © 2007-2021 Sogou Inc. All Rights Reserved. # CopyrightUrl: -ShortDescription: A simple and powerful Wubi input method software +ShortDescription: A simple and powerful Wubi input method software. # Description: # Moniker: Tags: @@ -24,8 +24,10 @@ Tags: - ime - input-method - wubi +- prc +- china # ReleaseNotes: -ReleaseNotesUrl: http://qq.pinyin.cn/history_wb_pc.php +ReleaseNotesUrl: https://qq.pinyin.cn/history_wb_pc.php # PurchaseUrl: # InstallationNotes: # Documentations: diff --git a/manifests/t/Tencent/QQWubi/2.4/Tencent.QQWubi.locale.zh-CN.yaml b/manifests/t/Tencent/QQWubi/2.4/Tencent.QQWubi.locale.zh-CN.yaml index 0515a3f527f9a..5c0beb47e1187 100644 --- a/manifests/t/Tencent/QQWubi/2.4/Tencent.QQWubi.locale.zh-CN.yaml +++ b/manifests/t/Tencent/QQWubi/2.4/Tencent.QQWubi.locale.zh-CN.yaml @@ -5,12 +5,12 @@ PackageIdentifier: Tencent.QQWubi PackageVersion: "2.4" PackageLocale: zh-CN Publisher: 腾讯公司 -PublisherUrl: http://qq.pinyin.cn/ -PublisherSupportUrl: http://qq.pinyin.cn/help/ +PublisherUrl: https://qq.pinyin.cn/ +PublisherSupportUrl: https://qq.pinyin.cn/help/ # PrivacyUrl: Author: 北京搜狗科技发展有限公司 PackageName: QQ五笔输入法 -PackageUrl: http://qq.pinyin.cn/wubi/ +PackageUrl: https://qq.pinyin.cn/wubi/ License: 免费软件 # LicenseUrl: Copyright: Copyright © 2007-2021 Sogou Inc. All Rights Reserved. @@ -31,7 +31,7 @@ ReleaseNotes: |- 3. 适配“高分屏”,优化状态栏、写作窗口等显示效果 4. 修复中文状态下无法使用英文标点的问题 5. 修复大写锁定状态下无法使用 shift 切换中英文的问题 -ReleaseNotesUrl: http://qq.pinyin.cn/history_wb_pc.php +ReleaseNotesUrl: https://qq.pinyin.cn/history_wb_pc.php # PurchaseUrl: # InstallationNotes: # Documentations: diff --git a/manifests/t/ThaUnknown/Miru/3.1.11/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.1.11/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 9f1f26412a4b6..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.11/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Created using wingetcreate 1.1.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.11 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.1.11/win-Miru-3.1.11.exe - InstallerSha256: BE2C88E49E0B85D05AF85D7673C8F76B62BF8885E58DA1F3FB569167CB2735D0 -ManifestType: installer -ManifestVersion: 1.2.0 - diff --git a/manifests/t/ThaUnknown/Miru/3.1.11/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.1.11/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index be14a976b677a..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.11/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created using wingetcreate 1.1.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.11 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -License: GNU General Public License v3.0 -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- torrent -- streaming -ManifestType: defaultLocale -ManifestVersion: 1.2.0 - diff --git a/manifests/t/ThaUnknown/Miru/3.1.11/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.1.11/ThaUnknown.Miru.yaml deleted file mode 100644 index dc087f11c5045..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.11/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,9 +0,0 @@ -# Created using wingetcreate 1.1.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.11 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 - diff --git a/manifests/t/ThaUnknown/Miru/3.1.16/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.1.16/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 8a7802ea0ff67..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.16/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.3 using InputObject 🤖 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.16 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2022-10-06 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.1.16/win-Miru-3.1.16.exe - InstallerSha256: 455D9F5D1F9401FE326ABCABA37F47714E94606DC312E15E5E1563F8264FB0F5 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.1.16/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.1.16/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 0402d7728e896..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.16/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.3 using InputObject 🤖 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.16 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.1.16 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.1.16/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.1.16/ThaUnknown.Miru.yaml deleted file mode 100644 index 86bb6af5d2a0e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.16/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.3 using InputObject 🤖 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.16 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.1.17/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.1.17/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 3695ef24d7926..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.17/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.3 using InputObject 🤖 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.17 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2022-10-09 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.1.17/win-Miru-3.1.17.exe - InstallerSha256: 9145CB65385B6229DDA743A20BD01B8D08286D98EB7B4B6217ECBBA833AD2F27 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.1.17/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.1.17/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index af72f0db328ec..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.17/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.3 using InputObject 🤖 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.17 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.1.17 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.1.17/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.1.17/ThaUnknown.Miru.yaml deleted file mode 100644 index d30b4682d516b..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.17/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.3 using InputObject 🤖 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.17 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.1.19/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.1.19/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 6461065b66fb5..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.19/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.3 using InputObject 🤖 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.19 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2022-10-13 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.1.19/win-Miru-3.1.19.exe - InstallerSha256: 69DFFA3F55905614300007B7F5994BF833B910383EAE76F11186E23DCF9A058C -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.1.19/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.1.19/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 6a86483c14438..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.19/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.3 using InputObject 🤖 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.19 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.1.19 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.1.19/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.1.19/ThaUnknown.Miru.yaml deleted file mode 100644 index 12f2b8c042164..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.19/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.3 using InputObject 🤖 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.19 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.1.20/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.1.20/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 7f05858afd894..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.20/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.3 using InputObject 🤖 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.20 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2022-10-18 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.1.20/win-Miru-3.1.20.exe - InstallerSha256: D3A0DA34514B8CEB523B691D93078136077A684E0DD66B6E5718EF490618910E -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.1.20/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.1.20/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index c3adda9d919b3..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.20/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.3 using InputObject 🤖 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.20 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.1.20 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.1.20/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.1.20/ThaUnknown.Miru.yaml deleted file mode 100644 index 609996ecbab85..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.20/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.3 using InputObject 🤖 $debug=QUSU.7-2-6 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.20 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.1.7/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.1.7/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index a742644b33473..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.7/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Created using wingetcreate 1.1.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.7 -Installers: -- Architecture: x64 - InstallerType: nullsoft - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.1.7/win-Miru-3.1.7.exe - InstallerSha256: 69BFCCA2D9B7765FBC5E086EDA16D6C58B20E8E4484D2AB1792FD6444C410AF6 -ManifestType: installer -ManifestVersion: 1.2.0 - diff --git a/manifests/t/ThaUnknown/Miru/3.1.7/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.1.7/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 198509226677d..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.7/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Created using wingetcreate 1.1.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.7 -PackageLocale: en-US -Publisher: ThaUnknown_ -PackageName: Miru -License: GNU General Public License v3.0 -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -ManifestType: defaultLocale -ManifestVersion: 1.2.0 - diff --git a/manifests/t/ThaUnknown/Miru/3.1.7/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.1.7/ThaUnknown.Miru.yaml deleted file mode 100644 index 99d1f6540f9df..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.1.7/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,9 +0,0 @@ -# Created using wingetcreate 1.1.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.1.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 - diff --git a/manifests/t/ThaUnknown/Miru/3.10.0/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.10.0/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index be2378e855ce5..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.10.0/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-11 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.10.0 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-04-25 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.10.0/win-Miru-3.10.0.exe - InstallerSha256: 64119A0864CCD1702436D31A26C99DFBAB30AE6E32F8ED0F85F0C541C078E816 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.10.0/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.10.0/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 635f4b944b112..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.10.0/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-11 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.10.0 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.10.0 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.10.0/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.10.0/ThaUnknown.Miru.yaml deleted file mode 100644 index 9dad815783945..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.10.0/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-11 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.10.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.2.0/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.2.0/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 17d7c44b9df1b..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.2.0/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-3-0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.2.0 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2022-11-17 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.2.0/win-Miru-3.2.0.exe - InstallerSha256: 0FE2B41459F4297D5EBB38BB21868C76056A500555AAAA9246489CA53F807A1F -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.2.0/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.2.0/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 22bb22c22ddc9..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.2.0/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-3-0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.2.0 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.2.0 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.2.0/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.2.0/ThaUnknown.Miru.yaml deleted file mode 100644 index d1fcbfb255879..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.2.0/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-3-0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.2.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.2.2/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.2.2/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 9e1b31680e3c4..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.2.2/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.2.2 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2022-11-24 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.2.2/win-Miru-3.2.2.exe - InstallerSha256: 3164B64455A998F86422FB0BB9E6AB612CAD6AA45B8C6DAB00C3882823CE6FE9 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.2.2/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.2.2/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index fd2b9c56979ad..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.2.2/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.2.2 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.2.2 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.2.2/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.2.2/ThaUnknown.Miru.yaml deleted file mode 100644 index eb9468e281b7b..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.2.2/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.2.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.3.5/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.3.5/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index df0688482b380..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.3.5/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.3.5 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2022-12-12 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.3.5/win-Miru-3.3.5.exe - InstallerSha256: 8D0BF3BD82EC2D640C0D530E646611B6FABE151D69A0076A3BDF14C7268870B9 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.3.5/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.3.5/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index a8ee4faeadbea..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.3.5/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.3.5 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.3.5 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.3.5/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.3.5/ThaUnknown.Miru.yaml deleted file mode 100644 index dff6df3b87c99..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.3.5/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.3.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.3.6/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.3.6/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 9fb43a1e72942..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.3.6/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.3.6 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2022-12-14 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.3.6/win-Miru-3.3.6.exe - InstallerSha256: A6FDD34DED66627F6E85E55759304788F43BA211BA2625561B758183C21EEB3E -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.3.6/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.3.6/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 7d699ddc59a0c..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.3.6/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.3.6 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.3.6 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.3.6/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.3.6/ThaUnknown.Miru.yaml deleted file mode 100644 index 1eef6926bf8e3..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.3.6/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.3.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.3.7/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.3.7/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index c5d61d83728c6..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.3.7/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.3.7 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2022-12-25 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.3.7/win-Miru-3.3.7.exe - InstallerSha256: 3B213710DCB8831D158871D63653F3D573BA5D5074211A78F13D5377F828CA7B -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.3.7/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.3.7/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index ec349e000a744..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.3.7/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.3.7 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.3.7 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.3.7/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.3.7/ThaUnknown.Miru.yaml deleted file mode 100644 index 7bbe4cbbc5ef8..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.3.7/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.3.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.5.0/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.5.0/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index a32966d4d3f33..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.5.0/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.5.0 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2022-12-29 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.5.0/win-Miru-3.5.0.exe - InstallerSha256: EDD4741FE544DB51FD525194D63BA45AA5C65DFD3BE2D714FC1B13CAED92603A -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.5.0/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.5.0/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 5f47ad390ffe9..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.5.0/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.5.0 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.5.0 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.5.0/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.5.0/ThaUnknown.Miru.yaml deleted file mode 100644 index b92790f9c2b6f..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.5.0/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.5.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.5.2/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.5.2/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index e69068299dcea..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.5.2/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.5.2 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2022-12-31 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.5.2/win-Miru-3.5.2.exe - InstallerSha256: 4003096D2213E5A9FFB9DCC3C920FF1D3E18CB4F91D88CC0881B4D77472709B9 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.5.2/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.5.2/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 16c653e881245..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.5.2/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.5.2 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.5.2 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.5.2/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.5.2/ThaUnknown.Miru.yaml deleted file mode 100644 index ec6b902342311..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.5.2/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.5.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.5.3/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.5.3/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index edbcec95f40a5..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.5.3/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.5.3 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-01-02 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.5.3/win-Miru-3.5.3.exe - InstallerSha256: 4424A0B9481B3D43739EB3700E974B7350B39102E2639BB81AFA68314F95C9AD -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.5.3/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.5.3/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 633532382384e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.5.3/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.5.3 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.5.3 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.5.3/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.5.3/ThaUnknown.Miru.yaml deleted file mode 100644 index e23b44291f533..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.5.3/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.5.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.5.5/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.5.5/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 0aedbb42f32e7..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.5.5/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.5.5 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-01-06 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.5.5/win-Miru-3.5.5.exe - InstallerSha256: E23B61FD9787344C1309C2F0FDE070349996913F92EC8B49F8BDDFC8D2E35B27 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.5.5/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.5.5/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 3aeebe6c96f24..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.5.5/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.5.5 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.5.5 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.5.5/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.5.5/ThaUnknown.Miru.yaml deleted file mode 100644 index 9b7d0f4329055..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.5.5/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.5.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.6.0/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.6.0/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 8809622070ab9..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.6.0/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.6.0 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-01-15 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.6.0/win-Miru-3.6.0.exe - InstallerSha256: 27B0CDD33260D9CC37207571FA376BD657D957C87305DFAC2F50747919114EBF -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.6.0/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.6.0/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index e1526611d5e13..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.6.0/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.6.0 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.6.0 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.6.0/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.6.0/ThaUnknown.Miru.yaml deleted file mode 100644 index 58f995a2d5fbb..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.6.0/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.6.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.0/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.7.0/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 4a7622b431b8d..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.0/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.0 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-01-16 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.7.0/win-Miru-3.7.0.exe - InstallerSha256: 6A18D3065E221C1A347C008DD9299983342045E8C8B36A8A495C7C45513C8C28 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.0/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.7.0/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index c04bfa148e891..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.0/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.0 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.7.0 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.0/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.7.0/ThaUnknown.Miru.yaml deleted file mode 100644 index 508e17c60a7e6..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.0/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.1/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.7.1/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 26fbd9b0b1f0e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.1/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.1 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-01-18 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.7.1/win-Miru-3.7.1.exe - InstallerSha256: 19F2B5CCB04CFF8A84A2AB9042DBD2099BF8E7D4E837CFC3A321915F0ECD0898 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.1/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.7.1/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 6bc0953c09e53..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.1/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.1 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.7.1 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.1/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.7.1/ThaUnknown.Miru.yaml deleted file mode 100644 index 1c9da085fae34..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.1/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.2/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.7.2/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 7933d82e93b09..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.2/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.2 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-01-21 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.7.2/win-Miru-3.7.2.exe - InstallerSha256: 7C5E074F43D4C94BD1F36652723AE48A583B2A48410CF1F339940CCA044C4A32 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.2/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.7.2/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 3e140f20275af..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.2/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.2 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.7.2 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.2/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.7.2/ThaUnknown.Miru.yaml deleted file mode 100644 index fb8a76fdc37c0..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.2/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.5/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.7.5/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 651c5dd325ed1..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.5/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.5 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-02-21 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.7.5/win-Miru-3.7.5.exe - InstallerSha256: 5C1D0E0792A1372C61DA60A07995293D1D27FEBF55D6FD5EC73553BA79E9816E -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.5/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.7.5/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 03bdc14170494..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.5/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.5 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.7.5 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.5/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.7.5/ThaUnknown.Miru.yaml deleted file mode 100644 index b5f73622e6c8e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.5/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.6/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.7.6/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 776abc2bb569e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.6/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.6 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-02-21 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.7.6/win-Miru-3.7.6.exe - InstallerSha256: 935A265B86DA1759CFE20A72C77877910BD14A67EEFC72DA7FED5DD342A64078 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.6/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.7.6/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 4b7a25753b9d1..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.6/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.6 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.7.6 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.7.6/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.7.6/ThaUnknown.Miru.yaml deleted file mode 100644 index 6fa3112874198..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.7.6/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.7.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.8.1/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.8.1/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 88eddbef591d7..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.8.1/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.8.1 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-02-26 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.8.1/win-Miru-3.8.1.exe - InstallerSha256: 29A671D3115C8C622849084E1BDE999A17D12230F5002B87E818B2D5860EC1AB -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.8.1/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.8.1/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 5f3232fdefbeb..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.8.1/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.8.1 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.8.1 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.8.1/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.8.1/ThaUnknown.Miru.yaml deleted file mode 100644 index 5dd2d83a5c3d9..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.8.1/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.8.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.0/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.9.0/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 4412d81300ee2..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.0/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.0 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-04-09 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.9.0/win-Miru-3.9.0.exe - InstallerSha256: 130DE18C3F48A867B380F3B7E57D8769DAE74AD7F951034F4B836F59E853C60E -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.0/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.9.0/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 483e56a33e75b..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.0/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.0 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.9.0 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.0/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.9.0/ThaUnknown.Miru.yaml deleted file mode 100644 index f26f01ff558ce..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.0/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.10/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.9.10/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index e895c3cfd6f82..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.10/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.10 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-04-19 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.9.10/win-Miru-3.9.10.exe - InstallerSha256: 8E31D20ADDD263B1A4A0FFD6632B723131B0F50FC00EF6B19FACFB7FDAA34CD0 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.10/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.9.10/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 40102ff3bfc69..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.10/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.10 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.9.10 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.10/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.9.10/ThaUnknown.Miru.yaml deleted file mode 100644 index e29b38bf305df..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.10/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.10 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.2/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.9.2/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 9abfb479ee395..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.2/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.2 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-04-10 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.9.2/win-Miru-3.9.2.exe - InstallerSha256: 3F450E873546C3CE382AEC2E9AF29B6858638567583D1B0075E82502399079D0 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.2/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.9.2/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index bca15afa2e1f1..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.2/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.2 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.9.2 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.2/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.9.2/ThaUnknown.Miru.yaml deleted file mode 100644 index f0dada3ce5dd2..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.2/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.3/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.9.3/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 038aab7ee363e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.3/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.3 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-04-11 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.9.3/win-Miru-3.9.3.exe - InstallerSha256: 73359B2F13792FB908E8DC7D02E2177F0C086AA5522432454CDDBCE3ACBC102C -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.3/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.9.3/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 19924cd685b93..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.3/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.3 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.9.3 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.3/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.9.3/ThaUnknown.Miru.yaml deleted file mode 100644 index d9881ca323ee6..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.3/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.5/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.9.5/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 2b51791e95168..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.5/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.5 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-04-13 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.9.5/win-Miru-3.9.5.exe - InstallerSha256: 4FBC3566C9D66D5DF26A6FBE9691112CE11A4DB97112EBA1541BEDF92771CF21 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.5/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.9.5/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index a27b9904325bf..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.5/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.5 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.9.5 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.5/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.9.5/ThaUnknown.Miru.yaml deleted file mode 100644 index ebcd4a1584bb7..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.5/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.6/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.9.6/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 918c2314ddb0c..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.6/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.6 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-04-14 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.9.6/win-Miru-3.9.6.exe - InstallerSha256: EC6DD10DD5BE8B75088A8305B54E837291C947C191BF180BFE643DE1B9DFB22B -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.6/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.9.6/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index eb80c6204459a..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.6/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.6 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.9.6 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.6/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.9.6/ThaUnknown.Miru.yaml deleted file mode 100644 index c6e87ca8837e2..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.6/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.7/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.9.7/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 783f1f6519f94..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.7/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.7 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-04-15 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.9.7/win-Miru-3.9.7.exe - InstallerSha256: B550BBADD67E9B194C95248E71C66C0F691DD6C635BC1387F434592A6C0D8507 -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.7/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.9.7/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 1e4cd34c293e0..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.7/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.7 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.9.7 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.7/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.9.7/ThaUnknown.Miru.yaml deleted file mode 100644 index 64adfa605e841..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.7/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.8/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/3.9.8/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 25894dcb57cc0..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.8/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.8 -MinimumOSVersion: 10.0.0.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-04-17 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v3.9.8/win-Miru-3.9.8.exe - InstallerSha256: FE8719A2F0FA801062D859DE9DC6130801255A25748D61BC09BA190D4B58240B -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.8/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/3.9.8/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 8f8fc3049c301..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.8/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.8 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -# PrivacyUrl: -Author: ThaUnknown_ -PackageName: Miru -# PackageUrl: -License: GNU General Public License v3.0 -# LicenseUrl: -Copyright: Copyright © 2022 ThaUnknown_ -# CopyrightUrl: -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: A pure JS BitTorrent streaming environment, with a built-in list manager. Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. Completly ad free with no tracking/data collection. This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -# Moniker: -Tags: -- anime -- streaming -- torrent -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v3.9.8 -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/3.9.8/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/3.9.8/ThaUnknown.Miru.yaml deleted file mode 100644 index 54208ca24f7c7..0000000000000 --- a/manifests/t/ThaUnknown/Miru/3.9.8/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 using InputObject 🤖 $debug=QUSU.CRLF.7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 3.9.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/t/ThaUnknown/Miru/4.3.11/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.3.11/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 013f066d92885..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.3.11/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.10.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 4.3.11 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-08-23 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.3.11/win-Miru-4.3.11.exe - InstallerSha256: C3FA2503E336DED27919217701A424E45B745AB1154D2DF8F5CF81307CEE2984 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.3.11/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.3.11/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 72dd66a397466..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.3.11/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.10.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 4.3.11 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.3.11 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.3.11/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.3.11/ThaUnknown.Miru.yaml deleted file mode 100644 index 7668c0e74b868..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.3.11/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.10.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 4.3.11 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.3.12/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.3.12/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index ca6c2e6cdda14..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.3.12/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.10.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 4.3.12 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-08-24 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.3.12/win-Miru-4.3.12.exe - InstallerSha256: 36F857FC9FCBEEDF1319443D92693C72F4678387C9C834C78C864F5A72D28EE2 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.3.12/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.3.12/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 22a3d4aaeaf67..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.3.12/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.10.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 4.3.12 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: greatly improve animation, scrolling and rendering performance and framerates' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.3.12 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.3.12/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.3.12/ThaUnknown.Miru.yaml deleted file mode 100644 index b8ee07b57127b..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.3.12/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser v2 using Komac v1.10.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 4.3.12 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.3.14/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.3.14/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index a48aa02bae092..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.3.14/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.3.14 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-09-03 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.3.14/win-Miru-4.3.14.exe - InstallerSha256: 39F83607762C4D1BE89C19FB2D3173E5872EBEED1559FB9A2EA385B3C4D3EF50 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.3.14/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.3.14/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index f5918c94846e2..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.3.14/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.3.14 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: extract OFT fonts - - fix: don't mark anime watched ahead of schedule as complete - - fix: load last played torrent faster - - fix: exclude WebRTC errors - - fix: force add more trackers -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.3.14 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.3.14/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.3.14/ThaUnknown.Miru.yaml deleted file mode 100644 index ecde6eb6449a2..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.3.14/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.3.14 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.1/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.4.1/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 17b39d94046b9..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.1/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.1 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-09-03 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.4.1/win-Miru-4.4.1.exe - InstallerSha256: FB1AE183FFAD73C5E8AFBDCEE19955D74CC4D0006CE26E3A8BEAA6FDC86487C8 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.1/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.4.1/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 4da1ad598bf11..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.1/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.1 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - perf: load last torrent faster - - perf: don't rescan last played torrent if it was finished - - perf: reduce hitching during initial load - - perf: load torrent client much faster -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.4.1 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.1/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.4.1/ThaUnknown.Miru.yaml deleted file mode 100644 index e024db9f3c39a..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.1/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.10/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.4.10/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 7d5a0ae53e7ae..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.10/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.10 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-09-18 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.4.10/win-Miru-4.4.10.exe - InstallerSha256: C6559589E6D548FF9C8410FC3BF063B55D5B8274EC27470F1F6D6C95E0C463FF -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.10/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.4.10/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 663f5cbc6e004..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.10/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.10 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: w2g state not propagatng' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.4.10 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.10/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.4.10/ThaUnknown.Miru.yaml deleted file mode 100644 index c314819a3331e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.10/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.10 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.11/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.4.11/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index dbb9b6d6ccb41..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.11/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.11 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-09-23 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.4.11/win-Miru-4.4.11.exe - InstallerSha256: B752250DEBE75D87A0D95B2E6ADE3639EC187CF66EC7F86D9F4B638EB29A8A5D -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.11/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.4.11/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index bff86d90efb11..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.11/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.11 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: error on close' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.4.11 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.11/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.4.11/ThaUnknown.Miru.yaml deleted file mode 100644 index 38218e839c4cf..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.11/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.11 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.14/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.4.14/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 00990532eeff0..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.14/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.14 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-10-16 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.4.14/win-Miru-4.4.14.exe - InstallerSha256: F28BF86986428701146A7B90040BD93D1D04D701A6A41DFE1BE016B6CB7C25AC -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.14/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.4.14/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index dd3f2ddfe9e17..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.14/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.14 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: updated JASSUB - - feat: russian subtitle and audio select - - fix: crash when pasting incorrect settings -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.4.14 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.14/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.4.14/ThaUnknown.Miru.yaml deleted file mode 100644 index 96656f25b05a5..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.14/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.14 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.19/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.4.19/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 80b1c177638df..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.19/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.19 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-11-13 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.4.19/win-Miru-4.4.19.exe - InstallerSha256: 92E60C182AC40DAF2D8BB85D7B7799337A72A21B6D5060237BEBF0475D6398ED -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.19/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.4.19/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index d34a7b8c39288..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.19/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.19 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: update user lists every 15 minutes - - feat: allow custom order and sections on home screen - - fix: improve settings code - - fix: banner skeleton loader - - fix: full card skeleton loader -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.4.19 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.19/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.4.19/ThaUnknown.Miru.yaml deleted file mode 100644 index a25905fd9114b..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.19/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.19 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.3/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.4.3/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 3b049eff9b5f5..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.3/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.3 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-09-05 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.4.3/win-Miru-4.4.3.exe - InstallerSha256: 4258770D6F6BBA6A505A57CEAD57BB584F56D138B067E24A4E48AB8937804166 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.3/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.4.3/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 5932ad7346f7d..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.3/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.3 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: player error toast interaction - - fix: torrent client ready state - - fix: title lookup errors - - fix: trackpad scrolling -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.4.3 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.3/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.4.3/ThaUnknown.Miru.yaml deleted file mode 100644 index 7fb30a0565960..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.3/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.5/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.4.5/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index a3d1fc1861d24..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.5/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.5 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-09-10 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.4.5/win-Miru-4.4.5.exe - InstallerSha256: B2A0544DBC437503D70D992CBB0D1C4F3A1F6049C72D42DC9F8547A7A80E89F6 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.5/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.4.5/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index d07898a8b69dc..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.5/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.5 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- feat: extract font files from torrents' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.4.5 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.5/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.4.5/ThaUnknown.Miru.yaml deleted file mode 100644 index 7468571a6b295..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.5/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.7/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.4.7/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 2bd2200801701..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.7/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.7 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-09-12 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.4.7/win-Miru-4.4.7.exe - InstallerSha256: 503EF1254791A7D4121C2DBDA8198DC676729C3904A3B57EA6B6242E67DC0DE1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.7/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.4.7/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index b49a377f75d73..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.7/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.7 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: resolve anime by year - - fix: remove dead findSubFiles legacy code - - chore: improve type declarations -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.4.7 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.7/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.4.7/ThaUnknown.Miru.yaml deleted file mode 100644 index 6f7a57182f765..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.7/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.8/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.4.8/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index f753f2d088d23..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.8/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.8 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-09-13 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.4.8/win-Miru-4.4.8.exe - InstallerSha256: D97D4E61D86A7E43C504FAA515C4CD385222EDA33CDAA9F63B28E85F55D201EA -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.8/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.4.8/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index b514c16a3ed08..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.8/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.8 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: disable autoplay when in w2g - - feat: add search to rss view torrent list - - feat: add warning and disable full buffering when batch is over 32 GB - - feat: add warning when torrent exceeds available space on drive -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.4.8 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.8/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.4.8/ThaUnknown.Miru.yaml deleted file mode 100644 index 9758bd7d3e492..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.8/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.9/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.4.9/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 81121e15b3fd8..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.9/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.9 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-09-17 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.4.9/win-Miru-4.4.9.exe - InstallerSha256: 1B7280924A772DEBD2C5E0D455ECFD7EDCCD24C55FE0F9CBB18DA71641EAD415 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.9/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.4.9/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 0cef7390ba2e9..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.9/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.9 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: playback errors on unwatched media' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.4.9 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.4.9/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.4.9/ThaUnknown.Miru.yaml deleted file mode 100644 index a742a8202b520..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.4.9/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.4.9 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.0/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.5.0/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 9c4bd1717a2e8..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.0/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-11-21 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.5.0/win-Miru-4.5.0.exe - InstallerSha256: AB2F48D4430B6120678C37BDC7DD09CBF66E93568CFDD344453218EAC0CADD9A -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.0/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.5.0/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 6c970dbf249b8..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.0/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.0 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: more responsive UI design - - fix: click and touch navigation improvements - - feat: bottom navbar - - feat(wip): gamepad navigation - - fix: mobile/touch controls for video player - - feat: improve miniplayer click handling - - fix: color flashing when loading on slow devices - - feat: better settings UI - - feat: better setting descriptions - - feat: more memory for subtitle rendering - - feat: subtitle resolution render limit - - fix: improve font select component -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.5.0 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.0/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.5.0/ThaUnknown.Miru.yaml deleted file mode 100644 index 6600fcb155878..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.0/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.1/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.5.1/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 772515fdeed80..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.1/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.1 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-11-23 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.5.1/win-Miru-4.5.1.exe - InstallerSha256: 425C63A85D49C5B98887C89CDC04AF72A0A5DBE5E6880C232D725714D0E968F8 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.1/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.5.1/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index cea06ab701c2b..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.1/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.1 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.5.1 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.1/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.5.1/ThaUnknown.Miru.yaml deleted file mode 100644 index 5e15c4348fa6e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.1/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.10/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.5.10/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index e8811d152b5f3..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.10/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.10 -InstallerType: portable -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-01-20 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.5.10/win-Miru-4.5.10-portable.exe - InstallerSha256: 473D9368ABFFE1B767766118229CD6DE51E3DDB718134598B9CB61FB23CDEA70 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.10/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.5.10/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 37a77c7917e53..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.10/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.10 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: resolve season caching - - fix: anilist 500 errors workaround -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.5.10 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.10/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.5.10/ThaUnknown.Miru.yaml deleted file mode 100644 index d7b78583ea94b..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.10/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.10 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.2/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.5.2/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 5e31ea6c91380..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.2/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.2 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-11-23 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.5.2/win-Miru-4.5.2.exe - InstallerSha256: 03F5735D281696CB09ED331A69D80E613033C658A7B989DDAABE37355C2FD5E7 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.2/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.5.2/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index b255688eb1a08..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.2/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.2 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: update discord rich pressence status instantly when changing options - - fix: box at the end of lines when converting VTT/SRT subtitles -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.5.2 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.2/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.5.2/ThaUnknown.Miru.yaml deleted file mode 100644 index 07446ccbd6c08..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.2/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.4/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.5.4/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index a81336baf1902..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.4/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.4 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-11-24 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.5.4/win-Miru-4.5.4.exe - InstallerSha256: 3543F9F6160FE03CF8484921CE6C70FD4D6B4E8DC9AC2A38F37F978C3BBE39D7 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.4/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.5.4/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 1140e85ac6498..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.4/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.4 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: show "oops!" when no data is available for search or feed - - fix: error handling for sections and search - - feat: better setting validation - - fix: crash on invalid DoH URL - - fix: time out nyaa lookup after 5s -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.5.4 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.4/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.5.4/ThaUnknown.Miru.yaml deleted file mode 100644 index e5676b02c16d1..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.4/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.5/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.5.5/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 2f60da9d18dbd..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.5/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.5 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-11-24 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.5.5/win-Miru-4.5.5.exe - InstallerSha256: 8418A0BC937B8BE56CA47CD89F5EA257B464B23F586D9DC40ACAA10B3AD5EC68 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.5/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.5.5/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index e60ac56929147..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.5/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.5 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: further improve mobile UI for viewAnime - - feat: add option to reverse episode list on small displays - - fix: nyaa not reachable peer count errors -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.5.5 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.5/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.5.5/ThaUnknown.Miru.yaml deleted file mode 100644 index c30adf393356a..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.5/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.6/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.5.6/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 460db6f182192..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.6/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.6 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-12-09 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.5.6/win-Miru-4.5.6.exe - InstallerSha256: 27EA9656B8CA80899770DE7D346AE4F1FE8B9ADB30F4F310AFE12531EF0648E5 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.6/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.5.6/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 5c47dce8d2a1d..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.6/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.6 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: dpad navigation on touch or coarse devices - - fix: corrupted video hanging miru - - fix: video keybinds triggering when in torrent search -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.5.6 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.6/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.5.6/ThaUnknown.Miru.yaml deleted file mode 100644 index 724455cae753c..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.6/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.8/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.5.8/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index fdb914efbec5f..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.8/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.8 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2023-12-21 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.5.8/win-Miru-4.5.8.exe - InstallerSha256: DA8894465710A1EE3CB0BCF6219488919FC9ECE5155F1EB5CC5EAEF18EE53A76 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.8/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.5.8/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index c88e34d5d1c00..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.8/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.8 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: deband settings reactivity' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.5.8 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.8/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.5.8/ThaUnknown.Miru.yaml deleted file mode 100644 index 7d834541a1ba9..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.8/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.9/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/4.5.9/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index ba20fbb9525d8..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.9/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.9 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-01-09 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v4.5.9/win-Miru-4.5.9.exe - InstallerSha256: 541BD382F071E60F6359A6B0A524724E442ECAF9EF2FD872032A6FC475020789 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.9/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/4.5.9/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 92a4ccefcab0c..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.9/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.9 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: persist playback speed across files - - feat: show playback speed - - fix: find movie in current list of files - - feat: portable build - - feat: don't show episode thumbnails in RSS feeds for unwatched episodes - - feat: mobile vibrate on touch - - feat: seadex mappings -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v4.5.9 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/4.5.9/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/4.5.9/ThaUnknown.Miru.yaml deleted file mode 100644 index 1500c79d25545..0000000000000 --- a/manifests/t/ThaUnknown/Miru/4.5.9/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 4.5.9 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.10/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.0.10/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 8b1d205a8a6fd..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.10/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.10 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-04-15 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.0.10/win-Miru-5.0.10-portable.exe - InstallerSha256: 1259500D8D7718556EC88C8646A3D674EAC85612DF444F80B0F669B483ADA6FE -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.10/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.0.10/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index bda799870a7fb..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.10/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.10 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: crash in settings when not signed in' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.0.10 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.10/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.0.10/ThaUnknown.Miru.yaml deleted file mode 100644 index 7c8343758b969..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.10/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.10 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.11/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.0.11/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 8e08be54e68ad..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.11/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.11 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-04-17 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.0.11/win-Miru-5.0.11-portable.exe - InstallerSha256: ECA35AFAC98F833115494E44809962FA5A24A7D14B9C9ACB70F39B10B20F89C4 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.11/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.0.11/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index af5a4dbcbb204..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.11/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.11 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: negative subtitle offset - - fix: unable to use play next/last buttons on anime with no official episode counts -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.0.11 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.11/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.0.11/ThaUnknown.Miru.yaml deleted file mode 100644 index 2eb8be7f2c655..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.11/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.11 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.12/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.0.12/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index b58ad75df27d0..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.12/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.12 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-04-18 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.0.12/win-Miru-5.0.12-portable.exe - InstallerSha256: BC8662413D5A20A402C58718CB89CB6CB6F407DD486751A799C7A9A29C2EE5BF -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.12/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.0.12/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 6a7e8c55594b7..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.12/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.12 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: dont mark as complete when not necessary - - fix: dont spam failed resolve media -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.0.12 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.12/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.0.12/ThaUnknown.Miru.yaml deleted file mode 100644 index f56357e2aa2d1..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.12/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.12 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.5/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.0.5/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 537573544b9d6..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.5/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.5 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-04-04 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.0.5/win-Miru-5.0.5-portable.exe - InstallerSha256: D13F512A1DD622F0A14BA4B40131213516772CC247646C1BCBD49880CB04F913 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.5/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.0.5/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index e177590d6500c..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.5/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.5 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: card type setting - - fix: nicer looking torrent errors - - fix: throw error when no extensions are configured -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.0.5 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.5/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.0.5/ThaUnknown.Miru.yaml deleted file mode 100644 index d60a2b2db1c39..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.5/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.6/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.0.6/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 4c5f8567735a2..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.6/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.6 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-04-13 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.0.6/win-Miru-5.0.6-portable.exe - InstallerSha256: 8915AB969591AF9EDAFD29C2B0B3927F6D252D8E9016EE0E8724517B8251BB63 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.6/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.0.6/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index aa59e39db5609..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.6/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.6 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: deband keybinds - - feat: keybind descriptions - - fix: video cover mode for deband video - - fix: remove curly brackets on css variables - - feat: use media cache for cards - - fix: show deband video in PiP - - fix: sanitise PiP window size - - fix: episode list progress for completed anime - - fix: step on upload speed settings -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.0.6 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.6/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.0.6/ThaUnknown.Miru.yaml deleted file mode 100644 index 4f419ba074e25..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.6/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.9/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.0.9/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 0f5684244af6d..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.9/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.9 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-04-15 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.0.9/win-Miru-5.0.9-portable.exe - InstallerSha256: 4F7BDDDCB5020513DECD57338EECDD82FF0CEC46CC5A0DBD32F18C5AA0EDB5D5 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.9/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.0.9/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index c7c91497159ac..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.9/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.9 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: file parsing errors on low download speeds - - fix: banner cycling causing scrolling jumps - - breaking: remove recommendations - - fix: remove all CORS - - perf: decrease load times by removing preflight, and caching user data -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.0.9 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.0.9/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.0.9/ThaUnknown.Miru.yaml deleted file mode 100644 index 970854b6c6159..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.0.9/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.0.9 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.0/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.1.0/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 38fe0d7dc1c84..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.0/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-04-19 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.1.0/win-Miru-5.1.0-installer.exe - InstallerSha256: 83556E6B461DBD23185ECCA4FBC84CDFAE284541914A45AC73DC97B3C1EC86F3 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.0/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.1.0/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index a3cea1c30b96f..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.0/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.0 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- feat: permanent UPNP mappings' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.1.0 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.0/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.1.0/ThaUnknown.Miru.yaml deleted file mode 100644 index 03a0e2c3f78ed..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.0/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.10/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.1.10/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index ed39634edc004..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.10/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.10 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-07-04 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.1.10/win-Miru-5.1.10-installer.exe - InstallerSha256: A14E31961E118103EB49062E1AD36A02380E0DC88EC5F80A1056CC2565BF0695 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.10/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.1.10/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 7e31f998cddd3..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.10/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.10 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: subtitles not working - - fix: some performance flags potentially not working - - feat: log renderer output in .log files -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.1.10 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.10/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.1.10/ThaUnknown.Miru.yaml deleted file mode 100644 index dfbb957ddfc17..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.10/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.10 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.2/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.1.2/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 4a9819faf8470..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.2/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.2 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-06-16 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.1.2/win-Miru-5.1.2-installer.exe - InstallerSha256: 51F10B77C29A6A4D2E6580DA97EEF17A02059CC760CDB972D4BE96733C778349 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.2/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.1.2/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 15e97b96b4e4f..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.2/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.2 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - chore: update deps - - fix: Failed making request to anilist! - Try again in a minute. 404-not found #453 - - fix: improve default fonts for subtitle renderer - - fix: external player URL encoding - - fix: al entry running when not necessary - - fix: androidTV getting stuck in torrent select modal - - fix: bottom of settings not visible on medium size displays - - fix: android double clicking -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.1.2 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.2/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.1.2/ThaUnknown.Miru.yaml deleted file mode 100644 index dc7c2b7f9446e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.2/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.4/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.1.4/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 48baca3b2d68e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.4/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.4 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-06-17 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.1.4/win-Miru-5.1.4-installer.exe - InstallerSha256: 36F985C028FE20E474F33D07381EA7050AA13FBC93E67B05173578918F70E31C -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.4/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.1.4/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index eda7e42ef5ae1..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.4/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.4 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: macos updater' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.1.4 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.4/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.1.4/ThaUnknown.Miru.yaml deleted file mode 100644 index 21fc1cc7da548..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.4/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.6/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.1.6/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index ddb43629e2858..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.6/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.6 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-06-25 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.1.6/win-Miru-5.1.6-installer.exe - InstallerSha256: FA0B92DBC645C5079B09ACD5CF804D119A7A00095FF3EAA6214882A332F1D7B6 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.6/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.1.6/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index f46a8f7bd5b52..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.6/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.6 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: notifications - - fix: incorrect version showing on android -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.1.6 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.6/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.1.6/ThaUnknown.Miru.yaml deleted file mode 100644 index 8c5247a37d43c..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.6/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.8/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.1.8/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 71bddd9434606..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.8/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.8 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-06-30 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.1.8/win-Miru-5.1.8-installer.exe - InstallerSha256: EA2ED4A61A831B4C76780888BFD4C08D1D5A2D0AD9BF21A9D80AAA266CEA82FD -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.8/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.1.8/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 05981d64ae652..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.8/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.8 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: allow for gradient customization via custom CSS - - fix: exclude dual audio if not supported by device - - fix: don't use crypto for UUID [VR] - - fix: improve search menu on mobile - - fix: further improve DPad navigation on AndroidTV - - feat: make home screen lists scrollable on android - - fix: airing schedule issues -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.1.8 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.8/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.1.8/ThaUnknown.Miru.yaml deleted file mode 100644 index bd2fbef8dff37..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.8/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.9/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.1.9/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 3b110795558c7..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.9/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.9 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-07-03 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.1.9/win-Miru-5.1.9-installer.exe - InstallerSha256: A68E790E62FF61F61EFA58C0CE7226E6CCBF0C591C4C4C35B6656CFC63450592 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.9/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.1.9/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index f5b883257183c..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.9/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.9 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: macos updated - - feat: streamed download - - feat: improve extension errors -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.1.9 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.1.9/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.1.9/ThaUnknown.Miru.yaml deleted file mode 100644 index 7a50b8712aee8..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.1.9/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.1.9 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.0/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.2.0/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index faf629c49b9cb..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.0/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.0 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-07-11 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.2.0/win-Miru-5.2.0-installer.exe - InstallerSha256: 7A480D0C6AC4DD22E21493B734883C34ED15A44EE4B51784BBC0E464DEF6F759 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.0/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.2.0/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 14cf0c0b4fde7..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.0/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.0 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: incorrect path encoding breaking external players - - fix: improve touch interaction styles - - fix: banner gradient shrinking too much on low resolutions - - fix: don't show anime that hasn't aired on home screen banner - - fix: change scrape errors to warnings, improve warn message - - fix: drop fonts >16MB on mobile [crashes] - - feat: improve card styling on low resolutions and mobile -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.2.0 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.0/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.2.0/ThaUnknown.Miru.yaml deleted file mode 100644 index dd5d90bf560bd..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.0/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.1/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.2.1/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 4e64dae05fde2..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.1/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.1 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-07-11 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.2.1/win-Miru-5.2.1-installer.exe - InstallerSha256: 3B98EE9912EE9278B0B4F2C3A7A8F18C2E3FE8DA15F1D0C6E3D3495B97608902 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.1/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.2.1/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 12f5b269a88e9..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.1/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.1 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: dont scale progress bars' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.2.1 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.1/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.2.1/ThaUnknown.Miru.yaml deleted file mode 100644 index 4026468efb830..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.1/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.11/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.2.11/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 9146f3d742fda..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.11/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.11 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-05 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.2.11/win-Miru-5.2.11-installer.exe - InstallerSha256: 22CEA6A00EC1ABC611D840706C504D34C22A01E9C6EEB6AAB237D413543991A2 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.11/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.2.11/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 6e188fa65c56f..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.11/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.11 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: batched media resolving' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.2.11 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.11/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.2.11/ThaUnknown.Miru.yaml deleted file mode 100644 index 45fb91a3eff66..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.11/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.11 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.12/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.2.12/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index f6af75825bbbf..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.12/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.12 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-05 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.2.12/win-Miru-5.2.12-installer.exe - InstallerSha256: C61899919FBBB8065310AE9F787ED6940817F1A1DB0112F3E9CD98F382A6B979 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.12/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.2.12/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index dea64943283ce..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.12/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.12 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: media error on load when starting app with persist files disabled' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.2.12 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.12/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.2.12/ThaUnknown.Miru.yaml deleted file mode 100644 index 444218a4d29fd..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.12/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.12 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.14/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.2.14/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index c00c4974a785c..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.14/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.14 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-05 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.2.14/win-Miru-5.2.14-installer.exe - InstallerSha256: 9CD20C61CC180A70EAFC9C96EC6A117CD622FDC37332F210317B36E02907885B -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.14/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.2.14/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 10171c386a983..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.14/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.14 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: improve update behavior - - "fix": macos updates -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.2.14 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.14/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.2.14/ThaUnknown.Miru.yaml deleted file mode 100644 index 4174e0f0f07f0..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.14/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.14 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.15/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.2.15/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 0787fcfed86d3..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.15/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.15 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-13 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.2.15/win-Miru-5.2.15-installer.exe - InstallerSha256: BC5B041026DAD43FF44B77DF6DEF8C3C403415F0843B701F35D68F1282D42E0D -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.15/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.2.15/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index ded84dd6d0050..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.15/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.15 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.2.15 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.15/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.2.15/ThaUnknown.Miru.yaml deleted file mode 100644 index cc53da631abc5..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.15/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.15 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.16/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.2.16/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 84786fcad638e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.16/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.16 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-13 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.2.16/win-Miru-5.2.16-installer.exe - InstallerSha256: CDA538994E1D97FEB649F3D9B43182FFEB33A1C2F20457A09B9F6457B22CF4C1 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.16/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.2.16/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index f97e5b6aa7d68..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.16/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.16 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix:updater errors' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.2.16 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.16/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.2.16/ThaUnknown.Miru.yaml deleted file mode 100644 index 0704733ef9d41..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.16/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.16 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.2/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.2.2/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index a2f2e5fd4ffb0..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.2/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.2 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-07-12 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.2.2/win-Miru-5.2.2-installer.exe - InstallerSha256: 2CE50C10098F00A95B4382F03D2E2734B9093EAB27774213443A0E303DB1E17E -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.2/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.2.2/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 471f2fd701d1f..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.2/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.2 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: subtitle fonts being incorrectly encoded - - fix: touch seeking controlls issues -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.2.2 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.2/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.2.2/ThaUnknown.Miru.yaml deleted file mode 100644 index 3a62d228f49ef..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.2/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.6/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.2.6/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 10bbdc96c4b8b..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.6/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.6 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-07-26 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.2.6/win-Miru-5.2.6-installer.exe - InstallerSha256: 0AC61F7929BF6A84CA59B9635C7CF041C54FC5E1D5DE9C3F34D857B22E5D9C5C -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.6/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.2.6/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index a765b0876da99..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.6/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.6 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: url encoding for external players' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.2.6 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.6/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.2.6/ThaUnknown.Miru.yaml deleted file mode 100644 index 61bfa9bb1349c..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.6/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.7/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.2.7/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 36f3113be4b05..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.7/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.7 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-07-29 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.2.7/win-Miru-5.2.7-installer.exe - InstallerSha256: 109D59F62399BB4F58468991DEB090FF9FB05FC1744D77D09B0BC9385218BBCF -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.7/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.2.7/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index cc013b51994ab..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.7/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.7 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- feat: download status icon [replaces notification]' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.2.7 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.2.7/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.2.7/ThaUnknown.Miru.yaml deleted file mode 100644 index 60acd5eb7b3e3..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.2.7/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.2.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.0/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.3.0/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 3e7b778954f7e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.0/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.0 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-18 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.3.0/win-Miru-5.3.0-installer.exe - InstallerSha256: F043F70DB4FC1F2FF5E62C67209BD7D91C6B0D555FB133990D0A1A283FA19CC0 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.0/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.3.0/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 4f9ecb71b7521..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.0/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.0 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: batched media resolving - - fix: reduce failure rate on nyaa scrape - - fix: navigation softlock - - feat: better debug logging - - fix: make account related buttons disabled when not signed in - - fix: improve DTS exclusions -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.3.0 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.0/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.3.0/ThaUnknown.Miru.yaml deleted file mode 100644 index bee3f8617cb8e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.0/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.1/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.3.1/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 76d875b880147..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.1/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.1 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-18 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.3.1/win-Miru-5.3.1-installer.exe - InstallerSha256: 4EF46A6F535A61E569CC25087D19A7302E0B82413466B743B99ACF4DBBAF5C8B -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.1/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.3.1/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index a6bb87f1cfe4a..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.1/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.1 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: logging errors' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.3.1 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.1/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.3.1/ThaUnknown.Miru.yaml deleted file mode 100644 index 3c30e20df48ec..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.1/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.5/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.3.5/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index a778f860b5b34..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.5/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.5 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-20 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.3.5/win-Miru-5.3.5-installer.exe - InstallerSha256: 50FFB17E23CEC942431656913A0EF4EDCF6B2A8E00D81C648EBD90CD674F4120 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.5/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.3.5/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index da5c85a22dcc3..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.5/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.5 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: auto skip op/ed option - - feat: support forwards and backwards navigation - - feat: long press [android] or right click episode cards to open relevant anime - - feat: custom seek duration - - fix: don't exclude torrents from search when using external players - - fix: allow reordering sections on android - - fix: minor css fixes -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.3.5 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.5/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.3.5/ThaUnknown.Miru.yaml deleted file mode 100644 index 02a4d27e82dce..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.5/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.6/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.3.6/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 0f113639b2558..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.6/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.6 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-20 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.3.6/win-Miru-5.3.6-installer.exe - InstallerSha256: 1EA3AE65598FB45B06C3AE74F7FD59E9F4738C86D81366A5F71123AC1760E3B4 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.6/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.3.6/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index bd0ce7b08f7ba..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.6/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.6 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: sort "continue watching" by last updated entry - - fix: permanent fix for trailers - - fix: crash on al login -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.3.6 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.6/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.3.6/ThaUnknown.Miru.yaml deleted file mode 100644 index f67ef5afa47f3..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.6/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.7/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.3.7/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 4875dff836be0..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.7/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.7 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-21 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.3.7/win-Miru-5.3.7-installer.exe - InstallerSha256: BD792C1BCACBBCC073A10D871123D0A0ED5FE9A1D97F1C87012B671A980F4C22 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.7/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.3.7/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index cfd1f623d3606..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.7/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.7 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: seeking when old keybind was defined' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.3.7 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.7/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.3.7/ThaUnknown.Miru.yaml deleted file mode 100644 index d15ba177f2aa6..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.7/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.8/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.3.8/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index d7b3675eb705d..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.8/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.8 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-21 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.3.8/win-Miru-5.3.8-installer.exe - InstallerSha256: 3BEDC74C8D4595EC84D37677A9BCD69692D6BA1B106A6E14ECEB1DC1D83126A5 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.8/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.3.8/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index adc77d8be0745..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.8/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.8 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: actually seeking when old keybind was defined' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.3.8 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.3.8/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.3.8/ThaUnknown.Miru.yaml deleted file mode 100644 index 76c8091a1264f..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.3.8/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.3.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.4.0/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.4.0/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 0a443e7a160bf..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.4.0/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.4.0 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-24 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.4.0/win-Miru-5.4.0-installer.exe - InstallerSha256: 803E4C71A6C1F5442A803326B81C78B33CCFF382FE24F88066F274A4A15BE103 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.4.0/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.4.0/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index a9f9ff8f5d204..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.4.0/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.4.0 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: show filler episodes - - fix: improve fullscreen handling on navigation - - feat: android external storage - - feat: android external player - - perf: new icons -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.4.0 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.4.0/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.4.0/ThaUnknown.Miru.yaml deleted file mode 100644 index e53e095371cd7..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.4.0/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.4.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.4.1/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.4.1/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 1c04a4bfd9a1c..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.4.1/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.4.1 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-24 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.4.1/win-Miru-5.4.1-installer.exe - InstallerSha256: 96863910C9C4A98CE6C2B7759995D7FE7FF9D3BD63040F38A569214FA620A41D -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.4.1/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.4.1/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 58e25bf2e95ee..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.4.1/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.4.1 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: correct numbering of filler episodes' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.4.1 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.4.1/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.4.1/ThaUnknown.Miru.yaml deleted file mode 100644 index b66398aef1fae..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.4.1/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.4.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.0/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.5.0/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 76b76b883ad9d..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.0/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.0 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-25 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.5.0/win-Miru-5.5.0-installer.exe - InstallerSha256: B007A659A1F9F7C7B7D4E73F58FEBC0879CA010866291821D586DDE0EF41559D -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.0/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.5.0/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 49d50aa1d0032..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.0/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.0 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: w2g chat - - feat: load torrents on lobby join -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.5.0 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.0/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.5.0/ThaUnknown.Miru.yaml deleted file mode 100644 index f9ffb8c04d17a..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.0/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.1/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.5.1/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 32cd919834b1f..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.1/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.1 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-25 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.5.1/win-Miru-5.5.1-installer.exe - InstallerSha256: 97F20414E6D24B9052E37D6DCB6DB22F4485E7A9557E06CB7BB9C75AAAB7C354 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.1/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.5.1/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index ec09850927ee7..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.1/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.1 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: last watched torrents not loading instantly - - fix: close app on webtorrent crash - - feat: torrent loading status and errors - - fix: center container icons in player - - feat: debug colors -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.5.1 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.1/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.5.1/ThaUnknown.Miru.yaml deleted file mode 100644 index a68df38e51649..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.1/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.10/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.5.10/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index eb776996d1251..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.10/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with WinGet Updater using komac v2.10.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 5.5.10 -InstallerLocale: en-US -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ProductCode: dfa2ed72-71bd-56ef-a676-b435325e7bc6 -ReleaseDate: 2025-02-20 -AppsAndFeaturesEntries: -- DisplayName: Miru 5.5.10 - ProductCode: dfa2ed72-71bd-56ef-a676-b435325e7bc6 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.5.10/win-Miru-5.5.10-installer.exe - InstallerSha256: 6A2B1F809756306B17F9B5ADDBFDEFC820DAFC63788AE8AD7D158DB053C42908 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.10/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.5.10/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 7abd5676ad8e4..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.10/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with WinGet Updater using komac v2.10.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 5.5.10 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GPL-3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/HEAD/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - feat: override modern WASM support [potential fix for androidTV crashes] - - fix: poor download performance while streaming batches - - fix: minor fixes -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.5.10 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.10/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.5.10/ThaUnknown.Miru.yaml deleted file mode 100644 index 558733c223107..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.10/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Updater using komac v2.10.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 5.5.10 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.2/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.5.2/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index b45865b8661c3..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.2/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.2 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-26 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.5.2/win-Miru-5.5.2-installer.exe - InstallerSha256: 8A32749E71FDCE7D2B1DD73377A369670A40E37AA6B14A722742BE4F168EE460 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.2/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.5.2/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 17e88c6bcc167..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.2/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.2 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: player icon positioning' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.5.2 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.2/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.5.2/ThaUnknown.Miru.yaml deleted file mode 100644 index b60a013530359..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.2/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.3/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.5.3/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index e3909d9cca275..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.3/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.3 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-27 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.5.3/win-Miru-5.5.3-installer.exe - InstallerSha256: 3B709FF39937B3EF44DDE34EC6EF26FE17BD7B49221DF5ABC523DD7381E10D89 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.3/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.5.3/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 0acedf347cf9d..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.3/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.3 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: load settings before loading connection' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.5.3 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.3/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.5.3/ThaUnknown.Miru.yaml deleted file mode 100644 index cec33245172b7..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.3/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.4/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.5.4/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index d219b296d8b3b..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.4/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.4 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-27 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.5.4/win-Miru-5.5.4-installer.exe - InstallerSha256: B44B989922682AD350F743E3E053DD045E835F2243D59867E2551D81CAB8EA94 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.4/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.5.4/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 64409b4ae4177..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.4/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.4 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: no peers error appearing when it shouldnt' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.5.4 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.4/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.5.4/ThaUnknown.Miru.yaml deleted file mode 100644 index b5cf4bfd8f09c..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.4/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.5/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.5.5/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index d2be5e7a64648..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.5/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.5 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-27 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.5.5/win-Miru-5.5.5-installer.exe - InstallerSha256: 0798F6743A93534DAF9D9A2F4083331F74B747D61F162B20C0B84FCDF0B3114F -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.5/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.5.5/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index e2b8c9cf464c6..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.5/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.5 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: allow filter by any' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.5.5 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.5/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.5.5/ThaUnknown.Miru.yaml deleted file mode 100644 index 4ceef59870b01..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.5/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.6/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.5.6/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 4c84fe9738eaf..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.6/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.6 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-08-27 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.5.6/win-Miru-5.5.6-installer.exe - InstallerSha256: 330471973044D1FF265456FB532DC2C391780848277BA445648EE7E49829B469 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.6/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.5.6/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index f2207d4f51ae1..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.6/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.6 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: potential w2g issues' -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.5.6 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.6/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.5.6/ThaUnknown.Miru.yaml deleted file mode 100644 index ed2d4b9514337..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.6/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.7/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.5.7/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 3afc8b2927e19..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.7/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.7 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-11-10 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.5.7/win-Miru-5.5.7-installer.exe - InstallerSha256: 6B674E7CCA03FDEC9275714BBFBF11AF6988D53D1A6D23C02657A471F01FE8DD -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.7/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.5.7/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 43b37d7e0cb50..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.7/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.7 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - hack: work around al restrictions - - fix: AL completion for external players - - feat: custom menu bar controls -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.5.7 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.7/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.5.7/ThaUnknown.Miru.yaml deleted file mode 100644 index 1f870de75722b..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.7/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.8/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.5.8/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index ce43ec97de74e..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.8/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.8 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -ReleaseDate: 2024-11-10 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.5.8/win-Miru-5.5.8-installer.exe - InstallerSha256: B463D4DE0A4597661A4F1B1282E8EB6C139A04C6435445029C7252DDB3DC2686 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.8/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.5.8/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 13dab30a124e8..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.8/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.8 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.5.8 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.8/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.5.8/ThaUnknown.Miru.yaml deleted file mode 100644 index 840660cd908c6..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.8/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.9/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/5.5.9/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 2ac921c85e9fd..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.9/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.9 -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2024-11-17 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v5.5.9/win-Miru-5.5.9-installer.exe - InstallerSha256: 39F57759EB07D181E4D743594F021411CA89B1B107C42E18301AAD17D8BB33B5 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.9/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/5.5.9/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index 00c8f2c5c2a1a..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.9/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.9 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GNU General Public License v3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/master/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix: uTP crash hanging torrent client, uTP peers not being preferred - - feat: increase video buffer [hopefully] -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v5.5.9 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/5.5.9/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/5.5.9/ThaUnknown.Miru.yaml deleted file mode 100644 index c2df59fb21252..0000000000000 --- a/manifests/t/ThaUnknown/Miru/5.5.9/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: ThaUnknown.Miru -PackageVersion: 5.5.9 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/t/ThaUnknown/Miru/6.3.9/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/6.3.9/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index 6193a17729207..0000000000000 --- a/manifests/t/ThaUnknown/Miru/6.3.9/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 6.3.9 -InstallerLocale: en-US -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ProductCode: dfa2ed72-71bd-56ef-a676-b435325e7bc6 -ReleaseDate: 2025-06-15 -AppsAndFeaturesEntries: -- DisplayName: Hayase - ProductCode: dfa2ed72-71bd-56ef-a676-b435325e7bc6 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/ThaUnknown/miru/releases/download/v6.3.9/win-hayase-6.3.9-installer.exe - InstallerSha256: 56F01896C75C527CDA3C96179A8E2FABBD08001107A238DD9436F30AD8199FC3 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/t/ThaUnknown/Miru/6.3.9/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/6.3.9/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index bdc5d6b9ee925..0000000000000 --- a/manifests/t/ThaUnknown/Miru/6.3.9/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 6.3.9 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GPL-3.0 -LicenseUrl: https://github.com/ThaUnknown/miru/blob/HEAD/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: |- - - fix icons for linux and mac - - fix transparency issues on windows - - fix update endpoint -ReleaseNotesUrl: https://github.com/ThaUnknown/miru/releases/tag/v6.3.9 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/t/ThaUnknown/Miru/6.4.13/ThaUnknown.Miru.installer.yaml b/manifests/t/ThaUnknown/Miru/6.4.13/ThaUnknown.Miru.installer.yaml deleted file mode 100644 index b5230c878ede7..0000000000000 --- a/manifests/t/ThaUnknown/Miru/6.4.13/ThaUnknown.Miru.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 6.4.13 -InstallerLocale: en-US -InstallerType: nullsoft -Scope: machine -UpgradeBehavior: install -ProductCode: dfa2ed72-71bd-56ef-a676-b435325e7bc6 -ReleaseDate: 2025-07-10 -AppsAndFeaturesEntries: -- DisplayName: Hayase - ProductCode: dfa2ed72-71bd-56ef-a676-b435325e7bc6 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/hayase-app/ui/releases/download/v6.4.13/win-hayase-6.4.13-installer.exe - InstallerSha256: 15040EE1EBE48E6FF07404011BA81DD1CCD8D0E7CFB893FEB53552123EE050DB -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/t/ThaUnknown/Miru/6.4.13/ThaUnknown.Miru.locale.en-US.yaml b/manifests/t/ThaUnknown/Miru/6.4.13/ThaUnknown.Miru.locale.en-US.yaml deleted file mode 100644 index b4212936eeeb3..0000000000000 --- a/manifests/t/ThaUnknown/Miru/6.4.13/ThaUnknown.Miru.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 6.4.13 -PackageLocale: en-US -Publisher: ThaUnknown_ -PublisherUrl: https://github.com/ThaUnknown/miru -PublisherSupportUrl: https://github.com/ThaUnknown/miru/issues -Author: ThaUnknown_ -PackageName: Miru -PackageUrl: https://github.com/ThaUnknown/miru -License: GPL-3.0 -LicenseUrl: https://github.com/hayase-app/ui/blob/HEAD/LICENSE -Copyright: Copyright © 2022 ThaUnknown_ -ShortDescription: Stream anime torrents, real-time with not waiting for downloads. -Description: |- - A pure JS BitTorrent streaming environment, with a built-in list manager. - Imagine qBit + Taiga + MPV, all in a single package, but streamed real-time. - Completly ad free with no tracking/data collection. - This app is meant to feel look, work and perform like a streaming website/app, while providing all the advantages of torrenting, like file downloads, higher download speeds, better video quality and quicker releases. - Unlike qBit's sequential, seeking into undownloaded data will prioritise downloading that data, instead of flat out closing MPV. -Tags: -- anime -- streaming -- torrent -ReleaseNotes: '- fix: disable bytecode optimisations on macos' -ReleaseNotesUrl: https://github.com/hayase-app/ui/releases/tag/v6.4.13 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/t/ThaUnknown/Miru/6.4.13/ThaUnknown.Miru.yaml b/manifests/t/ThaUnknown/Miru/6.4.13/ThaUnknown.Miru.yaml deleted file mode 100644 index 58eefbcbefe65..0000000000000 --- a/manifests/t/ThaUnknown/Miru/6.4.13/ThaUnknown.Miru.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.12.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: ThaUnknown.Miru -PackageVersion: 6.4.13 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/t/Tofuutils/Tenv/4.10.1/Tofuutils.Tenv.installer.yaml b/manifests/t/Tofuutils/Tenv/4.10.1/Tofuutils.Tenv.installer.yaml new file mode 100644 index 0000000000000..0ec1c81c1a6c0 --- /dev/null +++ b/manifests/t/Tofuutils/Tenv/4.10.1/Tofuutils.Tenv.installer.yaml @@ -0,0 +1,70 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: Tofuutils.Tenv +PackageVersion: 4.10.1 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-04-11" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: tenv.exe + PortableCommandAlias: tenv + - RelativeFilePath: tofu.exe + PortableCommandAlias: tofu + - RelativeFilePath: terraform.exe + PortableCommandAlias: terraform + - RelativeFilePath: terragrunt.exe + PortableCommandAlias: terragrunt + - RelativeFilePath: terramate.exe + PortableCommandAlias: terramate + - RelativeFilePath: tf.exe + PortableCommandAlias: tf + - RelativeFilePath: atmos.exe + PortableCommandAlias: atmos + InstallerUrl: https://github.com/tofuutils/tenv/releases/download/v4.10.1/tenv_v4.10.1_Windows_arm64.zip + InstallerSha256: cde51c5246518bc7a685b272b020184fdb6dce1df7a783da3c2f7abc7527ce59 + UpgradeBehavior: uninstallPrevious + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: tenv.exe + PortableCommandAlias: tenv + - RelativeFilePath: tofu.exe + PortableCommandAlias: tofu + - RelativeFilePath: terraform.exe + PortableCommandAlias: terraform + - RelativeFilePath: terragrunt.exe + PortableCommandAlias: terragrunt + - RelativeFilePath: terramate.exe + PortableCommandAlias: terramate + - RelativeFilePath: tf.exe + PortableCommandAlias: tf + - RelativeFilePath: atmos.exe + PortableCommandAlias: atmos + InstallerUrl: https://github.com/tofuutils/tenv/releases/download/v4.10.1/tenv_v4.10.1_Windows_i386.zip + InstallerSha256: 657ec9eff1e48b8351be5f8cc7da6f1452c376b6507be1c5b6915099dd504e65 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: tenv.exe + PortableCommandAlias: tenv + - RelativeFilePath: tofu.exe + PortableCommandAlias: tofu + - RelativeFilePath: terraform.exe + PortableCommandAlias: terraform + - RelativeFilePath: terragrunt.exe + PortableCommandAlias: terragrunt + - RelativeFilePath: terramate.exe + PortableCommandAlias: terramate + - RelativeFilePath: tf.exe + PortableCommandAlias: tf + - RelativeFilePath: atmos.exe + PortableCommandAlias: atmos + InstallerUrl: https://github.com/tofuutils/tenv/releases/download/v4.10.1/tenv_v4.10.1_Windows_x86_64.zip + InstallerSha256: 255431703c8655c7c52a92251c512619e0d2f90677ae514cfe642a568ac6d2ff + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tofuutils/Tenv/4.10.1/Tofuutils.Tenv.locale.en-US.yaml b/manifests/t/Tofuutils/Tenv/4.10.1/Tofuutils.Tenv.locale.en-US.yaml new file mode 100644 index 0000000000000..ee37d16c0d50e --- /dev/null +++ b/manifests/t/Tofuutils/Tenv/4.10.1/Tofuutils.Tenv.locale.en-US.yaml @@ -0,0 +1,51 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: Tofuutils.Tenv +PackageVersion: 4.10.1 +PackageLocale: en-US +Publisher: Tofuutils +PublisherUrl: https://tofuutils.github.io/tenv/ +PublisherSupportUrl: https://github.com/tofuutils/tenv/issues/new/choose +PackageName: tenv +PackageUrl: https://github.com/tofuutils/tenv +License: Apache-2.0 +LicenseUrl: https://github.com/tofuutils/tenv/blob/v4.10.1/LICENSE +Copyright: Tofuutils +ShortDescription: OpenTofu, Terraform, Terragrunt, Terramate and Atmos version manager, written in Go +Description: Tenv helps you install and switch versions of OpenTofu/Terraform, Terragrunt, and Atmos with simple commands. +Moniker: tenv +Tags: + - golang + - cli + - terraform + - opentofu + - terragrunt + - terramate + - atmos +ReleaseNotes: | + ## Changelog + * b561815487707a7f7bf315ed5a7c0451c5a8caa3 Merge pull request #563 from tofuutils/dependabot/github_actions/codecov/codecov-action-6.0.0 + * 222b8d3320156a6758eabc48a3e87d67bdf28e11 Merge pull request #554 from tofuutils/dependabot/github_actions/docker/setup-qemu-action-4.0.0 + * 64e06e01baa4ba61f045a25eb44acc3d048afe25 Merge pull request #549 from tofuutils/dependabot/go_modules/github.com/zclconf/go-cty-1.18.0 + * a038b59639fb84891fbb3dad0e7ae78eaf0898b7 fix + * 3ae83ef606f699b76895f580cae4c5b1f406588a Merge branch 'main' into dependabot/go_modules/github.com/zclconf/go-cty-1.18.0 + * 7c50478fdd5358644ec106d3007d24398f9dcb1f Merge pull request #560 from tofuutils/dependabot/go_modules/github.com/ProtonMail/gopenpgp/v2-2.10.0 + * 111ec73f05e92688aa8587e67cc435f313169c55 Merge pull request #569 from tofuutils/dependabot/go_modules/github.com/hashicorp/go-version-1.9.0 + * e3053a8b846a49255fb6c3649c743d428b553a4a Merge pull request #561 from tofuutils/dependabot/go_modules/github.com/fatih/color-1.19.0 + * 9f5f4a9b15e0d564f3c8246baac0231154bd7d62 go: bump github.com/ProtonMail/gopenpgp/v2 from 2.9.0 to 2.10.0 + * 44bf886c23d27fa88f1317df10c5fea2981d237e go: bump github.com/hashicorp/go-version from 1.8.0 to 1.9.0 + * 79e12435bebeedb104bbe67e8bfae5273be9670b go: bump github.com/fatih/color from 1.18.0 to 1.19.0 + * 80b3d190aaaab244a7edcfc0ebbaa5a1caabefe9 Merge pull request #553 from tofuutils/dependabot/github_actions/docker/login-action-4.0.0 + * cba625e7049731cc145daa1bff646c62525a6058 Merge pull request #557 from tofuutils/dependabot/go_modules/github.com/PuerkitoBio/goquery-1.12.0 + * adfa1f8ae09c8c616db7f8a50f87edb978093556 Merge pull request #562 from tofuutils/dependabot/github_actions/sigstore/cosign-installer-4.1.1 + * e473e1e1e2671763291e328817a5eb37e18bf07c gh-actions: bump codecov/codecov-action from 5.5.3 to 6.0.0 + * 7477239d5f82caa35211ce052689ffb527d60879 gh-actions: bump sigstore/cosign-installer from 4.1.0 to 4.1.1 + * 3df29ceb9e2fc9390f76544717e4f85e392fad25 go: bump github.com/PuerkitoBio/goquery from 1.11.0 to 1.12.0 + * 531cb6ecbb1ec1aa60c055c162e33d3cd75e14e4 gh-actions: bump docker/setup-qemu-action from 3.7.0 to 4.0.0 + * a52480fa06c76e0bddfe930e72f666af668deb67 gh-actions: bump docker/login-action from 3.7.0 to 4.0.0 + * 108d8c8d56da220fd02e285eb7f7a749d9152ebb go: bump github.com/zclconf/go-cty from 1.17.0 to 1.18.0 +ReleaseNotesUrl: https://github.com/tofuutils/tenv/releases/tag/v4.10.1 +InstallationNotes: | + If other Terraform/OpenTofu binaries appear earlier on PATH, they may shadow Tenv-managed shims. Uninstall those or adjust PATH so Tenv shims take precedence. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tofuutils/Tenv/4.10.1/Tofuutils.Tenv.yaml b/manifests/t/Tofuutils/Tenv/4.10.1/Tofuutils.Tenv.yaml new file mode 100644 index 0000000000000..c00584b27ff96 --- /dev/null +++ b/manifests/t/Tofuutils/Tenv/4.10.1/Tofuutils.Tenv.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: Tofuutils.Tenv +PackageVersion: 4.10.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/TooYi/IShell/3.0.7/TooYi.IShell.locale.en-US.yaml b/manifests/t/TooYi/IShell/3.0.7/TooYi.IShell.locale.en-US.yaml index 3a2aaba3259f9..deff9fdb791bf 100644 --- a/manifests/t/TooYi/IShell/3.0.7/TooYi.IShell.locale.en-US.yaml +++ b/manifests/t/TooYi/IShell/3.0.7/TooYi.IShell.locale.en-US.yaml @@ -5,7 +5,7 @@ PackageIdentifier: TooYi.IShell PackageVersion: 3.0.7 PackageLocale: en-US License: Proprietary -ShortDescription: A lightweight yet high-performance SSH tool +ShortDescription: A lightweight yet high-performance SSH tool. Tags: - console - download @@ -18,5 +18,7 @@ Tags: - terminal - transfer - upload +- prc +- china ManifestType: locale ManifestVersion: 1.12.0 diff --git a/manifests/t/the-code-fixer-23/go-toolkit/0.11.5-alpha/the-code-fixer-23.go-toolkit.installer.yaml b/manifests/t/the-code-fixer-23/go-toolkit/0.11.5-alpha/the-code-fixer-23.go-toolkit.installer.yaml deleted file mode 100644 index 503cc1c3f0461..0000000000000 --- a/manifests/t/the-code-fixer-23/go-toolkit/0.11.5-alpha/the-code-fixer-23.go-toolkit.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# This file was generated by GoReleaser. DO NOT EDIT. -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json -PackageIdentifier: the-code-fixer-23.go-toolkit -PackageVersion: 0.11.5-alpha -InstallerLocale: en-US -InstallerType: zip -ReleaseDate: "2026-03-25" -Installers: - - Architecture: x64 - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: gtk.exe - PortableCommandAlias: gtk - InstallerUrl: https://github.com/Sheltons-CLI-Projects/go-toolkit/releases/download/v0.11.5-alpha/go-toolkit_0.11.5-alpha_windows_amd64.zip - InstallerSha256: f76709a0fc7ea66b04e86a242099baa58f92e2789e45670062e3c45a538d9b28 - UpgradeBehavior: uninstallPrevious - - Architecture: arm64 - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: gtk.exe - PortableCommandAlias: gtk - InstallerUrl: https://github.com/Sheltons-CLI-Projects/go-toolkit/releases/download/v0.11.5-alpha/go-toolkit_0.11.5-alpha_windows_arm64.zip - InstallerSha256: bf73ec4ebdf1da861db896c4c715a36d9103f49dbed6b1cac757ef18ec7636fc - UpgradeBehavior: uninstallPrevious -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/t/the-code-fixer-23/go-toolkit/0.11.5-alpha/the-code-fixer-23.go-toolkit.locale.en-US.yaml b/manifests/t/the-code-fixer-23/go-toolkit/0.11.5-alpha/the-code-fixer-23.go-toolkit.locale.en-US.yaml deleted file mode 100644 index 8d5bd5fc512df..0000000000000 --- a/manifests/t/the-code-fixer-23/go-toolkit/0.11.5-alpha/the-code-fixer-23.go-toolkit.locale.en-US.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# This file was generated by GoReleaser. DO NOT EDIT. -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json -PackageIdentifier: the-code-fixer-23.go-toolkit -PackageVersion: 0.11.5-alpha -PackageLocale: en-US -Publisher: Shelton Louis -PublisherUrl: https://github.com/Sheltons-CLI-Projects -PublisherSupportUrl: https://github.com/Sheltons-CLI-Projects/go-toolkit/issues/new -PackageName: go-toolkit -PackageUrl: https://github.com/Sheltons-CLI-Projects/go-toolkit -License: MIT -LicenseUrl: https://github.com/Sheltons-CLI-Projects/go-toolkit/blob/main/LICENSE -Copyright: Copyright (c) 2025 Shelton Louis -ShortDescription: CLI for Go scaffolding and module maintenance. -Description: Scaffold Go projects, add or remove module dependencies, manage providers, and reuse package presets from the command line. -Moniker: go-toolkit -Tags: - - go - - golang - - cli - - scaffolding - - modules -ReleaseNotes: | - ## Changelog - * 860051e037db7c7c1d212e2b4f49d519a2a2c3b4 fix(release): normalize base64 key input -ReleaseNotesUrl: https://github.com/Sheltons-CLI-Projects/go-toolkit/releases/tag/v0.11.5-alpha -InstallationNotes: Installs the `gtk` executable. -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/u/ULAB/PaintAid/.validation b/manifests/u/ULAB/PaintAid/.validation deleted file mode 100644 index 8c4a90e3324e3..0000000000000 --- a/manifests/u/ULAB/PaintAid/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"513de7a5-a047-4b1b-8b1e-11d42044c995","TestPlan":"Validation-Domain","PackagePath":"manifests/u/ULAB/PaintAid/2.3.2.0","CommitId":"707a43d221a2db30a3cccd9fd2d73189c573ccf5"},{"WaiverId":"e12a7a5e-7c73-46ca-bbbf-66058921385b","TestPlan":"Validation-Domain","PackagePath":"manifests/u/ULAB/PaintAid/2.1.3.0","CommitId":"39f75770e78822e0837ebdbcd0d247fe36740b83"}]} \ No newline at end of file diff --git a/manifests/u/ULAB/XZAid/.validation b/manifests/u/ULAB/XZAid/.validation deleted file mode 100644 index 82dc6e24975f6..0000000000000 --- a/manifests/u/ULAB/XZAid/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"dcdce0a5-07bf-4fdb-8c4c-8aabe4d97453","TestPlan":"Validation-Domain","PackagePath":"manifests/u/ULAB/XZAid/1.1","CommitId":"e2eb036bc7163caa368b9c7a0b32662cd3de2957"}]} \ No newline at end of file diff --git a/manifests/u/UNIkeEN/SJMCL/0.8.3/UNIkeEN.SJMCL.locale.en-US.yaml b/manifests/u/UNIkeEN/SJMCL/0.8.3/UNIkeEN.SJMCL.locale.en-US.yaml index 6f78af1cc477a..eb781ffed4917 100644 --- a/manifests/u/UNIkeEN/SJMCL/0.8.3/UNIkeEN.SJMCL.locale.en-US.yaml +++ b/manifests/u/UNIkeEN/SJMCL/0.8.3/UNIkeEN.SJMCL.locale.en-US.yaml @@ -6,7 +6,7 @@ PackageVersion: 0.8.3 PackageLocale: en-US Author: Shanghai Jiao Tong University Minecraft Club PackageUrl: https://mc.sjtu.cn/sjmcl/en -ShortDescription: Next‑generation open-source cross‑platform Minecraft launcher +ShortDescription: Next‑generation open-source cross‑platform Minecraft launcher. Description: SJMC Launcher is a modern, cross-platform Minecraft launcher built on the Tauri framework, independently developed by members of the Shanghai Jiao Tong University Minecraft Club. ReleaseNotes: |- - 🌟 Support adding and removing game servers directly within the launcher. #1328 @hbz114514 @UNIkeEN @zaixizaiximeow @@ -18,9 +18,12 @@ ReleaseNotes: |- - 🌐 Update French and Japanese translations of the launcher UI. #1371 @Codex - 🌐 Update Traditional Chinese translations for the launcher UI and related documentation. #1381 #1383 #1390 @3gf8jv4dv - 📦 Update multiple dependencies to patch versions. #1387 @dependabot[bot] - - Workflow: + - Workflow: - Update internationalization tool scripts. #1122 #1384 @HsxMark - Add an experimental VSCode extension providing development helper features tailored for this project. @UNIkeEN +Tags: +- prc +- china Documentations: - DocumentLabel: Docs DocumentUrl: https://mc.sjtu.cn/sjmcl/en/docs diff --git a/manifests/u/UNIkeEN/SJMCL/0.8.3/UNIkeEN.SJMCL.locale.zh-CN.yaml b/manifests/u/UNIkeEN/SJMCL/0.8.3/UNIkeEN.SJMCL.locale.zh-CN.yaml index 187fa798da912..976cc91a30d34 100644 --- a/manifests/u/UNIkeEN/SJMCL/0.8.3/UNIkeEN.SJMCL.locale.zh-CN.yaml +++ b/manifests/u/UNIkeEN/SJMCL/0.8.3/UNIkeEN.SJMCL.locale.zh-CN.yaml @@ -33,8 +33,8 @@ ReleaseNotes: |- - 更新国际化工具脚本。#1122 #1384 @HsxMark - 新增实验性 VSCode 扩展,为本项目特别提供若干开发辅助功能。 @UNIkeEN ReleaseNotesUrl: https://github.com/UNIkeEN/SJMCL/releases/tag/v0.8.3 -Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://mc.sjtu.cn/sjmcl/zh/docs +# Documentations: +# - DocumentLabel: 文档 +# DocumentUrl: https://mc.sjtu.cn/sjmcl/zh/docs ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.1.5.2/Wagnardsoft.DisplayDriverUninstaller.installer.yaml b/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.1.5.2/Wagnardsoft.DisplayDriverUninstaller.installer.yaml new file mode 100644 index 0000000000000..c51bbd3eb3e35 --- /dev/null +++ b/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.1.5.2/Wagnardsoft.DisplayDriverUninstaller.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Wagnardsoft.DisplayDriverUninstaller +PackageVersion: 18.1.5.2 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +ProductCode: Display Driver Uninstaller +ReleaseDate: 2026-04-11 +AppsAndFeaturesEntries: +- ProductCode: Display Driver Uninstaller +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://www.wagnardsoft.com/DDU/download/DDU%20v18.1.5.2_setup.exe + InstallerSha256: 5454A3E210052EBF8F350AE235820A0E2B129CF275DD318903CEDE0B7A50F031 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.1.5.2/Wagnardsoft.DisplayDriverUninstaller.locale.en-US.yaml b/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.1.5.2/Wagnardsoft.DisplayDriverUninstaller.locale.en-US.yaml new file mode 100644 index 0000000000000..e41394413f8ff --- /dev/null +++ b/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.1.5.2/Wagnardsoft.DisplayDriverUninstaller.locale.en-US.yaml @@ -0,0 +1,53 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Wagnardsoft.DisplayDriverUninstaller +PackageVersion: 18.1.5.2 +PackageLocale: en-US +Publisher: Wagnardsoft +PublisherUrl: https://www.wagnardsoft.com/ +PublisherSupportUrl: https://github.com/Wagnard/display-drivers-uninstaller/issues +PrivacyUrl: https://www.wagnardsoft.com/content/Privacy-Policy +Author: Wagnard +PackageName: Display Driver Uninstaller +PackageUrl: https://www.wagnardsoft.com/display-driver-uninstaller-ddu +License: MIT +LicenseUrl: https://github.com/Wagnard/display-drivers-uninstaller/blob/WPF/LICENSE +Copyright: Copyright © 2014–2026 Wagnardsoft +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 +- npu +- nvidia +- realtek +- sound-blaster +- uninstaller +- utility +ReleaseNotes: |- + - Fixed truncated log file caused by a null terminator. + - Fixed a performance issue on startup with large number of GPU entries. + - General: Translation updates. + - General fixes and improvements. +ReleaseNotesUrl: https://www.wagnardsoft.com/content/Download-Display-Driver-Uninstaller-DDU-18152 +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.12.0 diff --git a/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.1.5.2/Wagnardsoft.DisplayDriverUninstaller.yaml b/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.1.5.2/Wagnardsoft.DisplayDriverUninstaller.yaml new file mode 100644 index 0000000000000..258617dacea03 --- /dev/null +++ b/manifests/w/Wagnardsoft/DisplayDriverUninstaller/18.1.5.2/Wagnardsoft.DisplayDriverUninstaller.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Wagnardsoft.DisplayDriverUninstaller +PackageVersion: 18.1.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-22/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-22/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 50303b0d27cb5..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-22/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,64 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2024-12-22 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2024-12-23 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2024-12-22/WinDirStat-x86.msi - InstallerSha256: 7D5148898F98B5ED491DA43A7AF673C4E4ECC85757E56AF2F4082BC33F0545D8 - ProductCode: '{C02439B8-A36B-4A49-9850-7165755AB5C3}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.990 - ProductCode: '{C02439B8-A36B-4A49-9850-7165755AB5C3}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2024-12-22/WinDirStat-x64.msi - InstallerSha256: 184119CCD0065B8BBAF5A98131E8FA6C47EE1EEDB604D206DEB7B939B1D6E063 - ProductCode: '{4D1EF0A7-A5CA-4529-98DD-A0B4E650E717}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.990 - ProductCode: '{4D1EF0A7-A5CA-4529-98DD-A0B4E650E717}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2024-12-22/WinDirStat-arm.msi - InstallerSha256: 3DC10C733FFB58744A9653D04814FC2E8CA0F92EE2A077DDD62F09AF0D8B02B7 - ProductCode: '{DDCA432B-3167-4E77-BD26-0F2FEF39321F}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.990 - ProductCode: '{DDCA432B-3167-4E77-BD26-0F2FEF39321F}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2024-12-22/WinDirStat-arm64.msi - InstallerSha256: 70182D2E31509A320C69DA5A0264C75E39F66086BAD5A8EF4B2A59FD9FD0B3CE - ProductCode: '{ACC65A4C-92EC-4C85-AADB-985690C14513}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.990 - ProductCode: '{ACC65A4C-92EC-4C85-AADB-985690C14513}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-22/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-22/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index 8957e58a98d96..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-22/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2024-12-22 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Address Hanging After Scan -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.1.2/2024-12-22 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-22/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-22/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index d50c3a6106f80..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-22/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2024-12-22 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-28/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-28/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 439f35cb92756..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-28/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,64 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2024-12-28 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2024-12-28 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2024-12-28/WinDirStat-x86.msi - InstallerSha256: 9DB1AE5DB13851E11E33CB788BC79298A53F19997378075100F1B3E16E1B2663 - ProductCode: '{E630F265-3FD4-4B12-BC74-D1B310274269}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.999 - ProductCode: '{E630F265-3FD4-4B12-BC74-D1B310274269}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2024-12-28/WinDirStat-x64.msi - InstallerSha256: 1D8068FE638C1E2430E9948E12015351DFC463457355E01D39DF00ADA39AB344 - ProductCode: '{BEEB8D91-595E-4AA7-A1C6-28559DAF1911}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.999 - ProductCode: '{BEEB8D91-595E-4AA7-A1C6-28559DAF1911}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2024-12-28/WinDirStat-arm.msi - InstallerSha256: B7B3454ECF5F6C5B3E2FC64DCA0090C9B35162475024FD400F7EC1B912CBFC83 - ProductCode: '{A185DEB4-D438-48A0-924F-0C0D238AD706}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.999 - ProductCode: '{A185DEB4-D438-48A0-924F-0C0D238AD706}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2024-12-28/WinDirStat-arm64.msi - InstallerSha256: 907A4B9675CE171FDD47ADA8396E3614416F555B30E7B66A00C613AFA2C5ED9F - ProductCode: '{244CEC80-971C-4D7A-8F5B-18081CAEC59F}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.999 - ProductCode: '{244CEC80-971C-4D7A-8F5B-18081CAEC59F}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-28/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-28/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index 02c4093c16fd0..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-28/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2024-12-28 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Release Candidate -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.1.2/2024-12-28 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-28/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-28/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 40112d14940fb..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-28/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2024-12-28 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-29/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-29/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index a65ee142803cf..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-29/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,64 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2024-12-29 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2024-12-29 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2024-12-29/WinDirStat-x86.msi - InstallerSha256: 4106D4D2AAF7783186F572F0857DA09C52755ACAEA9FEFF475B1C3349F005A21 - ProductCode: '{5F6B062B-2F01-48BF-9824-C779A447499A}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1011 - ProductCode: '{5F6B062B-2F01-48BF-9824-C779A447499A}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2024-12-29/WinDirStat-x64.msi - InstallerSha256: C58FCC42982ECCEE657F1C1BC50B54A5441B94B71C8C9873157606A9682597EE - ProductCode: '{5F01F5C3-3D51-4372-961E-93440C26F8C3}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1011 - ProductCode: '{5F01F5C3-3D51-4372-961E-93440C26F8C3}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2024-12-29/WinDirStat-arm.msi - InstallerSha256: 76AE33A5FD77C43A05F8026478B83D492C2FBEC47F45BFE3E21C3253A2D65BD5 - ProductCode: '{54C37BB4-0AB6-4266-A9CC-490540861F2F}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1011 - ProductCode: '{54C37BB4-0AB6-4266-A9CC-490540861F2F}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2024-12-29/WinDirStat-arm64.msi - InstallerSha256: 51ACDE8986D020C5CBE061E7AC4E3CCC5EDB2295DF47F955FCBBBE8FB4A60244 - ProductCode: '{8978BA14-20E1-44B1-9B7E-D507FA9A0025}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1011 - ProductCode: '{8978BA14-20E1-44B1-9B7E-D507FA9A0025}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-29/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-29/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index 88b409b9e765b..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-29/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2024-12-29 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Release Candidate -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.1.2/2024-12-29 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-29/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-29/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 0ecea7c857f34..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2024-12-29/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2024-12-29 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-02/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-02/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 7f0e82de8e35a..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-02/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,64 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2025-01-02 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2025-01-03 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2025-01-02/WinDirStat-x86.msi - InstallerSha256: 934CF2C250567D60A753FADA38BA9FE32A2102417FE47CF1F6E5490203162F5D - ProductCode: '{461202FA-CBA5-48EE-BD27-B561DEE2B657}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1029 - ProductCode: '{461202FA-CBA5-48EE-BD27-B561DEE2B657}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2025-01-02/WinDirStat-x64.msi - InstallerSha256: 1A246730D693EA979F58FA34149DA46BD09D84BA0D30DEFDE74D9CCF41C8B57E - ProductCode: '{F1D77FDD-DB55-4B8E-BB47-21DFDB62A30A}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1029 - ProductCode: '{F1D77FDD-DB55-4B8E-BB47-21DFDB62A30A}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2025-01-02/WinDirStat-arm.msi - InstallerSha256: 9F9849DDF8232EF73D9D2E8FC9DCD2416E7A31F2100E1B9871D7A7DF9B48C135 - ProductCode: '{7982DE1D-0979-43CE-B99B-9652B547596E}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1029 - ProductCode: '{7982DE1D-0979-43CE-B99B-9652B547596E}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2025-01-02/WinDirStat-arm64.msi - InstallerSha256: A75FA85DF8CEFAE8DCA23638C65A89D8896C614D21DE9AD72DD8820DB1A2889D - ProductCode: '{D7A6C1AA-11DD-4701-B179-E8F8816359E6}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1029 - ProductCode: '{D7A6C1AA-11DD-4701-B179-E8F8816359E6}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-02/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-02/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index df10cc8280b60..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-02/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2025-01-02 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Release Candidate -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.1.2/2025-01-02 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-02/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-02/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 939e83157d9cb..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-02/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2025-01-02 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-03/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-03/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 628b5a19b7e47..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-03/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,64 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2025-01-03 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2025-01-04 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2025-01-03/WinDirStat-x86.msi - InstallerSha256: 81868732957C146519B735DBC9C0ECBDDE5C23AF158B2FAD983BA4B6A9D4AB32 - ProductCode: '{F03E8FA6-7C28-4350-908B-CFD8D2A3694A}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1033 - ProductCode: '{F03E8FA6-7C28-4350-908B-CFD8D2A3694A}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2025-01-03/WinDirStat-x64.msi - InstallerSha256: ADB694DC83BDCA746CFDC9D51502AE82C1DFC1976A475909A2ACFEECA3E2B27B - ProductCode: '{1196A4F7-B9CB-4410-AFD1-032BBB16D4AB}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1033 - ProductCode: '{1196A4F7-B9CB-4410-AFD1-032BBB16D4AB}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2025-01-03/WinDirStat-arm.msi - InstallerSha256: 9630C924B86AAD3A39972941BA3374DC29280A3C8C5589A61854C3B56845CC5F - ProductCode: '{FE300DC2-74F2-48EE-A091-5FF47A55DA03}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1033 - ProductCode: '{FE300DC2-74F2-48EE-A091-5FF47A55DA03}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2025-01-03/WinDirStat-arm64.msi - InstallerSha256: A2E0A0D44B7775AD49FF6D713482395C61E6E013ADCE651F05706754BEB8F8D5 - ProductCode: '{C339101B-B151-4932-8BFA-05D12AF36D1F}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1033 - ProductCode: '{C339101B-B151-4932-8BFA-05D12AF36D1F}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-03/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-03/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index df17be17dbcf5..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-03/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2025-01-03 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Release Candidate -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.1.2/2025-01-03 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-03/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-03/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index c3705e381dc71..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-03/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2025-01-03 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-04/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-04/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index daa4c5cf27561..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-04/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,64 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2025-01-04 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2025-01-04 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2025-01-04/WinDirStat-x86.msi - InstallerSha256: 411EC1D8A7EF52AD1CD3AF894994FE50E65EB07859447D3CF2D42E0E6EBEAC37 - ProductCode: '{EEF22101-6FEF-41FE-9A2F-0893A9D6B963}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1034 - ProductCode: '{EEF22101-6FEF-41FE-9A2F-0893A9D6B963}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2025-01-04/WinDirStat-x64.msi - InstallerSha256: 6C2D11D66A37322300E130038AA22A913CBFE9465EBF024B906AFEDE6E9FBC67 - ProductCode: '{F11AA238-D0AA-41EB-98D8-0851D7E72CB2}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1034 - ProductCode: '{F11AA238-D0AA-41EB-98D8-0851D7E72CB2}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2025-01-04/WinDirStat-arm.msi - InstallerSha256: 7FFF830166F83727F4C2B864CFAFA67115B4C8B98D41EA15DE0121A159937881 - ProductCode: '{C74D7DCA-0572-4F12-AF6F-53A8AE805C17}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1034 - ProductCode: '{C74D7DCA-0572-4F12-AF6F-53A8AE805C17}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.1.2/2025-01-04/WinDirStat-arm64.msi - InstallerSha256: CC3EBFECA27C0F58316D2DF6CAC4DE615142BAECF4B2EDC7AE7FA33C4B3A8779 - ProductCode: '{E4F56CC1-DCED-4F55-BF12-D8A88964CA93}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.1.2.1034 - ProductCode: '{E4F56CC1-DCED-4F55-BF12-D8A88964CA93}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-04/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-04/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index de63ed0d62f78..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-04/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2025-01-04 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Release Candidate -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.1.2/2025-01-04 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-04/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-04/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 3a27cedcc5407..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.1.2.2025-01-04/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.1.2.2025-01-04 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-12/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-12/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index c40d495cb5fe1..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-12/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,64 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.2.1.2025-01-12 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2025-01-12 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.2.1/2025-01-12/WinDirStat-x86.msi - InstallerSha256: 310D82730CA5791B3C47F65EF121A556218E854248EF9F682046A1B81612187B - ProductCode: '{64EB290B-6043-4AD7-8C09-D8FC0263A44E}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.2.1.1024 - ProductCode: '{64EB290B-6043-4AD7-8C09-D8FC0263A44E}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.2.1/2025-01-12/WinDirStat-x64.msi - InstallerSha256: 6141BDF252EABE4F030DEB98A7D11D484102E7398E71D8ADCA7996653CD6E2D2 - ProductCode: '{65005C22-71C3-467D-905F-130CA5BA1BDD}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.2.1.1024 - ProductCode: '{65005C22-71C3-467D-905F-130CA5BA1BDD}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.2.1/2025-01-12/WinDirStat-arm.msi - InstallerSha256: 9A15DA5BB81D7CDA11046E82E2A9B1774C62A2D2421DF2BF04137301A6CF66AD - ProductCode: '{26F0D9DE-7888-48C0-8115-562D991DFDB0}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.2.1.1024 - ProductCode: '{26F0D9DE-7888-48C0-8115-562D991DFDB0}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.2.1/2025-01-12/WinDirStat-arm64.msi - InstallerSha256: 48C1272CFFE4729D7C6C8F599ACD2CB6066CADEB9F8294418740D17DC54E5141 - ProductCode: '{23436157-4790-4814-8874-B202A392CBAA}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.2.1.1024 - ProductCode: '{23436157-4790-4814-8874-B202A392CBAA}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-12/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-12/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index 3368a6997db73..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-12/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.2.1.2025-01-12 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Release Candidate -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.2.1/2025-01-12 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-12/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-12/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 6c2ba1cfa32ba..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-12/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.2.1.2025-01-12 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-14/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-14/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index c0f9786251319..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-14/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,64 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.2.1.2025-01-14 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2025-01-14 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.2.1/2025-01-14/WinDirStat-x86.msi - InstallerSha256: E49253DCDADA83B33BDB5307312BAADB6959F35916169F4D74506B85FC33497C - ProductCode: '{172CC949-36AB-455D-A6CC-7377AC2B5A20}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.2.1.1029 - ProductCode: '{172CC949-36AB-455D-A6CC-7377AC2B5A20}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.2.1/2025-01-14/WinDirStat-x64.msi - InstallerSha256: 69CD5EB2325949A4FC3570D89AAE3B1FAF0E95D8296EB67763C25642EBEB711D - ProductCode: '{1928D361-A3CF-49E9-BCC3-834FDA6833F5}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.2.1.1029 - ProductCode: '{1928D361-A3CF-49E9-BCC3-834FDA6833F5}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.2.1/2025-01-14/WinDirStat-arm.msi - InstallerSha256: A94C3B4306F03713FEE1BEDD5B6383D9940D198B6544F4434A97C8DD62EA0221 - ProductCode: '{93828D04-E853-4708-946C-A61CB797E7C3}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.2.1.1029 - ProductCode: '{93828D04-E853-4708-946C-A61CB797E7C3}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.2.1/2025-01-14/WinDirStat-arm64.msi - InstallerSha256: 903E0FF7D9F50930920DFA1DADF2DFE7A3DE6EAA2C06EABAFD0B1BEA8BF375EB - ProductCode: '{4B0F563F-3FBB-49B7-95E6-86976586366A}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.2.1.1029 - ProductCode: '{4B0F563F-3FBB-49B7-95E6-86976586366A}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-14/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-14/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index 7b790eb7ca7b1..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-14/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.2.1.2025-01-14 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Release Candidate -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.2.1/2025-01-14 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-14/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-14/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index a2d15a4d9cc6b..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.1.2025-01-14/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: WinDirStat.WinDirStat.Beta -PackageVersion: 2.2.1.2025-01-14 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.3.2025-06-02/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.2.3.2025-06-02/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 547516b6f65ad..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.3.2025-06-02/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.2.3.2025-06-02 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2025-06-03 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.2.3/2025-06-02/WinDirStat-x86.msi - InstallerSha256: 039678DC244F29FF3AE6C32BB999A06F025BE6BEB6B261F496AF526572CAEB3E - ProductCode: '{C1697B57-A525-4427-9493-61557CD366A8}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.2.3.1190 - ProductCode: '{C1697B57-A525-4427-9493-61557CD366A8}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.2.3/2025-06-02/WinDirStat-x64.msi - InstallerSha256: DFBD78E8C50947A7765E8FE09175BC8FB1B9070F7ED77A6E872CBE2912E4DD9B - ProductCode: '{ABC0F9CE-A78B-430D-8BD0-D4A721EC0812}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.2.3.1190 - ProductCode: '{ABC0F9CE-A78B-430D-8BD0-D4A721EC0812}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.2.3/2025-06-02/WinDirStat-arm64.msi - InstallerSha256: 919920CBF7B326607C345E13D161D3D6736088399245CBD9FA71962541796E16 - ProductCode: '{3A8D7629-060A-48B1-97EB-C255ACA45EEA}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.2.3.1190 - ProductCode: '{3A8D7629-060A-48B1-97EB-C255ACA45EEA}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.3.2025-06-02/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.2.3.2025-06-02/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index 05a5afc63f835..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.3.2025-06-02/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.2.3.2025-06-02 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.2.3/2025-06-02 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.3.2025-06-02/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.2.3.2025-06-02/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 7e8140a1b1415..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.2.3.2025-06-02/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.2.3.2025-06-02 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.3.1.2025-08-28/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.3.1.2025-08-28/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 760a670ad6aab..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.3.1.2025-08-28/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.3.1.2025-08-28 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2025-08-28 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.3.1/2025-08-28/WinDirStat-x86.msi - InstallerSha256: 67B1BC607899A9BEFDF57C033A22FD049C3AE12287FE8235D3D9836C8751899B - ProductCode: '{38E7A976-A423-489E-A333-CDD2C370C3B5}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.3.1.1244 - ProductCode: '{38E7A976-A423-489E-A333-CDD2C370C3B5}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.3.1/2025-08-28/WinDirStat-x64.msi - InstallerSha256: EF8035B616A7A46FCA9DBC199333FED67E3E8CD800DBD6F9DF6BADFAC53C2451 - ProductCode: '{972FCECC-3FE2-47DB-8167-C6D706538084}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.3.1.1244 - ProductCode: '{972FCECC-3FE2-47DB-8167-C6D706538084}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.3.1/2025-08-28/WinDirStat-arm64.msi - InstallerSha256: 70176C0FE0D1DF0DDADC30AB265CC8BB195DF9BE808D625344F3835D6A5A5C05 - ProductCode: '{1C02A42D-3B03-44F3-ABC3-2B1BE066BEF5}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.3.1.1244 - ProductCode: '{1C02A42D-3B03-44F3-ABC3-2B1BE066BEF5}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.3.1.2025-08-28/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.3.1.2025-08-28/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index c085b3f41138a..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.3.1.2025-08-28/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with WinGet Releaser using komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.3.1.2025-08-28 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.3.1.2025-08-28/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.3.1.2025-08-28/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 272a02d6fefc3..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.3.1.2025-08-28/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.3.1.2025-08-28 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.0.2025-11-07/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.0.2025-11-07/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index eba935686a1cc..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.0.2025-11-07/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.13.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.0.2025-11-07 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2025-11-07 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.0/2025-11-07/WinDirStat-x86.msi - InstallerSha256: B2898D131436EC6C94CEBF1ED84ACE067F5BE752C0140BD765331EEE0F7079DC - ProductCode: '{0CC9111B-9DE8-4913-AD54-B6382E148810}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.0.1320 - ProductCode: '{0CC9111B-9DE8-4913-AD54-B6382E148810}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.0/2025-11-07/WinDirStat-x64.msi - InstallerSha256: FA3AFF5D05236C9B6BC37FAD3F14C564278858295DC22DC6867F5B7A249520BE - ProductCode: '{C426C5DE-8A80-4481-935C-E7C4B12CA66A}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.0.1320 - ProductCode: '{C426C5DE-8A80-4481-935C-E7C4B12CA66A}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.0/2025-11-07/WinDirStat-arm64.msi - InstallerSha256: DC8629753BC6DFAF916A9A491319FFF915F4A67DE867B9F03872A494F2C2171A - ProductCode: '{07CC8758-40CD-4FCA-A849-A53376EF9B26}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.0.1320 - ProductCode: '{07CC8758-40CD-4FCA-A849-A53376EF9B26}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.0.2025-11-07/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.0.2025-11-07/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index 4a5f29ff4479a..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.0.2025-11-07/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with WinGet Releaser using komac v2.13.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.0.2025-11-07 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Dark Mode - Recreated Release To Trigger WinGet Actions -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.4.0/2025-11-07 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.0.2025-11-07/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.0.2025-11-07/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 5e389de62faf6..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.0.2025-11-07/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.13.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.0.2025-11-07 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.10.2026-01-10/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.10.2026-01-10/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 0556f53c47b29..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.10.2026-01-10/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.10.2026-01-10 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2026-01-10 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.10/2026-01-10/WinDirStat-x86.msi - InstallerSha256: B1742432F0C6EED83402B08AD6BCB2EC6F5E64E64A2CFA4CFC07E1855000D95F - ProductCode: '{AD15732E-07C1-4259-87DD-1EF9D7210464}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.10.1750 - ProductCode: '{AD15732E-07C1-4259-87DD-1EF9D7210464}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.10/2026-01-10/WinDirStat-x64.msi - InstallerSha256: 1CBF9FD073A4543E00101C54B4A7025E37F7667E23460D7A76539CD8BB94BA26 - ProductCode: '{1934E01F-021C-4ECA-B829-A49FDF02E029}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.10.1750 - ProductCode: '{1934E01F-021C-4ECA-B829-A49FDF02E029}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.10/2026-01-10/WinDirStat-arm64.msi - InstallerSha256: 3B6272657A41227667B3AE629C47E82E5EEE76011FA0091A4A67395BC0F37A20 - ProductCode: '{BD50ED82-99EE-4C26-B97E-6FDC093D8E08}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.10.1750 - ProductCode: '{BD50ED82-99EE-4C26-B97E-6FDC093D8E08}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.10.2026-01-10/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.10.2026-01-10/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index cb1649c34a581..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.10.2026-01-10/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.10.2026-01-10 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: 'Release Candidate; Target Release: 2026-01-15' -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.4.10/2026-01-10 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.10.2026-01-10/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.10.2026-01-10/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 968c0f066c94e..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.10.2026-01-10/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.10.2026-01-10 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.12.2026-01-14/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.12.2026-01-14/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 439260a6f5485..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.12.2026-01-14/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.12.2026-01-14 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2026-01-14 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.12/2026-01-14/WinDirStat-x86.msi - InstallerSha256: 5993010B4A727847D6D463B73155FB30E42A2EB5882AC29CCB085915CE2B902B - ProductCode: '{780E6911-A36A-41A3-B513-22CB7ABFC0AF}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.12.1778 - ProductCode: '{780E6911-A36A-41A3-B513-22CB7ABFC0AF}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.12/2026-01-14/WinDirStat-x64.msi - InstallerSha256: C7E0E80ADB467DB2FF7C62392C5E2B32BA41EAFF7BA50D347D53294BDDC72295 - ProductCode: '{5D7E8320-6571-4EBB-BF3B-0D8553624356}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.12.1778 - ProductCode: '{5D7E8320-6571-4EBB-BF3B-0D8553624356}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.12/2026-01-14/WinDirStat-arm64.msi - InstallerSha256: 415E80B1BA39D973E452066FEC49C41A06DCE5EA8E88E38618025BA375C8BA53 - ProductCode: '{F4B8526C-8ED6-4A20-8587-04C479BA77A6}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.12.1778 - ProductCode: '{F4B8526C-8ED6-4A20-8587-04C479BA77A6}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.12.2026-01-14/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.12.2026-01-14/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index 4b32764a25137..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.12.2026-01-14/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.12.2026-01-14 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: 'Release Candidate; Target Release: 2026-01-15' -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.4.12/2026-01-14 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.12.2026-01-14/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.12.2026-01-14/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 04243d50a820f..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.12.2026-01-14/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.12.2026-01-14 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.2.2025-12-30/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.2.2025-12-30/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index b4660c34cf282..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.2.2025-12-30/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.2.2025-12-30 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2025-12-30 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.2/2025-12-30/WinDirStat-x86.msi - InstallerSha256: 7F964A610D22EC37CB412DE2B1D375F42A731FC7A5A631B3FE22A55BB37343AC - ProductCode: '{3AFD93BD-BB49-4ABB-B376-09BCC41E8658}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.2.1644 - ProductCode: '{3AFD93BD-BB49-4ABB-B376-09BCC41E8658}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.2/2025-12-30/WinDirStat-x64.msi - InstallerSha256: 85A07BD7FC7B63B040F30EC206CD047FB07C4487EA2868933FF6A36330E57896 - ProductCode: '{377E2232-C1E6-4D46-8BCD-D6740FDD66CA}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.2.1644 - ProductCode: '{377E2232-C1E6-4D46-8BCD-D6740FDD66CA}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.2/2025-12-30/WinDirStat-arm64.msi - InstallerSha256: 31779F136A7F97777F2AC6CC2FEC7DA770EB0DCB45A366D3098B544E14BDECB3 - ProductCode: '{7FBD96E0-8922-49A7-A8F6-30EF70AF77D9}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.2.1644 - ProductCode: '{7FBD96E0-8922-49A7-A8F6-30EF70AF77D9}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.2.2025-12-30/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.2.2025-12-30/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index 9abf1056cdf02..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.2.2025-12-30/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.2.2025-12-30 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Release Candidate -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.4.2/2025-12-30 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.2.2025-12-30/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.2.2025-12-30/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index adaf38f4bb2a2..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.2.2025-12-30/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.2.2025-12-30 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.4.2025-12-31/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.4.2025-12-31/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 7a50d7dffe146..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.4.2025-12-31/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.4.2025-12-31 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2025-12-31 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.4/2025-12-31/WinDirStat-x86.msi - InstallerSha256: C7E73543E5B56E2539FC33273E3EF242428CC91BFFAE60AFBECB57986C6E9B55 - ProductCode: '{80EE4A53-A7BD-42D7-B09F-082CE2CC90DC}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.4.1656 - ProductCode: '{80EE4A53-A7BD-42D7-B09F-082CE2CC90DC}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.4/2025-12-31/WinDirStat-x64.msi - InstallerSha256: E2919612115A0A730BEE24A9C2FCAC6DB80A2C32E6BCFE73344A59A46C376132 - ProductCode: '{F04E6912-8A2A-4229-B648-D2FBC8B8E25D}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.4.1656 - ProductCode: '{F04E6912-8A2A-4229-B648-D2FBC8B8E25D}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.4/2025-12-31/WinDirStat-arm64.msi - InstallerSha256: 9CE6FE0BBA9C65BE48439D809F570EEBFF2FBE33F18CF307137CA2C6EED885D3 - ProductCode: '{B60569EB-904C-4776-9BA9-678D25F1CE84}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.4.1656 - ProductCode: '{B60569EB-904C-4776-9BA9-678D25F1CE84}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.4.2025-12-31/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.4.2025-12-31/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index 23c35dd00999c..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.4.2025-12-31/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.4.2025-12-31 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.4.2025-12-31/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.4.2025-12-31/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index dcdc32a11a94e..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.4.2025-12-31/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.4.2025-12-31 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.5.2026-01-02/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.5.2026-01-02/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 5bc041ff2eeec..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.5.2026-01-02/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.5.2026-01-02 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2026-01-02 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.5/2026-01-02/WinDirStat-x86.msi - InstallerSha256: 467F75954A916569DD9C2BCE40DBD7A38F9494FFACA374B36733EC44BF60AC3C - ProductCode: '{D9F084D5-B89E-46B5-A691-5A457EA152F4}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.5.1665 - ProductCode: '{D9F084D5-B89E-46B5-A691-5A457EA152F4}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.5/2026-01-02/WinDirStat-x64.msi - InstallerSha256: DAB2E2574764934DB79169125886F5895004FB847F5739691B0C6BFD3D8010C7 - ProductCode: '{1E7FD8C9-87FA-40AC-9091-F7C5A59F0F37}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.5.1665 - ProductCode: '{1E7FD8C9-87FA-40AC-9091-F7C5A59F0F37}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.5/2026-01-02/WinDirStat-arm64.msi - InstallerSha256: B82CEFB45641E08A93B7476BA3DAB0E2FA0ED5AB338C6FB15BFA6FC477101CAC - ProductCode: '{4921F736-2090-4DDB-B35C-7A35890F6A04}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.5.1665 - ProductCode: '{4921F736-2090-4DDB-B35C-7A35890F6A04}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.5.2026-01-02/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.5.2026-01-02/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index d923102b14018..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.5.2026-01-02/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.5.2026-01-02 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Release Candidate -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.4.5/2026-01-02 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.5.2026-01-02/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.5.2026-01-02/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 0e2e43fb58ad5..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.5.2026-01-02/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.5.2026-01-02 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.6.2026-01-02/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.6.2026-01-02/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 26807c1a68265..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.6.2026-01-02/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.6.2026-01-02 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2026-01-02 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.6/2026-01-02/WinDirStat-x86.msi - InstallerSha256: 4F04C308757F8A607E8C337655630BC66772F5988EF57BDDE7FBFFD50AB27FA1 - ProductCode: '{A03A986B-BE95-42AA-8690-473AC9315308}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.6.1668 - ProductCode: '{A03A986B-BE95-42AA-8690-473AC9315308}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.6/2026-01-02/WinDirStat-x64.msi - InstallerSha256: 0E3AC1C6A357CECF776A40AD1639476C77D6CA721F6096F34D8D078B3389369C - ProductCode: '{37A7D697-66CA-47AB-B7A6-E4D6984AE7EF}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.6.1668 - ProductCode: '{37A7D697-66CA-47AB-B7A6-E4D6984AE7EF}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.6/2026-01-02/WinDirStat-arm64.msi - InstallerSha256: 3C8C7D7E0CF618B7586A27531811F2892B4B4595C649930EF8FAA00827573D60 - ProductCode: '{66976311-C121-441D-AEC8-48FE149E2BA7}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.6.1668 - ProductCode: '{66976311-C121-441D-AEC8-48FE149E2BA7}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.6.2026-01-02/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.6.2026-01-02/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index cfb360eef43b3..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.6.2026-01-02/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.6.2026-01-02 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Release Candidate -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.4.6/2026-01-02 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.6.2026-01-02/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.6.2026-01-02/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 119638c315b6d..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.6.2026-01-02/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.6.2026-01-02 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.7.2026-01-04/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.7.2026-01-04/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 6292510bd7815..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.7.2026-01-04/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.7.2026-01-04 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2026-01-04 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.7/2026-01-04/WinDirStat-x86.msi - InstallerSha256: A6862A6136EAF9D198806A7D0DDDC1859B477404BB592995D5E1B291071881C1 - ProductCode: '{D320941A-DF02-4EF9-9B8E-374ABA809F5E}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.7.1682 - ProductCode: '{D320941A-DF02-4EF9-9B8E-374ABA809F5E}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.7/2026-01-04/WinDirStat-x64.msi - InstallerSha256: 670B1551AD035CCE06DF2A10CEDC4B8EA8DB2F25D7DF4B276772F52C7DBAD6FD - ProductCode: '{2B821FA8-F57D-46BE-A063-2BAA97DA5101}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.7.1682 - ProductCode: '{2B821FA8-F57D-46BE-A063-2BAA97DA5101}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.7/2026-01-04/WinDirStat-arm64.msi - InstallerSha256: C128FACA877D74F2FEB73A17D6C908AFB230D904522FFEFA6CCBB1C87DF7B253 - ProductCode: '{BCADAF9D-2748-4ACC-B636-C0E0696ADFC4}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.7.1682 - ProductCode: '{BCADAF9D-2748-4ACC-B636-C0E0696ADFC4}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.7.2026-01-04/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.7.2026-01-04/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index 69ef76dc8b2c4..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.7.2026-01-04/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.7.2026-01-04 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Release Candidate -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.4.7/2026-01-04 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.7.2026-01-04/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.7.2026-01-04/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 0e3577beab7db..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.7.2026-01-04/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.7.2026-01-04 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.8.2026-01-06/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.8.2026-01-06/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 0c6ab5ca9737c..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.8.2026-01-06/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.8.2026-01-06 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2026-01-07 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.8/2026-01-06/WinDirStat-x86.msi - InstallerSha256: 498A9D8599093338E5B897DFDB63F46419F57CBAE070FC8D1D5499559ECCBCB0 - ProductCode: '{3C7B8620-6FFF-45F6-866D-3AA841D05263}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.8.1719 - ProductCode: '{3C7B8620-6FFF-45F6-866D-3AA841D05263}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.8/2026-01-06/WinDirStat-x64.msi - InstallerSha256: BF6047C89C46E0DEE9CFCC23372CC250EB5093594711ECD3CD4D55529EEF3B65 - ProductCode: '{212E3CC8-99B2-4B1C-9533-ADE53476CF0A}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.8.1719 - ProductCode: '{212E3CC8-99B2-4B1C-9533-ADE53476CF0A}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.8/2026-01-06/WinDirStat-arm64.msi - InstallerSha256: 2C5D1ABBFCB289049D4B67FA16BEB3448003B962D1EA35240555EF93CEA9C688 - ProductCode: '{EEF39EBB-3966-4318-9ADF-5DEA4CD95F2B}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.8.1719 - ProductCode: '{EEF39EBB-3966-4318-9ADF-5DEA4CD95F2B}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.8.2026-01-06/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.8.2026-01-06/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index e99d197e77329..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.8.2026-01-06/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.8.2026-01-06 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Release Candidate -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.4.8/2026-01-06 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.8.2026-01-06/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.8.2026-01-06/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index c5f345ccd0cfa..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.8.2026-01-06/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.8.2026-01-06 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.9.2026-01-07/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.9.2026-01-07/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index 6e12ad1303f49..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.9.2026-01-07/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.9.2026-01-07 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2026-01-07 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.9/2026-01-07/WinDirStat-x86.msi - InstallerSha256: EC293312A1C8B675E17D16C995EF3A20F1D1D858B44DD24E6799E1377AC0C735 - ProductCode: '{C7E75338-57F0-488C-8B17-ADC6633F21B3}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.9.1722 - ProductCode: '{C7E75338-57F0-488C-8B17-ADC6633F21B3}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.9/2026-01-07/WinDirStat-x64.msi - InstallerSha256: DDEF9BF428B327388AAC71BE6DF0B39FA16839D46A3DF4267272AFDED838D1E7 - ProductCode: '{E004A930-DD86-44B0-A554-48672034DE1E}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.9.1722 - ProductCode: '{E004A930-DD86-44B0-A554-48672034DE1E}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.4.9/2026-01-07/WinDirStat-arm64.msi - InstallerSha256: E107FA8DE1DFEBDE9AD3C46275FD62A5D532DD80034B85B8558D26B19D5A7F1F - ProductCode: '{1479B9B7-0D08-4E11-A161-F14D7EDE0D51}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.4.9.1722 - ProductCode: '{1479B9B7-0D08-4E11-A161-F14D7EDE0D51}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.9.2026-01-07/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.9.2026-01-07/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index 7aadde2050665..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.9.2026-01-07/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.9.2026-01-07 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ReleaseNotes: Release Candidate -ReleaseNotesUrl: https://github.com/windirstat/windirstat/releases/tag/beta/v2.4.9/2026-01-07 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.9.2026-01-07/WinDirStat.WinDirStat.Beta.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.4.9.2026-01-07/WinDirStat.WinDirStat.Beta.yaml deleted file mode 100644 index 7e4929b78590b..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.4.9.2026-01-07/WinDirStat.WinDirStat.Beta.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.4.9.2026-01-07 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.5.1.2026-01-25/WinDirStat.WinDirStat.Beta.installer.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.5.1.2026-01-25/WinDirStat.WinDirStat.Beta.installer.yaml deleted file mode 100644 index db00292fc07d2..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.5.1.2026-01-25/WinDirStat.WinDirStat.Beta.installer.yaml +++ /dev/null @@ -1,52 +0,0 @@ -# Created with WinGet Releaser using komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.5.1.2026-01-25 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2026-01-25 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.5.1/2026-01-25/WinDirStat-x86.msi - InstallerSha256: 983C7DC0DBB6E30E3B9B3806690A585D3C618F4224A602E425A0BE5FD08600F1 - ProductCode: '{9A63023C-6398-497B-82D8-A287207878AD}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.5.1.1808 - ProductCode: '{9A63023C-6398-497B-82D8-A287207878AD}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%\WinDirStat' -- Architecture: x64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.5.1/2026-01-25/WinDirStat-x64.msi - InstallerSha256: BCA7A5CE069090392A39C1908C7CBDCDB15E016303D71D25D035D414B1068993 - ProductCode: '{1F1F14EC-8AE9-488C-96D4-1CB4B586DB7F}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.5.1.1808 - ProductCode: '{1F1F14EC-8AE9-488C-96D4-1CB4B586DB7F}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -- Architecture: arm64 - InstallerUrl: https://github.com/windirstat/windirstat/releases/download/beta/v2.5.1/2026-01-25/WinDirStat-arm64.msi - InstallerSha256: 2D11CFEAED18058A03CD3EC0463DD754D685AEC08406E3226E08831C54DEE574 - ProductCode: '{AEBAD801-1857-4237-B0D2-9B0584997730}' - AppsAndFeaturesEntries: - - DisplayName: WinDirStat - Publisher: WinDirStat Team - DisplayVersion: 2.5.1.1808 - ProductCode: '{AEBAD801-1857-4237-B0D2-9B0584997730}' - UpgradeCode: '{E211CCFB-D706-4919-B2FF-0F7F426EA27B}' - InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\WinDirStat' -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/w/WinDirStat/WinDirStat/Beta/2.5.1.2026-01-25/WinDirStat.WinDirStat.Beta.locale.en-US.yaml b/manifests/w/WinDirStat/WinDirStat/Beta/2.5.1.2026-01-25/WinDirStat.WinDirStat.Beta.locale.en-US.yaml deleted file mode 100644 index 622ac57d50c31..0000000000000 --- a/manifests/w/WinDirStat/WinDirStat/Beta/2.5.1.2026-01-25/WinDirStat.WinDirStat.Beta.locale.en-US.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with WinGet Releaser using komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: WinDirStat.WinDirStat.Beta -PackageVersion: 2.5.1.2026-01-25 -PackageLocale: en-US -Publisher: The WinDirStat Team -PublisherUrl: https://windirstat.net/ -PublisherSupportUrl: https://windirstat.net/contact.html -Author: The WinDirStat Team -PackageName: WinDirStat (Beta) -PackageUrl: https://windirstat.net/ -License: GPL-2.0 -LicenseUrl: https://github.com/windirstat/windirstat/blob/HEAD/LICENSE.md -Copyright: Copyright © 2004-2024 WinDirStat Team (windirstat.net) -CopyrightUrl: https://github.com/windirstat/windirstat/blob/master/README.md -ShortDescription: Disk usage statistics viewer and cleanup tool -Description: |- - WinDirStat is a program that allows you to find disk space hogs at a glance. It achieves that by displaying a drive, drives or directories in a treemap that assigns bigger areas to bigger files and directories. Making those areas visually separate by coloring and other means allows you to see literally at a glance what the space hogs are and where to dig deeper. - The directory tree is simultaneously shown as a tree list and as a treemap. One can effortlessly gain an impression of the proportions on the hard disk(s). - - Major features - - Three views: Directory Tree, Treemap, and Extension - - Duplicate file detection - - Built-in cleanup actions including Open, Delete, Show Properties - - User-defined cleanup actions (command line based) -Moniker: windirstat-beta -Tags: -- cleanup -- disk-usage -- kdirstat -- organization -- sequoiaview -- statistics -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/w/WonderIdea/DrawingMaster/.validation b/manifests/w/WonderIdea/DrawingMaster/.validation deleted file mode 100644 index 9fb23e50971fe..0000000000000 --- a/manifests/w/WonderIdea/DrawingMaster/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"ffa41a52-bc82-499a-a031-add045d04af9","TestPlan":"Validation-Domain","PackagePath":"manifests/w/WonderIdea/DrawingMaster/2.1.7","CommitId":"56e0dff7215a0ab9abad38a0eb563cfd20c29452"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/w/WonderIdea/HandActionPlayer/.validation b/manifests/w/WonderIdea/HandActionPlayer/.validation deleted file mode 100644 index 23acc84565fab..0000000000000 --- a/manifests/w/WonderIdea/HandActionPlayer/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"c018bb34-fad2-406c-9ca0-fde2b1380c21","TestPlan":"Validation-Domain","PackagePath":"manifests/w/WonderIdea/HandActionPlayer/2.7.000","CommitId":"1f1443a9ab87e6d2c458e5d8c46cb6963891e6ca"},{"WaiverId":"0b9b157e-ce28-4dfd-963d-7ef6e6cb774a","TestPlan":"Validation-Domain","PackagePath":"manifests/w/WonderIdea/HandActionPlayer/2.7.100","CommitId":"88f4f073ac0f45d3eec652d6ab1ab8e57f94565a"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/w/WonderIdea/WanCaiVR/.validation b/manifests/w/WonderIdea/WanCaiVR/.validation deleted file mode 100644 index 2f070c7eae55d..0000000000000 --- a/manifests/w/WonderIdea/WanCaiVR/.validation +++ /dev/null @@ -1 +0,0 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"bbe998ef-1de0-4eb9-8c92-e890cffd3e11","TestPlan":"Validation-Domain","PackagePath":"manifests/w/WonderIdea/WanCaiVR/1.3.1","CommitId":"77464ed6d07771586a7ed01da4ec3ccc80840afd"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/w/Wozhi/WizNote/.validation b/manifests/w/Wozhi/WizNote/.validation new file mode 100644 index 0000000000000..c159c2bd456b5 --- /dev/null +++ b/manifests/w/Wozhi/WizNote/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"7cdb23ac-6d25-40d7-82a9-7e6d4e8eca79","TestPlan":"Validation-Domain","PackagePath":"manifests/w/Wozhi/WizNote/4.14","CommitId":"6a158416e36064bcc3d7895b4316a4049f3d6a6c"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/w/Wozhi/WizNote/4.14/Wozhi.WizNote.locale.en-US.yaml b/manifests/w/Wozhi/WizNote/4.14/Wozhi.WizNote.locale.en-US.yaml index 5f79dc5f35ad8..ad42c8921a72a 100644 --- a/manifests/w/Wozhi/WizNote/4.14/Wozhi.WizNote.locale.en-US.yaml +++ b/manifests/w/Wozhi/WizNote/4.14/Wozhi.WizNote.locale.en-US.yaml @@ -15,7 +15,7 @@ License: Proprietary # LicenseUrl: https://www.wiz.cn/share-termsofuse.html # Copyright: # CopyrightUrl: -ShortDescription: Create a powerful knowledge graph - from personal notes to team wiki +ShortDescription: Create a powerful knowledge graph - from personal notes to team wiki. # Description: # Moniker: Tags: @@ -23,6 +23,8 @@ Tags: - memo - memorandum - notes +- prc +- china # ReleaseNotes: # ReleaseNotesUrl: https://www.wiz.cn/downloads-windows.html # PurchaseUrl: diff --git a/manifests/x/Xiaomi/MiAssistant/4.2.1028.10/Xiaomi.MiAssistant.locale.en-US.yaml b/manifests/x/Xiaomi/MiAssistant/4.2.1028.10/Xiaomi.MiAssistant.locale.en-US.yaml index 16db994aee459..7dbc58b080246 100644 --- a/manifests/x/Xiaomi/MiAssistant/4.2.1028.10/Xiaomi.MiAssistant.locale.en-US.yaml +++ b/manifests/x/Xiaomi/MiAssistant/4.2.1028.10/Xiaomi.MiAssistant.locale.en-US.yaml @@ -1,4 +1,3 @@ -# Created using wingetcreate 1.9.14.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json PackageIdentifier: Xiaomi.MiAssistant @@ -10,7 +9,7 @@ PublisherSupportUrl: https://web.vip.miui.com/page/info/mio/mio/singleBoard?boar PrivacyUrl: https://privacy.mi.com/all/en_US/ Author: Beijing Xiaomi Technology Co., Ltd. PackageName: Mi Phone Assistant -PackageUrl: http://zhushou.miui.com/ +# PackageUrl: https://zhushou.miui.com/ License: Freeware LicenseUrl: https://privacy.mi.com/all/en_US/ Copyright: Copyright Beijing Xiaomi Technology Co., Ltd. All rights reserved. @@ -31,5 +30,7 @@ Tags: - xiaomi - mi - assistant +- prc +- china ManifestType: defaultLocale ManifestVersion: 1.9.0 diff --git a/manifests/x/Xiaomi/MiAssistant/4.2.1028.10/Xiaomi.MiAssistant.locale.zh-CN.yaml b/manifests/x/Xiaomi/MiAssistant/4.2.1028.10/Xiaomi.MiAssistant.locale.zh-CN.yaml index 46022efc832c0..8400962ef7081 100644 --- a/manifests/x/Xiaomi/MiAssistant/4.2.1028.10/Xiaomi.MiAssistant.locale.zh-CN.yaml +++ b/manifests/x/Xiaomi/MiAssistant/4.2.1028.10/Xiaomi.MiAssistant.locale.zh-CN.yaml @@ -10,7 +10,7 @@ PublisherSupportUrl: https://web.vip.miui.com/page/info/mio/mio/singleBoard?boar PrivacyUrl: https://privacy.mi.com/all/zh_CN/ Author: 小米科技有限责任公司 PackageName: 小米手机助手 -PackageUrl: http://zhushou.miui.com/ +# PackageUrl: https://zhushou.miui.com/ License: 免费软件 LicenseUrl: https://privacy.mi.com/all/zh_CN/ Copyright: 小米科技有限责任公司版权所有,保留所有权利。 diff --git a/manifests/y/YY/YY/9.54.0.0/YY.YY.locale.en-US.yaml b/manifests/y/YY/YY/9.54.0.0/YY.YY.locale.en-US.yaml index 78d1ebfc4cedf..3b1f33259958b 100644 --- a/manifests/y/YY/YY/9.54.0.0/YY.YY.locale.en-US.yaml +++ b/manifests/y/YY/YY/9.54.0.0/YY.YY.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://www.yy.com/pcyy/ License: Proprietary LicenseUrl: https://xy.yy.com/rn/rules/xwzc/118.html Copyright: Copyright(C) 2007-2026[Guangzhou Jinhong Network Media Co., Ltd.] -ShortDescription: Entertainment live streaming platform and high-quality voice chat service +ShortDescription: Entertainment live streaming platform and high-quality voice chat service. Tags: - chat - live @@ -22,6 +22,8 @@ Tags: - livestreaming - streaming - voice +- prc +- china PurchaseUrl: https://vip.yy.com/ ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/y/YouXiao/YXFile/2.5.4.4/YouXiao.YXFile.locale.en-US.yaml b/manifests/y/YouXiao/YXFile/2.5.4.4/YouXiao.YXFile.locale.en-US.yaml index 10b1047897b3c..99d14923c036b 100644 --- a/manifests/y/YouXiao/YXFile/2.5.4.4/YouXiao.YXFile.locale.en-US.yaml +++ b/manifests/y/YouXiao/YXFile/2.5.4.4/YouXiao.YXFile.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://www.yxfile.com.cn/ License: Proprietary LicenseUrl: https://www.yxfile.com.cn/agreement.html Copyright: © YXFile. All Rights Reserved. -ShortDescription: Help you manage your files easily +ShortDescription: Helps you manage your files easily. Description: YXFile is a file tag management software with a powerful built-in local file search engine to help you manage your computer files easily. Tags: - application @@ -28,6 +28,8 @@ Tags: - search - software - tag +- prc +- china ReleaseNotesUrl: https://support.qq.com/products/382872/blog/775472 Documentations: - DocumentLabel: FAQ diff --git a/manifests/y/Youku/Youku/9.2.66.1001/Youku.Youku.locale.en-US.yaml b/manifests/y/Youku/Youku/9.2.66.1001/Youku.Youku.locale.en-US.yaml index 95341cb8557ff..8d4758f481120 100644 --- a/manifests/y/Youku/Youku/9.2.66.1001/Youku.Youku.locale.en-US.yaml +++ b/manifests/y/Youku/Youku/9.2.66.1001/Youku.Youku.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://youku.com/product/index License: Proprietary LicenseUrl: https://terms.alicdn.com/legal-agreement/terms/suit_bu1_unification/suit_bu1_unification202005142208_14749.html Copyright: Copyright2024 Youku youku.com All rights reserved -ShortDescription: An online video platform providing video streaming, publishing, searching and sharing +ShortDescription: An online video platform providing video streaming, publishing, searching and sharing. Description: Youku is a famous online video platform in China, providing a vast number of videos such as series, movies, animations, music, news, variety shows, games and originals. featuring HD and smooth streaming, rapid download, and powerful search. Tags: - animation @@ -30,6 +30,8 @@ Tags: - series - show - video +- prc +- china PurchaseUrl: https://hy.youku.com/ ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/z/ZWSOFT/ZWCAD/2026/26.10.0.20036/ZWSOFT.ZWCAD.2026.locale.en-US.yaml b/manifests/z/ZWSOFT/ZWCAD/2026/26.10.0.20036/ZWSOFT.ZWCAD.2026.locale.en-US.yaml index 0de91b608aa67..a94e8bdabfdfc 100644 --- a/manifests/z/ZWSOFT/ZWCAD/2026/26.10.0.20036/ZWSOFT.ZWCAD.2026.locale.en-US.yaml +++ b/manifests/z/ZWSOFT/ZWCAD/2026/26.10.0.20036/ZWSOFT.ZWCAD.2026.locale.en-US.yaml @@ -13,19 +13,21 @@ PackageName: ZWCAD 2026 PackageUrl: https://www.zwsoft.com/product/zwcad License: Proprietary Copyright: © 1998-2025 ZWSOFT CO., LTD.(Guangzhou). All rights reserved. -ShortDescription: Fast, Powerful and Compatible 2D CAD +ShortDescription: Fast, Powerful and Compatible 2D CAD. Description: ZWCAD is a fast and powerful 2D CAD solution offering unparalleled compatibility with the industry standard file format DWG. It empowers architects, engineers, and designers in the AEC and manufacturing industries to effortlessly bring their creative visions to life. Tags: - blueprint - cad - drawing - tangent +- prc +- china ReleaseNotes: |- - Here are the key updates: + Here are the key updates: 1. Fixed known issues to enhance the operational stability of the software. 2. Introduced print quality control for OLE objects for precise and clear document printing. - This update is applicable to the following versions: + This update is applicable to the following versions: - 26.00_2025.04.28(#18158-cf74d3b31df) - 26.00_2025.05.15(#18164-40fbb904a0a) - 26.00_2025.05.16(#18215-8c8e206293f) diff --git a/manifests/z/ZhipuAI/Zread/0.2.5/ZhipuAI.Zread.locale.en-US.yaml b/manifests/z/ZhipuAI/Zread/0.2.5/ZhipuAI.Zread.locale.en-US.yaml index d8c3d171c0fa7..b79a5344f08b3 100644 --- a/manifests/z/ZhipuAI/Zread/0.2.5/ZhipuAI.Zread.locale.en-US.yaml +++ b/manifests/z/ZhipuAI/Zread/0.2.5/ZhipuAI.Zread.locale.en-US.yaml @@ -8,7 +8,7 @@ PublisherSupportUrl: "https://zread.ai" PackageName: Zread PackageUrl: "https://zread.ai" License: Proprietary -ShortDescription: Zread turns your local codebase into readable docs +ShortDescription: Turns your local codebase into readable docs. Description: >- Zread analyzes your codebase and generates a structured wiki using LLMs. Supports multiple LLM providers including OpenAI-compatible APIs. @@ -17,6 +17,10 @@ Tags: - wiki - code - ai + - artificial-intelligence + - artificialintelligence + - prc + - china ReleaseNotesUrl: "https://github.com/ZreadAI/zread_cli/releases/tag/v0.2.5" ManifestType: locale ManifestVersion: 1.12.0