diff --git a/.github/actions/spelling/excludes.txt b/.github/actions/spelling/excludes.txt index 6a99f8a4d588c..d17c7f57ad485 100644 --- a/.github/actions/spelling/excludes.txt +++ b/.github/actions/spelling/excludes.txt @@ -62,6 +62,7 @@ ignore$ ^\.(?!github/) ^\.github/actions/spelling/ ^\.github/policies/moderatorTriggers\.yml$ +^\.github/policies/superModeratorTriggers\.yml$ ^\.github/policies/flaggedPackages\.yml$ ^\.github/workflows/spellCheck\.yml$ ^\.github/workflows/similarissues\.yml$ diff --git a/.github/policies/labelAdded.portableTar.yml b/.github/policies/labelAdded.portableArchive.yml similarity index 77% rename from .github/policies/labelAdded.portableTar.yml rename to .github/policies/labelAdded.portableArchive.yml index ae7543d3bd0ba..fccce295c5cd5 100644 --- a/.github/policies/labelAdded.portableTar.yml +++ b/.github/policies/labelAdded.portableArchive.yml @@ -1,6 +1,6 @@ -id: labelAdded.portableTar +id: labelAdded.portableArchive name: GitOps.PullRequestIssueManagement -description: Handlers when "portable-tar" label is added +description: Handlers when "portable-archive" label is added owner: resource: repository disabled: false @@ -9,7 +9,7 @@ configuration: resourceManagementConfiguration: eventResponderTasks: - description: >- - When the label "portable-tar" is added to a pull request + When the label "portable-archive" is added to a pull request * Add the PR specific reply notifying the issue author of a blocking issue * Label the PR with Blocking-Issue * Label with Needs-Author-Feedback @@ -17,14 +17,14 @@ configuration: if: - payloadType: Pull_Request - labelAdded: - label: portable-tar + label: portable-archive then: - addReply: reply: >- Hello @${issueAuthor}, - This package appears to require support for TAR archive extraction. + This package appears to require support for archive extraction. This PR is blocked until support for additional archive formats is implemented in: @@ -35,7 +35,7 @@ configuration: Be sure to add your 👍 to the issue to help raise the priority and avoid posting "Me too!" messages to respect those who have subscribed to the issue. - Template: msftbot/blockingIssue/tarSupport + Template: msftbot/blockingIssue/additionalArchiveSupport - addLabel: label: Blocking-Issue - addLabel: @@ -45,20 +45,20 @@ configuration: # The policy service should trigger even when the label was added by the policy service triggerOnOwnActions: true - description: >- - When the label "portable-tar" is added to an issue + When the label "portable-archive" is added to an issue * Add the issue specific reply notifying the issue author of a blocking issue * Label the issue with Blocking-Issue if: - payloadType: Issues - labelAdded: - label: portable-tar + label: portable-archive then: - addReply: reply: >- Hello @${issueAuthor}, - This package appears to require support for TAR archive extraction. + This package appears to require support for archive extraction. This PR is blocked until support for additional archive formats is implemented in: @@ -69,7 +69,7 @@ configuration: Be sure to add your 👍 to the issue to help raise the priority and avoid posting "Me too!" messages to respect those who have subscribed to the issue. - Template: msftbot/blockingIssue/tarSupport + Template: msftbot/blockingIssue/additionalArchiveSupport - addLabel: label: Blocking-Issue # The policy service should trigger even when the label was added by the policy service diff --git a/.github/policies/moderatorTriggers.yml b/.github/policies/moderatorTriggers.yml index fd8d48145f4f2..d5b75fcbbf982 100644 --- a/.github/policies/moderatorTriggers.yml +++ b/.github/policies/moderatorTriggers.yml @@ -48,8 +48,11 @@ configuration: - or: - payloadType: Issue_Comment - payloadType: Pull_Request_Review_Comment + # Remove the Needs-Triage label # Take different actions based on the comment pattern then: + - removeLabel: + label: Needs-Triage # Blocking-Issue - if: - commentContains: @@ -86,14 +89,14 @@ configuration: then: - addLabel: label: WindowsFeatures - # portable-tar + # portable-archive - if: - commentContains: - pattern: '\[[Pp]olicy\]\s+[pP]ortable[\s-][tT]ar' + pattern: '\[[Pp]olicy\]\s+[pP]ortable[\s-][aA]rchive' isRegex: True then: - addLabel: - label: portable-tar + label: portable-archive # Area-External - if: - commentContains: @@ -249,6 +252,14 @@ configuration: then: - removeLabel: label: Blocking-Issue + # PSA + - if: + - commentContains: + pattern: '\[[Pp]olicy\]\s+[Pp][Ss][Aa]' + isRegex: True + then: + - addLabel: + label: Public-Service-Announcement # Reset-Feedback - if: - commentContains: diff --git a/.github/policies/superModeratorTriggers.yml b/.github/policies/superModeratorTriggers.yml new file mode 100644 index 0000000000000..ad0923aeee664 --- /dev/null +++ b/.github/policies/superModeratorTriggers.yml @@ -0,0 +1,73 @@ +id: superModeratorTriggers +name: GitOps.PullRequestIssueManagement +description: |- + Defines additional permissions that can be given to "Super-Moderators" + Contractors, consultants, or other users explicitly authorized by Microsoft + can be given special permissions exceeding those of normal moderators by + adding them to this file. +owner: +resource: repository +disabled: false +where: +configuration: + resourceManagementConfiguration: + eventResponderTasks: + - if: + # If the activity sender is any one of the super-moderators, has Admin permission on the repo, or has Write permissions on the repo. . . + - or: + - activitySenderHasPermission: + permission: Admin + - activitySenderHasPermission: + permission: Write + - isActivitySender: + user: denelon + issueAuthor: False + - isActivitySender: + user: stephengillie + issueAuthor: False + then: + # If the payload is an issue_Comment or a Pull_Request_Review_Comment + - if: + - or: + - payloadType: Issue_Comment + - payloadType: Pull_Request_Review_Comment + # Take different actions based on the comment pattern + then: + # Force-Merge + - if: + - commentContains: + pattern: '\[[Pp]olicy\]\s+[Ff]orce[\s-][Mm]erge' + isRegex: True + - isPullRequest + then: + - approvePullRequest: + comment: >- + A Microsoft-authorized representative is forcibly merging this PR + + + Template: msftbot/microsoft/merge + - enableAutoMerge: + mergeMethod: Squash + - removeLabel: + label: Needs-Attention + - removeLabel: + label: Needs-Author-Feedback + # Manually-Validated + - if: + - commentContains: + pattern: '\[[Pp]olicy\]\s+[Mm]anually[\s-][Vv]alidated' + isRegex: True + - isPullRequest + then: + - addReply: + reply: >- + A Microsoft-authorized representative has manually validated this pull requests to conform with the security requirements of this repository. This package may be exempt from additional pipeline runs. + + + Template: msftbot/microsoft/validated + - addLabel: + label: Validation-Completed + - removeLabel: + label: Needs-Attention +onFailure: +onSuccess: diff --git a/Moderation.md b/Moderation.md index b838818a610bb..eb1f466c3b1af 100644 --- a/Moderation.md +++ b/Moderation.md @@ -98,10 +98,11 @@ Moderators are often the first to see and triage new issues, and so they have th * `Needs-CLA` * `Needs-Manual-Merge` * `Network-Blocker` -* `Portable-Tar` +* `Portable-Archive` * `Scripted-Application` * `Windows-Features` * `Zip-Binary` +* `PSA` > [!NOTE] > @@ -109,7 +110,7 @@ Moderators are often the first to see and triage new issues, and so they have th > * `Hardware` > * `Interactive-Only-Installer` > * `License-Blocks-Install` -> * `Portable-Tar` +> * `Portable-Archive` > * `Windows-Features` > * `Zip-Binary` > * Adding `Needs-Attention` to a PR will automatically assign the repository maintainers diff --git a/manifests/1/123/123pan/1.3.3.0/123.123pan.installer.yaml b/manifests/1/123/123pan/1.3.3.0/123.123pan.installer.yaml index fde220205de6a..76cff00b59cc9 100644 --- a/manifests/1/123/123pan/1.3.3.0/123.123pan.installer.yaml +++ b/manifests/1/123/123pan/1.3.3.0/123.123pan.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: 123.123pan diff --git a/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.en-US.yaml b/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.en-US.yaml index f9bf8f6e61d11..aac8acc9a9fc8 100644 --- a/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.en-US.yaml +++ b/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: 123.123pan diff --git a/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.zh-CN.yaml b/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.zh-CN.yaml index 938f591222c8e..fe2267c063b31 100644 --- a/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.zh-CN.yaml +++ b/manifests/1/123/123pan/1.3.3.0/123.123pan.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json PackageIdentifier: 123.123pan diff --git a/manifests/1/123/123pan/1.3.3.0/123.123pan.yaml b/manifests/1/123/123pan/1.3.3.0/123.123pan.yaml index 7f8b8741c0436..5abcb97006ab1 100644 --- a/manifests/1/123/123pan/1.3.3.0/123.123pan.yaml +++ b/manifests/1/123/123pan/1.3.3.0/123.123pan.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: 123.123pan diff --git a/manifests/a/Aircall/Aircall/3.1.8/Aircall.Aircall.installer.yaml b/manifests/a/Aircall/Aircall/3.1.8/Aircall.Aircall.installer.yaml new file mode 100644 index 0000000000000..d7469e501b3ae --- /dev/null +++ b/manifests/a/Aircall/Aircall/3.1.8/Aircall.Aircall.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Aircall.Aircall +PackageVersion: 3.1.8 +MinimumOSVersion: 7.0.0.0 +InstallerType: msi +Scope: machine +UpgradeBehavior: install +ProductCode: '{4FCE0E0B-28E5-4F09-9215-5438D92E91DA}' +Installers: +- Architecture: x86 + InstallerUrl: https://download-electron.aircall.io/Aircall-3.1.8.msi + InstallerSha256: AF8121B83ED46F048903CEE493DE13D2EEA569E514C01BE9E1F236668639D6FD +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/a/Aircall/Aircall/3.1.8/Aircall.Aircall.locale.en-US.yaml b/manifests/a/Aircall/Aircall/3.1.8/Aircall.Aircall.locale.en-US.yaml new file mode 100644 index 0000000000000..a830d0b161b0a --- /dev/null +++ b/manifests/a/Aircall/Aircall/3.1.8/Aircall.Aircall.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.5.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Aircall.Aircall +PackageVersion: 3.1.8 +PackageLocale: en-US +Publisher: Aircall +PublisherUrl: https://aircall.io/business-phone-system/ +PublisherSupportUrl: https://aircall.io/inbound-call-center-software/ +PrivacyUrl: https://aircall.io/privacy/ +Author: Aircall +PackageName: Aircall +PackageUrl: https://aircall.io/download/ +License: Proprietary +Copyright: Copyright © 2023, Aircall +ShortDescription: A flexible solution that fits the teams you have today (and the plans you have for tomorrow). +# ReleaseNotesUrl: https://support.aircall.io/hc/en-gb/sections/10393020321821-Release-Notes #Not working due to blocked website for bots +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/l/Logitech/LogiTune/3.4.142.0/Logitech.LogiTune.yaml b/manifests/a/Aircall/Aircall/3.1.8/Aircall.Aircall.yaml similarity index 64% rename from manifests/l/Logitech/LogiTune/3.4.142.0/Logitech.LogiTune.yaml rename to manifests/a/Aircall/Aircall/3.1.8/Aircall.Aircall.yaml index 7c2f688c8e1fb..86e4cb517246f 100644 --- a/manifests/l/Logitech/LogiTune/3.4.142.0/Logitech.LogiTune.yaml +++ b/manifests/a/Aircall/Aircall/3.1.8/Aircall.Aircall.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.5.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: Logitech.LogiTune -PackageVersion: 3.4.142.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 +# Created using wingetcreate 1.5.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Aircall.Aircall +PackageVersion: 3.1.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/a/AllanBoll/FilesRemote/1.13/AllanBoll.FilesRemote.installer.yaml b/manifests/a/AllanBoll/FilesRemote/1.13/AllanBoll.FilesRemote.installer.yaml new file mode 100644 index 0000000000000..e295c1cf2f4e0 --- /dev/null +++ b/manifests/a/AllanBoll/FilesRemote/1.13/AllanBoll.FilesRemote.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: AllanBoll.FilesRemote +PackageVersion: '1.13' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: filesremote-1.13-Windows-x86_64-static\filesremote.exe +ReleaseDate: 2024-02-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/allanrbo/filesremote/releases/download/v1.13/filesremote-1.13-Windows-x86_64-static.zip + InstallerSha256: 32B9CF574994D50AD67C6E53AD38DFFEAF0029DD59A2B7672ADE8692412FE23F +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/a/AllanBoll/FilesRemote/1.13/AllanBoll.FilesRemote.locale.en-US.yaml b/manifests/a/AllanBoll/FilesRemote/1.13/AllanBoll.FilesRemote.locale.en-US.yaml new file mode 100644 index 0000000000000..1c6416e37c6fa --- /dev/null +++ b/manifests/a/AllanBoll/FilesRemote/1.13/AllanBoll.FilesRemote.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: AllanBoll.FilesRemote +PackageVersion: '1.13' +PackageLocale: en-US +Publisher: Allan Boll +PublisherUrl: https://github.com/allanrbo +PublisherSupportUrl: https://github.com/allanrbo/filesremote/issues +Author: Allan Boll +PackageName: FilesRemote +PackageUrl: https://github.com/allanrbo/filesremote +License: MIT +LicenseUrl: https://github.com/allanrbo/filesremote/blob/HEAD/LICENSE +Copyright: Copyright (c) 2023 Allan Riordan Boll +CopyrightUrl: https://github.com/allanrbo/filesremote/blob/master/LICENSE +ShortDescription: An SSH file manager that lets you edit files like they are local +Moniker: filesremote +ReleaseNotes: Support for opening videos in a configurable video player, and images in a configurable image viewer. Thanks to @JJBT for this feature! +ReleaseNotesUrl: https://github.com/allanrbo/filesremote/releases/tag/v1.13 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/a/AnyDeskSoftwareGmbH/AnyDesk/8.0.6/AnyDeskSoftwareGmbH.AnyDesk.yaml b/manifests/a/AllanBoll/FilesRemote/1.13/AllanBoll.FilesRemote.yaml similarity index 59% rename from manifests/a/AnyDeskSoftwareGmbH/AnyDesk/8.0.6/AnyDeskSoftwareGmbH.AnyDesk.yaml rename to manifests/a/AllanBoll/FilesRemote/1.13/AllanBoll.FilesRemote.yaml index d83ffb1e7210f..a16000cb40e4f 100644 --- a/manifests/a/AnyDeskSoftwareGmbH/AnyDesk/8.0.6/AnyDeskSoftwareGmbH.AnyDesk.yaml +++ b/manifests/a/AllanBoll/FilesRemote/1.13/AllanBoll.FilesRemote.yaml @@ -1,8 +1,8 @@ -# Created with Komac v1.11.0 +# Created with komac v2.0.3 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json -PackageIdentifier: AnyDeskSoftwareGmbH.AnyDesk -PackageVersion: 8.0.6 +PackageIdentifier: AllanBoll.FilesRemote +PackageVersion: '1.13' DefaultLocale: en-US ManifestType: version ManifestVersion: 1.5.0 diff --git a/manifests/a/Anaconda/Anaconda3/2023.09/Anaconda.Anaconda3.installer.yaml b/manifests/a/Anaconda/Anaconda3/2023.09/Anaconda.Anaconda3.installer.yaml index 518143c182ebc..9d50accd668a6 100644 --- a/manifests/a/Anaconda/Anaconda3/2023.09/Anaconda.Anaconda3.installer.yaml +++ b/manifests/a/Anaconda/Anaconda3/2023.09/Anaconda.Anaconda3.installer.yaml @@ -1,31 +1,35 @@ -# Created using WinGet Automation (CLI) - +# Created with WinGet Automation using Komac v1.11.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Anaconda.Anaconda3 PackageVersion: '2023.09' +InstallerType: nullsoft +UpgradeBehavior: uninstallPrevious +Commands: +- conda +- pip +- py +- python3 +ReleaseDate: 2023-09-29 Installers: - Architecture: x64 Scope: user InstallerUrl: https://repo.anaconda.com/archive/Anaconda3-2023.09-0-Windows-x86_64.exe - InstallerSha256: 810da8bff79c10a708b7af9e8f21e6bb47467261a31741240f27bd807f155cb9 + InstallerSha256: 810DA8BFF79C10A708B7AF9E8F21E6BB47467261A31741240F27BD807F155CB9 + AppsAndFeaturesEntries: + - DisplayName: Anaconda3 2023.09-0 (Python 3.11.5 64-bit) + DisplayVersion: 2023.09-0 + InstallerSwitches: + Custom: /InstallationType=JustMe /AddToPath=1 /RegisterPython=0 - Architecture: x64 Scope: machine InstallerUrl: https://repo.anaconda.com/archive/Anaconda3-2023.09-0-Windows-x86_64.exe - InstallerSha256: 810da8bff79c10a708b7af9e8f21e6bb47467261a31741240f27bd807f155cb9 + InstallerSha256: 810DA8BFF79C10A708B7AF9E8F21E6BB47467261A31741240F27BD807F155CB9 + AppsAndFeaturesEntries: + - DisplayName: Anaconda3 2023.09-0 (Python 3.11.5 64-bit) + DisplayVersion: 2023.09-0 + InstallerSwitches: + Custom: /InstallationType=AllUsers /AddToPath=1 /RegisterPython=1 ElevationRequirement: elevationRequired ManifestType: installer -ManifestVersion: 1.5.0 -InstallerType: nullsoft -InstallerSwitches: - Custom: /InstallationType=JustMe /AddToPath=1 /RegisterPython=0 -UpgradeBehavior: uninstallPrevious -Commands: -- conda -- pip -- py -- python3 -ReleaseDate: 2023-09-29 -AppsAndFeaturesEntries: -- DisplayName: Anaconda3 2023.09-0 (Python 3.11.5 64-bit) - DisplayVersion: 2023.09-0 +ManifestVersion: 1.5.0 \ No newline at end of file diff --git a/manifests/a/Anaconda/Anaconda3/2023.09/Anaconda.Anaconda3.locale.en-US.yaml b/manifests/a/Anaconda/Anaconda3/2023.09/Anaconda.Anaconda3.locale.en-US.yaml index 59af9de7d70a2..499196c722239 100644 --- a/manifests/a/Anaconda/Anaconda3/2023.09/Anaconda.Anaconda3.locale.en-US.yaml +++ b/manifests/a/Anaconda/Anaconda3/2023.09/Anaconda.Anaconda3.locale.en-US.yaml @@ -1,5 +1,4 @@ -# Created using WinGet Automation (CLI) - +# Created with WinGet Automation using Komac v1.11.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Anaconda.Anaconda3 @@ -21,4 +20,4 @@ Tags: - conda - python ManifestType: defaultLocale -ManifestVersion: 1.5.0 +ManifestVersion: 1.5.0 \ No newline at end of file diff --git a/manifests/a/Anaconda/Anaconda3/2023.09/Anaconda.Anaconda3.yaml b/manifests/a/Anaconda/Anaconda3/2023.09/Anaconda.Anaconda3.yaml index bb338efd8945c..fb7ddf53665ef 100644 --- a/manifests/a/Anaconda/Anaconda3/2023.09/Anaconda.Anaconda3.yaml +++ b/manifests/a/Anaconda/Anaconda3/2023.09/Anaconda.Anaconda3.yaml @@ -1,9 +1,8 @@ -# Created using WinGet Automation (CLI) - +# Created with WinGet Automation using Komac v1.11.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Anaconda.Anaconda3 PackageVersion: '2023.09' DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.5.0 +ManifestVersion: 1.5.0 \ No newline at end of file diff --git a/manifests/a/AnyDeskSoftwareGmbH/AnyDesk/8.0.6/AnyDeskSoftwareGmbH.AnyDesk.installer.yaml b/manifests/a/AnyDeskSoftwareGmbH/AnyDesk/8.0.6/AnyDeskSoftwareGmbH.AnyDesk.installer.yaml deleted file mode 100644 index 73e751cb95c34..0000000000000 --- a/manifests/a/AnyDeskSoftwareGmbH/AnyDesk/8.0.6/AnyDeskSoftwareGmbH.AnyDesk.installer.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Created with Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: AnyDeskSoftwareGmbH.AnyDesk -PackageVersion: 8.0.6 -Platform: -- Windows.Desktop -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ReleaseDate: 2023-11-09 -Installers: -- Architecture: x86 - InstallerType: exe - InstallerUrl: https://download.anydesk.com/AnyDesk.exe - InstallerSha256: EC33D8EE9C3881B8FCEA18F9F862D5926D994553AEC1B65081D925AFD3E8B028 - InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent - Upgrade: --remove-first - Custom: --install "C:\Program Files (x86)\AnyDesk" --update-auto --create-desktop-icon --create-shortcuts - UpgradeBehavior: install - AppsAndFeaturesEntries: - - DisplayVersion: ad 8.0.6 - ProductCode: AnyDesk - InstallerType: exe - ElevationRequirement: elevationRequired -- Architecture: x86 - InstallerType: wix - InstallerUrl: https://download.anydesk.com/AnyDesk.exe - InstallerSha256: EC33D8EE9C3881B8FCEA18F9F862D5926D994553AEC1B65081D925AFD3E8B028 - UpgradeBehavior: uninstallPrevious - ProductCode: '{62853EBF-E9DD-4AA5-B20A-5A6C3DD74FF3}' - AppsAndFeaturesEntries: - - DisplayName: AnyDesk MSI - ProductCode: '{62853EBF-E9DD-4AA5-B20A-5A6C3DD74FF3}' - InstallerType: msi - ElevationRequirement: elevatesSelf -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/a/AnyDeskSoftwareGmbH/AnyDesk/8.0.6/AnyDeskSoftwareGmbH.AnyDesk.locale.en-US.yaml b/manifests/a/AnyDeskSoftwareGmbH/AnyDesk/8.0.6/AnyDeskSoftwareGmbH.AnyDesk.locale.en-US.yaml deleted file mode 100644 index 6cd5277d85bce..0000000000000 --- a/manifests/a/AnyDeskSoftwareGmbH/AnyDesk/8.0.6/AnyDeskSoftwareGmbH.AnyDesk.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: AnyDeskSoftwareGmbH.AnyDesk -PackageVersion: 8.0.6 -PackageLocale: en-US -Publisher: AnyDesk Software GmbH -PublisherUrl: https://anydesk.com -PublisherSupportUrl: https://anydesk.com/en/contact -PrivacyUrl: https://anydesk.com/en/privacy -Author: AnyDesk Software GmbH -PackageName: AnyDesk -PackageUrl: https://anydesk.com -License: Proprietary -LicenseUrl: https://anydesk.com/en/terms -Copyright: © 2023 AnyDesk Software GmbH -CopyrightUrl: https://anydesk.com/en/terms -ShortDescription: AnyDesk is a German proprietary remote desktop tool distributed by AnyDesk Software GmbH. -Description: |- - Connect to a computer remotely, be it from the other end of the office or halfway around the world. - AnyDesk ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike. -Moniker: anydesk -Tags: -- rdp -- remote-control -- remote-desktop -PurchaseUrl: https://anydesk.com/en/pricing/teams -Documentations: -- DocumentLabel: Knowledge Hub - DocumentUrl: https://support.anydesk.com/knowledge -- DocumentLabel: FAQ - DocumentUrl: https://support.anydesk.com/knowledge/faq -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/a/AnyDeskSoftwareGmbH/AnyDesk/8.0.6/AnyDeskSoftwareGmbH.AnyDesk.locale.zh-CN.yaml b/manifests/a/AnyDeskSoftwareGmbH/AnyDesk/8.0.6/AnyDeskSoftwareGmbH.AnyDesk.locale.zh-CN.yaml deleted file mode 100644 index d25bca77f2305..0000000000000 --- a/manifests/a/AnyDeskSoftwareGmbH/AnyDesk/8.0.6/AnyDeskSoftwareGmbH.AnyDesk.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json - -PackageIdentifier: AnyDeskSoftwareGmbH.AnyDesk -PackageVersion: 8.0.6 -PackageLocale: zh-CN -Publisher: AnyDesk Software GmbH -PublisherUrl: https://anydesk.com -PublisherSupportUrl: https://anydesk.com/zhs/contact -PrivacyUrl: https://anydesk.com/zhs/privacy -PackageName: AnyDesk -PackageUrl: https://anydesk.com/zhs -License: Freeware -LicenseUrl: https://anydesk.com/zhs/terms -Copyright: © 2023 AnyDesk Software GmbH -ShortDescription: 超便捷的远程桌面软件 -Description: 无论您是在隔壁的办公室还是在世界的另一端,都可以通过AnyDesk连接到您的计算机。AnyDesk具有无与伦比的性能、出色的安全性和多平台支持,为专业而创造,深受大家喜爱。 -Tags: -- 远程控制 -- 远程桌面 -- 远程连接 -Documentations: -- DocumentLabel: Knowledge Hub - DocumentUrl: https://support.anydesk.com/zh-cn/knowledge -ManifestType: locale -ManifestVersion: 1.5.0 diff --git a/manifests/a/Apifox/Apifox/2.5.6/Apifox.Apifox.installer.yaml b/manifests/a/Apifox/Apifox/2.5.6/Apifox.Apifox.installer.yaml new file mode 100644 index 0000000000000..c59c23ee24933 --- /dev/null +++ b/manifests/a/Apifox/Apifox/2.5.6/Apifox.Apifox.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Apifox.Apifox +PackageVersion: 2.5.6 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ReleaseDate: 2024-02-12 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: http://cdn.apifox.com/download/2.5.6/Apifox-2.5.6.exe + InstallerSha256: 882F1F07B6FF8DF632F8C7E0BEE8DE59FB423F8E31A7C53C6378D39F48B25BFC + InstallerSwitches: + Custom: /currentuser + ProductCode: d0706a59-dd34-5294-b22d-608c4ab0cc10 +- Architecture: x64 + Scope: machine + InstallerUrl: http://cdn.apifox.com/download/2.5.6/Apifox-2.5.6.exe + InstallerSha256: 882F1F07B6FF8DF632F8C7E0BEE8DE59FB423F8E31A7C53C6378D39F48B25BFC + InstallerSwitches: + Custom: /allusers + ProductCode: d0706a59-dd34-5294-b22d-608c4ab0cc10 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/a/Apifox/Apifox/2.5.6/Apifox.Apifox.locale.en-US.yaml b/manifests/a/Apifox/Apifox/2.5.6/Apifox.Apifox.locale.en-US.yaml new file mode 100644 index 0000000000000..c0df49a3a50d8 --- /dev/null +++ b/manifests/a/Apifox/Apifox/2.5.6/Apifox.Apifox.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Apifox.Apifox +PackageVersion: 2.5.6 +PackageLocale: en-US +Publisher: Apifox Team +PublisherUrl: https://apifox.com +PublisherSupportUrl: https://support.qq.com/products/305368 +# PrivacyUrl: +Author: Guangzhou Ruihu Technology Co., Ltd. +PackageName: Apifox +PackageUrl: https://apifox.com +License: Freeware +# LicenseUrl: +Copyright: Copyright © 2024 Apifox Team +# CopyrightUrl: +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. + As long as the API documentation is defined, API debugging, API data Mock, API test automation can be used directly without the need to redefine; API documentation shares the same tool with API development and debugging, so once the API debugging is completed, it can be ensured that it is identical to the definition of the API documentation. + Efficient, timely and accurate! +# Moniker: +Tags: +- api +- automation +- debug +- develop +- development +- interface +- internet +- network +- request +- response +# ReleaseNotes: +ReleaseNotesUrl: https://apifox.com/help/app/changelog +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://apifox.com/help +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/a/Apifox/Apifox/2.5.6/Apifox.Apifox.locale.zh-CN.yaml b/manifests/a/Apifox/Apifox/2.5.6/Apifox.Apifox.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c15ed8f8a8af6 --- /dev/null +++ b/manifests/a/Apifox/Apifox/2.5.6/Apifox.Apifox.locale.zh-CN.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Apifox.Apifox +PackageVersion: 2.5.6 +PackageLocale: zh-CN +Publisher: Apifox Team +PublisherUrl: https://apifox.com +PublisherSupportUrl: https://support.qq.com/products/305368 +# PrivacyUrl: +Author: 广州睿狐科技有限公司 +PackageName: Apifox +PackageUrl: https://apifox.com +License: 免费软件 +# LicenseUrl: +Copyright: Copyright © 2024 Apifox Team +# CopyrightUrl: +ShortDescription: API 文档、API 调试、API Mock、API 自动化测试一体化协作平台 +Description: Apifox 是 API 文档、API 调试、API Mock、API 自动化测试一体化协作平台,定位 Postman + Swagger + Mock + JMeter。通过一套系统、一份数据,解决多个系统之间的数据同步问题。只要定义好 API 文档,API 调试、API 数据 Mock、API 自动化测试就可以直接使用,无需再次定义;API 文档和 API 开发调试使用同一个工具,API 调试完成后即可保证和 API 文档定义完全一致。高效、及时、准确! +# Moniker: +Tags: +- api +- 互联网 +- 响应 +- 开发 +- 接口 +- 网络 +- 自动化 +- 请求 +- 调试 +ReleaseNotes: "- \U0001F41E 解决 2.5.5 版本引入的 Markdown 文档使用代码块会出现样式错乱的问题" +ReleaseNotesUrl: https://apifox.com/help/app/changelog +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 使用文档 + DocumentUrl: https://apifox.com/help +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/a/Apifox/Apifox/2.5.6/Apifox.Apifox.yaml b/manifests/a/Apifox/Apifox/2.5.6/Apifox.Apifox.yaml new file mode 100644 index 0000000000000..a4830e8f4c431 --- /dev/null +++ b/manifests/a/Apifox/Apifox/2.5.6/Apifox.Apifox.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Apifox.Apifox +PackageVersion: 2.5.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/a/AppFlowy/AppFlowy/0.4.7/AppFlowy.AppFlowy.installer.yaml b/manifests/a/AppFlowy/AppFlowy/0.4.7/AppFlowy.AppFlowy.installer.yaml new file mode 100644 index 0000000000000..7a93abee432b0 --- /dev/null +++ b/manifests/a/AppFlowy/AppFlowy/0.4.7/AppFlowy.AppFlowy.installer.yaml @@ -0,0 +1,13 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: AppFlowy.AppFlowy +PackageVersion: 0.4.7 +InstallerType: inno +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/AppFlowy-IO/AppFlowy/releases/download/0.4.7/AppFlowy-0.4.7-windows-x86_64.exe + InstallerSha256: D5F5DA1F9F8728A758F9487063FF9C2015396954D50DAFDEFCA00DE56D650C08 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/a/AppFlowy/AppFlowy/0.4.7/AppFlowy.AppFlowy.locale.en-US.yaml b/manifests/a/AppFlowy/AppFlowy/0.4.7/AppFlowy.AppFlowy.locale.en-US.yaml new file mode 100644 index 0000000000000..9ff59e814fda5 --- /dev/null +++ b/manifests/a/AppFlowy/AppFlowy/0.4.7/AppFlowy.AppFlowy.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: AppFlowy.AppFlowy +PackageVersion: 0.4.7 +PackageLocale: en-US +Publisher: AppFlowy-IO +PublisherUrl: https://github.com/AppFlowy-IO +PublisherSupportUrl: https://github.com/AppFlowy-IO/AppFlowy/issues +PackageName: AppFlowy +PackageUrl: https://github.com/AppFlowy-IO/AppFlowy +License: AGPL-3.0 +LicenseUrl: https://github.com/AppFlowy-IO/AppFlowy/blob/HEAD/LICENSE +Copyright: Copyright (C) 2007 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/AppFlowy-IO/AppFlowy/blob/main/LICENSE +ShortDescription: The Open Source Alternative To Notion. +Description: |- + AppFlowy is an open source alternative to Notion. + You are in charge of your data and customizations. +Tags: +- content-management +- content-services +- editor +- flutter +- flutter-app +- flutter-apps +- flutter-examples +- flutter-ui +- low-code +- no-code +- notion +- notion-alternative +- rust +- rust-lang +- rust-language +- wiki +ReleaseNotes: |- + Release Notes + Version 0.4.7 - 02/08/2024 + Bug Fixes + - Fixed a possible error when loading workspaces +ReleaseNotesUrl: https://github.com/AppFlowy-IO/AppFlowy/releases/tag/0.4.7 +PurchaseUrl: https://ko-fi.com/appflowy +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Malwarebytes/Malwarebytes/4.6.4.286/Malwarebytes.Malwarebytes.yaml b/manifests/a/AppFlowy/AppFlowy/0.4.7/AppFlowy.AppFlowy.yaml similarity index 59% rename from manifests/m/Malwarebytes/Malwarebytes/4.6.4.286/Malwarebytes.Malwarebytes.yaml rename to manifests/a/AppFlowy/AppFlowy/0.4.7/AppFlowy.AppFlowy.yaml index 1ed3e4a8936b8..be44ebfca28cf 100644 --- a/manifests/m/Malwarebytes/Malwarebytes/4.6.4.286/Malwarebytes.Malwarebytes.yaml +++ b/manifests/a/AppFlowy/AppFlowy/0.4.7/AppFlowy.AppFlowy.yaml @@ -1,8 +1,8 @@ -# Created with Komac v1.11.0 +# Created with komac v2.0.4 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json -PackageIdentifier: Malwarebytes.Malwarebytes -PackageVersion: 4.6.4.286 +PackageIdentifier: AppFlowy.AppFlowy +PackageVersion: 0.4.7 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.5.0 diff --git a/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.installer.yaml b/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.installer.yaml index 555596fa4841c..1c690c2789cf7 100644 --- a/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.installer.yaml +++ b/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Axosoft.GitKraken diff --git a/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.locale.en-US.yaml b/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.locale.en-US.yaml index 6d9c0e7036af6..70ca4fe22ab18 100644 --- a/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.locale.en-US.yaml +++ b/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Axosoft.GitKraken diff --git a/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.yaml b/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.yaml index b983dbbf1f7b9..49826759ddaf5 100644 --- a/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.yaml +++ b/manifests/a/Axosoft/GitKraken/9.10.0/Axosoft.GitKraken.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Axosoft.GitKraken diff --git a/manifests/a/aandrew-me/ytDownloader/3.17.1/aandrew-me.ytDownloader.installer.yaml b/manifests/a/aandrew-me/ytDownloader/3.17.1/aandrew-me.ytDownloader.installer.yaml new file mode 100644 index 0000000000000..c40ff358eebab --- /dev/null +++ b/manifests/a/aandrew-me/ytDownloader/3.17.1/aandrew-me.ytDownloader.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: aandrew-me.ytDownloader +PackageVersion: 3.17.1 +InstallerLocale: en-US +InstallerType: wix +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{1C48166E-B5CB-40E7-AE40-1E95F5C7A8D4}' +ReleaseDate: 2024-02-04 +AppsAndFeaturesEntries: +- DisplayVersion: 3.17.1.0 + UpgradeCode: '{C176C42C-79FF-520D-92A5-BAFDB20B1222}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aandrew-me/ytDownloader/releases/download/v3.17.1/YTDownloader_Win.msi + InstallerSha256: 28AD1EADB642FEF336DCEEA18BAE2ACECB07E704B1B7CF4310AD20EC1B1CF124 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/a/aandrew-me/ytDownloader/3.17.1/aandrew-me.ytDownloader.locale.en-US.yaml b/manifests/a/aandrew-me/ytDownloader/3.17.1/aandrew-me.ytDownloader.locale.en-US.yaml new file mode 100644 index 0000000000000..86849e0a3f99a --- /dev/null +++ b/manifests/a/aandrew-me/ytDownloader/3.17.1/aandrew-me.ytDownloader.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: aandrew-me.ytDownloader +PackageVersion: 3.17.1 +PackageLocale: en-US +Publisher: Andrew +PublisherUrl: https://aandrew.netlify.app/ +PublisherSupportUrl: https://github.com/aandrew-me/ytDownloader/issues +Author: aandrew-me +PackageName: YTDownloader +PackageUrl: https://github.com/aandrew-me/ytDownloader +License: GPL-3.0 +LicenseUrl: https://github.com/aandrew-me/ytDownloader/blob/HEAD/LICENSE +CopyrightUrl: https://github.com/aandrew-me/ytDownloader/blob/main/LICENSE +ShortDescription: A modern GUI App for downloading Videos and Audios from hundreds of sites +Description: ytDownloader lets you download Videos and Extract Audios of different formats from hundreds of sites including but not limited to Youtube, Facebook, Tiktok, Twitch, Twitter, Instagram and so on +Moniker: ytdownloader +Tags: +- appimage +- downloader +- electron +- electron-app +- flatpak +- javascript +- linux +- linux-app +- nodejs +- snap +- ubuntu +- video +- windows +- youtube +- youtube-downloader +- ytdownloader +ReleaseNotes: |- + Changelog + - Fixed proxy file not being used when getting video info +ReleaseNotesUrl: https://github.com/aandrew-me/ytDownloader/releases/tag/v3.17.1 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/a/aandrew-me/ytDownloader/3.17.1/aandrew-me.ytDownloader.yaml b/manifests/a/aandrew-me/ytDownloader/3.17.1/aandrew-me.ytDownloader.yaml new file mode 100644 index 0000000000000..e39ad988b1ad9 --- /dev/null +++ b/manifests/a/aandrew-me/ytDownloader/3.17.1/aandrew-me.ytDownloader.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: aandrew-me.ytDownloader +PackageVersion: 3.17.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/BiniSoft/WindowsFirewallControl/6.9.9.4/BiniSoft.WindowsFirewallControl.installer.yaml b/manifests/b/BiniSoft/WindowsFirewallControl/6.9.9.4/BiniSoft.WindowsFirewallControl.installer.yaml new file mode 100644 index 0000000000000..b650027a9e464 --- /dev/null +++ b/manifests/b/BiniSoft/WindowsFirewallControl/6.9.9.4/BiniSoft.WindowsFirewallControl.installer.yaml @@ -0,0 +1,22 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: BiniSoft.WindowsFirewallControl +PackageVersion: 6.9.9.4 +MinimumOSVersion: 10.0.0.0 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: -run -close -install + SilentWithProgress: -run -close -install +UpgradeBehavior: install +Installers: +- Architecture: neutral + InstallerUrl: https://www.binisoft.org/download/wfc6setup.exe + InstallerSha256: 47C3314EBFBB9111DA98B576486DB872A68BB14BDF3E4FC032D5465CA45F9189 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/BiniSoft/WindowsFirewallControl/6.9.9.4/BiniSoft.WindowsFirewallControl.locale.en-US.yaml b/manifests/b/BiniSoft/WindowsFirewallControl/6.9.9.4/BiniSoft.WindowsFirewallControl.locale.en-US.yaml new file mode 100644 index 0000000000000..304e8e59ec666 --- /dev/null +++ b/manifests/b/BiniSoft/WindowsFirewallControl/6.9.9.4/BiniSoft.WindowsFirewallControl.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: BiniSoft.WindowsFirewallControl +PackageVersion: 6.9.9.4 +PackageLocale: en-US +Publisher: BiniSoft.org +PublisherUrl: https://www.binisoft.org +PackageName: Malwarebytes Windows Firewall Control +PackageUrl: https://www.binisoft.org/wfc.php +License: Copyright © BiniSoft.org +LicenseUrl: https://www.binisoft.org/eula +Copyright: Copyright © BiniSoft.org +ShortDescription: Windows Firewall Control is a powerful tool which extends the functionality of Windows Firewall and provides new extra features which makes Windows Firewall better. +Moniker: wfc +Tags: +- firewall +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/BiniSoft/WindowsFirewallControl/6.9.9.4/BiniSoft.WindowsFirewallControl.yaml b/manifests/b/BiniSoft/WindowsFirewallControl/6.9.9.4/BiniSoft.WindowsFirewallControl.yaml new file mode 100644 index 0000000000000..3d39b5c3dc35a --- /dev/null +++ b/manifests/b/BiniSoft/WindowsFirewallControl/6.9.9.4/BiniSoft.WindowsFirewallControl.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: BiniSoft.WindowsFirewallControl +PackageVersion: 6.9.9.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.0.2/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.0.2/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index f70b07a483324..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.0.2/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.2 $debug=NVS1.7-2-4 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.1.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.0.2 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-05-27 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_0_2.exe - InstallerSha256: 9F90D88FC082657181C25A4DA077190EB0DF006848BCAFDE6871185B53658218 - ProductCode: e13cd273-5047-5f93-bd9e-a3a7408c5c67 -ManifestType: installer -ManifestVersion: 1.1.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.0.2/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.0.2/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 98df71e563db5..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.0.2/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.2 $debug=NVS1.7-2-4 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.1.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.0.2 -PackageLocale: en-US -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/feedback/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -ManifestType: defaultLocale -ManifestVersion: 1.1.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.0.2/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.0.2/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index 84b18093ebb32..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.0.2/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.2 $debug=NVS1.7-2-4 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.1.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.0.2 -PackageLocale: zh-CN -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/feedback/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -ManifestType: locale -ManifestVersion: 1.1.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.0.2/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.0.2/Bosyun.BoardMix.CN.yaml deleted file mode 100644 index 53fab42de5250..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.0.2/Bosyun.BoardMix.CN.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.1.2 $debug=NVS1.7-2-4 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.1.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.0.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.1.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.0.3/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.0.3/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index 1ee1a729ec1eb..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.0.3/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 $debug=QUS2.CRLF.7-2-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.0.3 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-06-23 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_0_3.exe - InstallerSha256: 3887F3C8E5738C52BE4FF336A7E191AC7765DC0FA082F0CCFC301F0E205BF0B0 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.0.3/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.0.3/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 5148975294bdf..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.0.3/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 $debug=QUS2.CRLF.7-2-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.0.3 -PackageLocale: en-US -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.0.3/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.0.3/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index aab396ac5ae52..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.0.3/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 $debug=QUS2.CRLF.7-2-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.0.3 -PackageLocale: zh-CN -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.1.0/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.1.0/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index 221bc0bf4516b..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.1.0/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +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: Bosyun.BoardMix.CN -PackageVersion: 1.1.0 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-08-10 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_1_0.exe - InstallerSha256: 60F632AC90B92ABE4851DB6DF77E5F54E913184378687A8FC3B7D4D8C1162871 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.1.0/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.1.0/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 420129e3cb02d..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.1.0/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +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: Bosyun.BoardMix.CN -PackageVersion: 1.1.0 -PackageLocale: en-US -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.1.0/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.1.0/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index f51c4a36eda29..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.1.0/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,38 +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.locale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.1.0 -PackageLocale: zh-CN -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: |- - 1. 优化新版本检测功能 - 2. 新增崩溃日志上传功能 - 3. 新增系统环境检测功能 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.1.0/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.1.0/Bosyun.BoardMix.CN.yaml deleted file mode 100644 index 1f5e49e2b04c4..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.1.0/Bosyun.BoardMix.CN.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: Bosyun.BoardMix.CN -PackageVersion: 1.1.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.2.0/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.2.0/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index b91a8d1c0b3b5..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.2.0/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +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: Bosyun.BoardMix.CN -PackageVersion: 1.2.0 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-09-14 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_2_0.exe - InstallerSha256: 6F49C330B32F7263AF664B468D33C914BB3A1E19B0C27337E03E2AAA9C92B153 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.2.0/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.2.0/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index cb68c76165fcd..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.2.0/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +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: Bosyun.BoardMix.CN -PackageVersion: 1.2.0 -PackageLocale: en-US -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.2.0/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.2.0/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index 4bd4ff2106a1e..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.2.0/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,38 +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.locale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.2.0 -PackageLocale: zh-CN -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: |- - 1. 修复切换全屏时页面内容尺寸异常 - 2. 优化标签页拖拽排序效果 - 3. 性能优化和体验升级 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.2.0/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.2.0/Bosyun.BoardMix.CN.yaml deleted file mode 100644 index bc5d89aaa8686..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.2.0/Bosyun.BoardMix.CN.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: Bosyun.BoardMix.CN -PackageVersion: 1.2.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.0/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.0/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index fde00e70f048a..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.0/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.0 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-10-26 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_3_0.exe - InstallerSha256: C150C410F84BB5D1A4DCD3A5ECA6C242D77F34CF44F41CAE929D9D76071F77AE - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.0/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.0/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 5bfadcf820cbd..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.0/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.0 -PackageLocale: en-US -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.0/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.0/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index 04ecc832b6349..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.0/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.0 -PackageLocale: zh-CN -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: |- - 1. 新增埋点数据上报 - 2. 新增主线程异常日志上报 - 3. 新增渲染线程崩溃日志上报 - 4. 支持通过 URL Scheme 网页调起客户端 - 5. 升级 Electron 内核到最新版本 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.0/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.0/Bosyun.BoardMix.CN.yaml deleted file mode 100644 index b2a2fa05650f9..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.0/Bosyun.BoardMix.CN.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.1/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.1/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index a2651e31a83f6..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.1/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.1 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-11-09 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_3_1.exe - InstallerSha256: 2141284055DD986B9BD8364DDDB9E6975327E10343080D936A90DB659BA46754 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.1/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.1/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 4d0217e5adb8b..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.1/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.1 -PackageLocale: en-US -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.1/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.1/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index b5f34bebe96e4..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.1/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.1 -PackageLocale: zh-CN -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: |- - 1. 修复已知问题,提升用户体验 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.1/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.1/Bosyun.BoardMix.CN.yaml deleted file mode 100644 index 6b93c0b9d6c45..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.1/Bosyun.BoardMix.CN.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.10/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.10/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index 2c77fcf7cc85c..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.10/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.10 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2023-03-17 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_3_10.exe - InstallerSha256: E6FBB3A45AA993DB47D98B6DBBA9BDA910B914866CFED773981FF47C28CEFC61 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.10/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.10/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index b8953b6ad6b19..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.10/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.10 -PackageLocale: en-US -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 Shenzhen Pixso Technology Co., Ltd. All rights reserved -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.10/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.10/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index e3c2cfbad02d2..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.10/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.10 -PackageLocale: zh-CN -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: 修复因切换网络或网络异常导致的弹窗 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.11/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.11/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index b0a932ad2a603..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.11/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.11 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2023-03-28 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_3_11.exe - InstallerSha256: F916F2201A3E095B8D0EA6BD2B506F259704662B26324308ECD068F4E5673636 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.11/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.11/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index b95999e124569..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.11/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.11 -PackageLocale: en-US -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 Shenzhen Pixso Technology Co., Ltd. All rights reserved -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.11/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.11/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index 95d8f48a133a3..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.11/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.11 -PackageLocale: zh-CN -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: |- - 1. 菜单栏新增中英文切换 - 2. 修复网络异常时日志上报的问题 - 3. 修复编辑页中使用嵌入网页中的分屏浏览功能加载失败时导致标签页刷新 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.11/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.11/Bosyun.BoardMix.CN.yaml deleted file mode 100644 index 452c03d4cb016..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.11/Bosyun.BoardMix.CN.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.11 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.2/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.2/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index bd083e56e5fa0..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.2/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.2 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-11-30 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_3_2.exe - InstallerSha256: 2B9A68A8E27C9C873DC731883D4A2017E1CD5FFFCD1A0BDD1E54D53C42F6EF89 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.2/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.2/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 9b94087d28ced..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.2/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.2 -PackageLocale: en-US -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.2/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.2/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index a294ddf48b9c5..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.2/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.2 -PackageLocale: zh-CN -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: 1. 修复已知问题,提升用户体验 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.2/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.2/Bosyun.BoardMix.CN.yaml deleted file mode 100644 index 3d0e15d2ba54f..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.2/Bosyun.BoardMix.CN.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.3/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.3/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index addabc2a96ff9..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.3/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.3 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-12-02 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_3_3.exe - InstallerSha256: 758FEE361CECC496953B43C5797972414276F010AB2CA32E507EEF43BF54DCF5 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.3/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.3/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 28e570d025c9a..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.3/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.3 -PackageLocale: en-US -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.3/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.3/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index b1de00a5eb615..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.3/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.3 -PackageLocale: zh-CN -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: 1. BoardMix logo 换新 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.3/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.3/Bosyun.BoardMix.CN.yaml deleted file mode 100644 index 18f7fb3d14ead..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.3/Bosyun.BoardMix.CN.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.5/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.5/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index 34f2678a84d26..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.5/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.5 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-12-13 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_3_5.exe - InstallerSha256: D9F4F404BE501E661688ACA0DE61D82E8B02139BF8F7B02D66AD41C8C846C594 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.5/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.5/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 9c3c239373c4d..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.5/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.5 -PackageLocale: en-US -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.5/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.5/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index 9a00f1db4bc2d..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.5/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.5 -PackageLocale: zh-CN -Publisher: BoardMix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: BoardMix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2022 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: |- - BoardMix logo 换新 - 修复已知问题,提升用户体验 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.5/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.5/Bosyun.BoardMix.CN.yaml deleted file mode 100644 index c9d050fe508c0..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.5/Bosyun.BoardMix.CN.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-7 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.6/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.6/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index 184a06084fd80..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.6/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.6 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2023-01-14 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_3_6.exe - InstallerSha256: 4219FBAC2D0628F46910818AB38BC2F4B0586DD98D070ACF30D22C105EB62EAE - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.6/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.6/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 0ee574acd3c06..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.6/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.6 -PackageLocale: en-US -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 Shenzhen Pixso Technology Co., Ltd. All rights reserved -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.6/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.6/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index 49b7c791a2401..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.6/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.6 -PackageLocale: zh-CN -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: |- - 优化 BoardMix 品牌名称 - 日志上报增加用户信息 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.6/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.6/Bosyun.BoardMix.CN.yaml deleted file mode 100644 index 4714fd3a0d9dd..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.6/Bosyun.BoardMix.CN.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.7/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.7/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index fd183f91bd037..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.7/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.7 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2023-01-17 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_3_7.exe - InstallerSha256: E9DF44DCFC58DD6CFEADA5FD7012CCAF58512BC7DF09661668EEEAF00C9659B7 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.7/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.7/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index e574da8b62fcd..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.7/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.7 -PackageLocale: en-US -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 Shenzhen Pixso Technology Co., Ltd. All rights reserved -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.7/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.7/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index bf08a6637a63b..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.7/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.7 -PackageLocale: zh-CN -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: |- - 优化 BoardMix 品牌名称 - 日志上报增加用户信息 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.7/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.7/Bosyun.BoardMix.CN.yaml deleted file mode 100644 index 3f2f11b4cd9e2..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.7/Bosyun.BoardMix.CN.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-8 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.8/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.8/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index dcad1951f1724..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.8/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.8 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2023-03-01 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_3_8.exe - InstallerSha256: 4885D9D838229B4A31DA1C33BC5E1DD2A44B0C917D2DD0CC620B77518F41302A - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.8/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.8/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index a4452742a8b75..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.8/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.8 -PackageLocale: en-US -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 Shenzhen Pixso Technology Co., Ltd. All rights reserved -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.8/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.8/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index d5617d05c9494..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.8/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.8 -PackageLocale: zh-CN -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: |- - 顶部标签栏主题色更新 - 修复已知问题 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.8/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.8/Bosyun.BoardMix.CN.yaml deleted file mode 100644 index abe71f30707bd..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.8/Bosyun.BoardMix.CN.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-9 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.9/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.9/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index 4e20fed66910d..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.9/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.9 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2023-03-15 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_3_9.exe - InstallerSha256: CDA8B5157D07C2BB932869805D781465407C87A07392CCE03C871E27A693F908 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.9/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.9/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 0717e78cf18cb..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.9/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.9 -PackageLocale: en-US -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 Shenzhen Pixso Technology Co., Ltd. All rights reserved -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.9/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.9/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index 9b32319a82a7b..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.9/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.9 -PackageLocale: zh-CN -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: 优化因系统休眠导致的白屏问题 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.9/Bosyun.BoardMix.CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.3.9/Bosyun.BoardMix.CN.yaml deleted file mode 100644 index 27a93e8121aad..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.9/Bosyun.BoardMix.CN.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.0 using InputObject 🤖 $debug=QUSU.CRLF..7-2-10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.9 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.4.1/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.4.1/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index 6cd09c354ad29..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.4.1/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.6 $debug=QUSU.CRLF.7-3-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.4.1 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2023-05-16 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_4_1.exe - InstallerSha256: A7F962FAA77238DF251F3FD6756FBF4983A4FBC40F9EAB4B0F8403EF6A2DCB34 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.4.1/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.4.1/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 0101c31806ffb..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.4.1/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.6 $debug=QUSU.CRLF.7-3-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.4.1 -PackageLocale: en-US -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: Freeware -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 Shenzhen Pixso Technology Co., Ltd. All rights reserved -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# Agreements: -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.4.1/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.4.1/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index 89fd1d5392824..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.4.1/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.6 $debug=QUSU.CRLF.7-3-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.4.1 -PackageLocale: zh-CN -Publisher: boardmix -PublisherUrl: https://boardmix.cn/ -PublisherSupportUrl: https://boardmix.cn/help/ -PrivacyUrl: https://boardmix.cn/private-policy/ -Author: 深圳市博思云创科技有限公司 -PackageName: boardmix -PackageUrl: https://boardmix.cn/download/ -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services/ -Copyright: © 2023 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -# Agreements: -ReleaseNotes: 1. 修复已知问题,优化用户体验 -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.4.2/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.4.2/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index b9c26f3dbf3a2..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.4.2/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.9.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.4.2 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ReleaseDate: 2023-06-02 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_4_2.exe - InstallerSha256: 0D8DCDCFAD9B437C9FD44AEF8FA272609A9B4E3844BD31DEDBE3DBA427145A97 -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.4.2/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.4.2/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index e58ef432ac62b..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.4.2/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with WinGet Automation using Komac v1.9.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.4.2 -PackageLocale: en-US -Publisher: boardmix -PublisherUrl: https://boardmix.cn -PublisherSupportUrl: https://boardmix.cn/help -PrivacyUrl: https://boardmix.cn/private-policy -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: boardmix -PackageUrl: https://boardmix.cn/download -License: Freeware -LicenseUrl: https://boardmix.cn/term-services -Copyright: © 2023 Shenzhen Pixso Technology Co., Ltd. All rights reserved -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.4.2/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.4.2/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index 4a0dedc1778ba..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.4.2/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with WinGet Automation using Komac v1.9.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.4.2 -PackageLocale: zh-CN -Publisher: boardmix -PublisherUrl: https://boardmix.cn -PublisherSupportUrl: https://boardmix.cn/help -PrivacyUrl: https://boardmix.cn/private-policy -Author: 深圳市博思云创科技有限公司 -PackageName: boardmix -PackageUrl: https://boardmix.cn/download -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services -Copyright: © 2023 深圳市博思云创科技有限公司 版权所有 -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -ReleaseNotes: 1. 修复已知问题,优化用户体验 -ReleaseNotesUrl: https://boardmix.cn/releases -PurchaseUrl: https://boardmix.cn/price -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.4.3/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.4.3/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index 15d84b21e1ca2..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.4.3/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with WinGet Automation using Komac v1.10.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.4.3 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ReleaseDate: 2023-08-04 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-public.oss-accelerate.aliyuncs.com/cms/download/package/boardmix_win_1_4_3.exe - InstallerSha256: D61848357267D0C4432DE058FD0A045A029EF7A7E9CB692D1350785CC1DD389A -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.4.3/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.4.3/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 0b1d241e3219f..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.4.3/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with WinGet Automation using Komac v1.10.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.4.3 -PackageLocale: en-US -Publisher: boardmix -PublisherUrl: https://boardmix.cn -PublisherSupportUrl: https://boardmix.cn/help -PrivacyUrl: https://boardmix.cn/private-policy -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: boardmix -PackageUrl: https://boardmix.cn/download -License: Freeware -LicenseUrl: https://boardmix.cn/term-services -Copyright: © 2023 Shenzhen Pixso Technology Co., Ltd. All rights reserved -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -ReleaseNotesUrl: https://boardmix.cn/releases/ -PurchaseUrl: https://boardmix.cn/price/ -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.4.3/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.4.3/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index ad8189f469c54..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.4.3/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with WinGet Automation using Komac v1.10.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.4.3 -PackageLocale: zh-CN -Publisher: boardmix -PublisherUrl: https://boardmix.cn -PublisherSupportUrl: https://boardmix.cn/help -PrivacyUrl: https://boardmix.cn/private-policy -Author: 深圳市博思云创科技有限公司 -PackageName: boardmix -PackageUrl: https://boardmix.cn/download -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services -Copyright: © 2023 深圳市博思云创科技有限公司 版权所有 -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -ReleaseNotes: 1. 修复已知问题,优化用户体验 -ReleaseNotesUrl: https://boardmix.cn/releases -PurchaseUrl: https://boardmix.cn/price -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.5.0/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.5.0/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index 5772810562a7d..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.5.0/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.10 $debug=QUSU.CRLF.7-3-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.5.0 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2023-09-18 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-cms.oss-cn-hangzhou.aliyuncs.com/packages/download/desktop/bosyun/1.5.0/boardmix_win_1.5.0_x64.exe - InstallerSha256: 7E760F402D44EA3D7A9C29EE1B73528A205350EB05B5526529CED75DDEDF5735 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.5.0/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.5.0/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index deaeb83ef9d47..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.5.0/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.10 $debug=QUSU.CRLF.7-3-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.5.0 -PackageLocale: en-US -Publisher: boardmix -PublisherUrl: https://boardmix.cn -PublisherSupportUrl: https://boardmix.cn/help -PrivacyUrl: https://boardmix.cn/private-policy -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: boardmix -PackageUrl: https://boardmix.cn/download -License: Freeware -LicenseUrl: https://boardmix.cn/term-services -Copyright: © 2023 Shenzhen Pixso Technology Co., Ltd. All rights reserved -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.5.0/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.5.0/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index 446eff325b738..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.5.0/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.10 $debug=QUSU.CRLF.7-3-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.5.0 -PackageLocale: zh-CN -Publisher: boardmix -PublisherUrl: https://boardmix.cn -PublisherSupportUrl: https://boardmix.cn/help -PrivacyUrl: https://boardmix.cn/private-policy -Author: 深圳市博思云创科技有限公司 -PackageName: boardmix -PackageUrl: https://boardmix.cn/download -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services -Copyright: © 2023 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -ReleaseNotes: |- - 1. 升级底层框架版本 - 2. 新增故障排除功能菜单 - 3. 修复已知问题,优化用户体验 -ReleaseNotesUrl: https://boardmix.cn/releases -PurchaseUrl: https://boardmix.cn/price -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.5.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.5.1/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.5.1/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index 7ecc177389e06..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.5.1/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.10 $debug=QUSU.CRLF.7-3-9.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.5.1 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2023-11-01 -Installers: -- Architecture: x64 - InstallerUrl: https://boardmix-cms.oss-cn-hangzhou.aliyuncs.com/packages/download/desktop/bosyun/1.5.1/boardmix_win_1.5.1_x64.exe - InstallerSha256: A4A53F7621C0321918D213CD9B19AC498CAD5C889A61BB361A028014401E0030 - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.5.1/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.5.1/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 876a5983bcff2..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.5.1/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.10 $debug=QUSU.CRLF.7-3-9.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.5.1 -PackageLocale: en-US -Publisher: boardmix -PublisherUrl: https://boardmix.cn -PublisherSupportUrl: https://boardmix.cn/help -PrivacyUrl: https://boardmix.cn/private-policy -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: boardmix -PackageUrl: https://boardmix.cn/download -License: Freeware -LicenseUrl: https://boardmix.cn/term-services -Copyright: © 2023 Shenzhen Pixso Technology Co., Ltd. All rights reserved -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.5.1/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.5.1/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index 744c97e94e69c..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.5.1/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.10 $debug=QUSU.CRLF.7-3-9.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.5.1 -PackageLocale: zh-CN -Publisher: boardmix -PublisherUrl: https://boardmix.cn -PublisherSupportUrl: https://boardmix.cn/help -PrivacyUrl: https://boardmix.cn/private-policy -Author: 深圳市博思云创科技有限公司 -PackageName: boardmix -PackageUrl: https://boardmix.cn/download -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services -Copyright: © 2023 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -ReleaseNotes: 1. 优化关闭客户端设置,支持最小化客户端 -ReleaseNotesUrl: https://boardmix.cn/releases -PurchaseUrl: https://boardmix.cn/price -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.5.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.5.2/Bosyun.BoardMix.CN.installer.yaml b/manifests/b/Bosyun/BoardMix/CN/1.5.2/Bosyun.BoardMix.CN.installer.yaml deleted file mode 100644 index 8e0638578ba40..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.5.2/Bosyun.BoardMix.CN.installer.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.11 $debug=QUSU.CRLF.7-4-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.5.2 -InstallerType: nullsoft # electron-builder -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2023-12-05 -Installers: -- Architecture: x64 - InstallerUrl: https://cms-oss.boardmix.cn/packages/download/desktop/bosyun/1.5.2/boardmix_win_1.5.2_x64.exe - InstallerSha256: 77162B12C936569F4BC41A46EE75CCF9CB68CC3CB423911A1991C6C05E54248F - ProductCode: b9464f48-5337-57a6-aa1d-adc298f5233d -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.5.2/Bosyun.BoardMix.CN.locale.en-US.yaml b/manifests/b/Bosyun/BoardMix/CN/1.5.2/Bosyun.BoardMix.CN.locale.en-US.yaml deleted file mode 100644 index 8d26bcd3ca8a6..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.5.2/Bosyun.BoardMix.CN.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.11 $debug=QUSU.CRLF.7-4-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.5.2 -PackageLocale: en-US -Publisher: boardmix -PublisherUrl: https://boardmix.cn -PublisherSupportUrl: https://boardmix.cn/help -PrivacyUrl: https://boardmix.cn/private-policy -Author: Shenzhen Pixso Technology Co., Ltd. -PackageName: boardmix -PackageUrl: https://boardmix.cn/download -License: Freeware -LicenseUrl: https://boardmix.cn/term-services -Copyright: © 2023 Shenzhen Pixso Technology Co., Ltd. All rights reserved -# CopyrightUrl: -ShortDescription: Online collaborative whiteboard -Description: BoardMix is an online collaborative whiteboard that combines a variety of creative expression capabilities such as free layout, paintbrush, sticky note, multimedia presentation, mind map and document to inspire team's unlimited creativity. -# Moniker: -Tags: -- canvas -- collaborate -- collaboration -- team -- whiteboard -# ReleaseNotes: -ReleaseNotesUrl: https://boardmix.cn/releases -PurchaseUrl: https://boardmix.cn/price/ -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.5.2/Bosyun.BoardMix.CN.locale.zh-CN.yaml b/manifests/b/Bosyun/BoardMix/CN/1.5.2/Bosyun.BoardMix.CN.locale.zh-CN.yaml deleted file mode 100644 index b5509c004a914..0000000000000 --- a/manifests/b/Bosyun/BoardMix/CN/1.5.2/Bosyun.BoardMix.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.11 $debug=QUSU.CRLF.7-4-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.5.2 -PackageLocale: zh-CN -Publisher: boardmix -PublisherUrl: https://boardmix.cn -PublisherSupportUrl: https://boardmix.cn/help -PrivacyUrl: https://boardmix.cn/private-policy -Author: 深圳市博思云创科技有限公司 -PackageName: boardmix -PackageUrl: https://boardmix.cn/download -License: 免费软件 -LicenseUrl: https://boardmix.cn/term-services -Copyright: © 2023 深圳市博思云创科技有限公司 版权所有 -# CopyrightUrl: -ShortDescription: 在线协作白板 -Description: BoardMix 在线协作白板,集自由布局、画笔、便签、多媒体呈现、脑图、文档多种创意表达能力于一体,激发团队创造力无限延伸。 -# Moniker: -Tags: -- 协作 -- 协同 -- 博思白板 -- 团队 -- 画布 -- 白板 -ReleaseNotes: |- - 1. 客户端支持修改安装目录 - 2. 优化客户端埋点数据 -ReleaseNotesUrl: https://boardmix.cn/releases -PurchaseUrl: https://boardmix.cn/price -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.5.0 diff --git a/manifests/b/BrettMayson/HEMTT/1.11.1/BrettMayson.HEMTT.installer.yaml b/manifests/b/BrettMayson/HEMTT/1.11.1/BrettMayson.HEMTT.installer.yaml new file mode 100644 index 0000000000000..0a39207df61c2 --- /dev/null +++ b/manifests/b/BrettMayson/HEMTT/1.11.1/BrettMayson.HEMTT.installer.yaml @@ -0,0 +1,20 @@ +# 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: BrettMayson.HEMTT +PackageVersion: 1.11.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: hemtt.exe + PortableCommandAlias: hemtt +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2024-02-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/BrettMayson/HEMTT/releases/download/v1.11.1/windows-x64.zip + InstallerSha256: 0695A56F3DF1BF2ED126F62C3168866D6A5AE70D7E84067535182524AF1A00E1 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/BrettMayson/HEMTT/1.11.1/BrettMayson.HEMTT.locale.en-US.yaml b/manifests/b/BrettMayson/HEMTT/1.11.1/BrettMayson.HEMTT.locale.en-US.yaml new file mode 100644 index 0000000000000..e73f0d5eb76fb --- /dev/null +++ b/manifests/b/BrettMayson/HEMTT/1.11.1/BrettMayson.HEMTT.locale.en-US.yaml @@ -0,0 +1,30 @@ +# 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: BrettMayson.HEMTT +PackageVersion: 1.11.1 +PackageLocale: en-US +Publisher: BrettMayson +PublisherUrl: https://github.com/BrettMayson +PublisherSupportUrl: https://github.com/BrettMayson/HEMTT/issues +PackageName: HEMTT +PackageUrl: https://github.com/BrettMayson/HEMTT +License: GPL-2.0 license +LicenseUrl: https://github.com/BrettMayson/HEMTT/blob/main/LICENSE +ShortDescription: An opinionated build system for Arma 3 mods. +Tags: +- arma +- arma3 +- hemtt +ReleaseNotes: |- + What's Changed + - ASC - Don't copy .inc.sqf for building by @PabstMirror in #644 + - Hooks - Fix requiring .rhai (or a palindrome) + - Binarize - No longer requires tools be present, will warn if missing + - Fox not exiting status 1 in some error conditions +ReleaseNotesUrl: https://github.com/BrettMayson/HEMTT/releases/tag/v1.11.1 +Documentations: +- DocumentLabel: The HEMTT Book + DocumentUrl: https://brettmayson.github.io/HEMTT +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/BrettMayson/HEMTT/1.11.1/BrettMayson.HEMTT.yaml b/manifests/b/BrettMayson/HEMTT/1.11.1/BrettMayson.HEMTT.yaml new file mode 100644 index 0000000000000..11a0643cd710d --- /dev/null +++ b/manifests/b/BrettMayson/HEMTT/1.11.1/BrettMayson.HEMTT.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: BrettMayson.HEMTT +PackageVersion: 1.11.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/Brows/App/0.41.0.40/Brows.App.installer.yaml b/manifests/b/Brows/App/0.41.0.40/Brows.App.installer.yaml new file mode 100644 index 0000000000000..e94917029ed99 --- /dev/null +++ b/manifests/b/Brows/App/0.41.0.40/Brows.App.installer.yaml @@ -0,0 +1,13 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Brows.App +PackageVersion: 0.41.0.40 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{37CF9FED-7123-45B0-86B3-00C900DAD078}' +Installers: +- InstallerUrl: https://github.com/brows-app/brows/releases/download/v0.41.0.40/brows-x64-0.41.0.40.msi + Architecture: x64 + InstallerSha256: 348d611727acd94ff5038ce523da3ef69c55a560f8b44d3e76f27415de078a50 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/Brows/App/0.41.0.40/Brows.App.locale.en-US.yaml b/manifests/b/Brows/App/0.41.0.40/Brows.App.locale.en-US.yaml new file mode 100644 index 0000000000000..2af3982cd82c5 --- /dev/null +++ b/manifests/b/Brows/App/0.41.0.40/Brows.App.locale.en-US.yaml @@ -0,0 +1,25 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Brows.App +PackageVersion: 0.41.0.40 +PackageLocale: en-US +Publisher: Brows App +PublisherUrl: https://brows.app +PublisherSupportUrl: https://brows.app +Author: Kenneth Yourek +PackageName: Brows +PackageUrl: https://brows.app +License: GNU General Public License v3.0 +LicenseUrl: https://github.com/brows-app/brows/blob/main/LICENSE +Copyright: Copyright (C) Kenneth Yourek 2021-2024 +ShortDescription: Brows is a Windows file manager for power users. +Moniker: Brows +Tags: +- file-manager +- file-browser +- file-explorer +- ssh +- scp +- sftp +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/Brows/App/0.41.0.40/Brows.App.yaml b/manifests/b/Brows/App/0.41.0.40/Brows.App.yaml new file mode 100644 index 0000000000000..810a08d2a59fd --- /dev/null +++ b/manifests/b/Brows/App/0.41.0.40/Brows.App.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Brows.App +PackageVersion: 0.41.0.40 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/b/beeradmoore/dlss-swapper/1.0.5.0/beeradmoore.dlss-swapper.installer.yaml b/manifests/b/beeradmoore/dlss-swapper/1.0.5.0/beeradmoore.dlss-swapper.installer.yaml new file mode 100644 index 0000000000000..26ef56957b642 --- /dev/null +++ b/manifests/b/beeradmoore/dlss-swapper/1.0.5.0/beeradmoore.dlss-swapper.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: beeradmoore.dlss-swapper +PackageVersion: 1.0.5.0 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +ProductCode: DLSS Swapper +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/beeradmoore/dlss-swapper/releases/download/v1.0.5.0/DLSS.Swapper-1.0.5.0-installer.exe + InstallerSha256: DCDCA6672698CEF5CA9BBC9E9B1869CD23829B3845E6F549ECDB7E397F7C232C +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/b/beeradmoore/dlss-swapper/1.0.5.0/beeradmoore.dlss-swapper.locale.en-US.yaml b/manifests/b/beeradmoore/dlss-swapper/1.0.5.0/beeradmoore.dlss-swapper.locale.en-US.yaml new file mode 100644 index 0000000000000..4a417c1e4f810 --- /dev/null +++ b/manifests/b/beeradmoore/dlss-swapper/1.0.5.0/beeradmoore.dlss-swapper.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: beeradmoore.dlss-swapper +PackageVersion: 1.0.5.0 +PackageLocale: en-US +Publisher: beeradmoore +PublisherUrl: https://beeradmoore.com/ +PublisherSupportUrl: https://github.com/beeradmoore/dlss-swapper/issues +Author: Brad Moore +PackageName: DLSS Swapper +PackageUrl: https://github.com/beeradmoore/dlss-swapper +License: GPL-3.0 +LicenseUrl: https://github.com/beeradmoore/dlss-swapper/blob/main/LICENSE +ShortDescription: DLSS Swapper swap DLSS dlls in games. +Description: DLSS Swapper is a tool that allows you to conveniently download, manage, and swap DLSS dlls allowing you to upgrade or downgrade DLSS version in a game without the game needing an update. +Tags: +- dlss +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/beeradmoore/dlss-swapper/wiki +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/TeamViewer/TeamViewer/Host/15.48.5/TeamViewer.TeamViewer.Host.yaml b/manifests/b/beeradmoore/dlss-swapper/1.0.5.0/beeradmoore.dlss-swapper.yaml similarity index 71% rename from manifests/t/TeamViewer/TeamViewer/Host/15.48.5/TeamViewer.TeamViewer.Host.yaml rename to manifests/b/beeradmoore/dlss-swapper/1.0.5.0/beeradmoore.dlss-swapper.yaml index eed9545a5e55f..bbdc2f85c5a1b 100644 --- a/manifests/t/TeamViewer/TeamViewer/Host/15.48.5/TeamViewer.TeamViewer.Host.yaml +++ b/manifests/b/beeradmoore/dlss-swapper/1.0.5.0/beeradmoore.dlss-swapper.yaml @@ -1,8 +1,8 @@ # Created using wingetcreate 1.5.7.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json -PackageIdentifier: TeamViewer.TeamViewer.Host -PackageVersion: 15.48.5 +PackageIdentifier: beeradmoore.dlss-swapper +PackageVersion: 1.0.5.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.5.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.2.7/CCPGames.EVEOnline.installer.yaml b/manifests/c/CCPGames/EVEOnline/1.2.7/CCPGames.EVEOnline.installer.yaml new file mode 100644 index 0000000000000..8f149a3c1cb80 --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.2.7/CCPGames.EVEOnline.installer.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: 1.2.7 +InstallerType: exe +Scope: machine +InstallerSwitches: + Silent: '-' + SilentWithProgress: '-' +UpgradeBehavior: install +ReleaseDate: 2024-02-09 +Installers: +- Architecture: x64 + InstallerUrl: https://launcher.ccpgames.com/eve-online/release/win32/x64/eve-online-1.2.7+Setup.exe + InstallerSha256: 08F03189F463F025FC33C2205D61670D5159F90DF126BCBC0DEA0D24C5409C9A +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.2.7/CCPGames.EVEOnline.locale.en-US.yaml b/manifests/c/CCPGames/EVEOnline/1.2.7/CCPGames.EVEOnline.locale.en-US.yaml new file mode 100644 index 0000000000000..d15aedf63c35d --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.2.7/CCPGames.EVEOnline.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: 1.2.7 +PackageLocale: en-US +Publisher: CCP Games +PackageName: EVE Online +License: Proprietary +Copyright: Copyright © 2023 CCP Games +ShortDescription: EVE Online is a free MMORPG sci-fi strategy game where you can embark on your own unique space adventure. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.2.7/CCPGames.EVEOnline.yaml b/manifests/c/CCPGames/EVEOnline/1.2.7/CCPGames.EVEOnline.yaml new file mode 100644 index 0000000000000..03454f4351eb5 --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.2.7/CCPGames.EVEOnline.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: 1.2.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.installer.yaml b/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.installer.yaml index 0ad6d4b7de196..00755f6e911f2 100644 --- a/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.installer.yaml +++ b/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: CPUID.CPU-Z.ROG diff --git a/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.locale.en-US.yaml b/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.locale.en-US.yaml index 30c24b422bbc0..24a5a7399b3da 100644 --- a/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.locale.en-US.yaml +++ b/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: CPUID.CPU-Z.ROG diff --git a/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.yaml b/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.yaml index dc5830d63543b..979339c7a3a52 100644 --- a/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.yaml +++ b/manifests/c/CPUID/CPU-Z/ROG/2.08/CPUID.CPU-Z.ROG.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: CPUID.CPU-Z.ROG diff --git a/manifests/c/Canonical/Multipass/1.13.1/Canonical.Multipass.installer.yaml b/manifests/c/Canonical/Multipass/1.13.1/Canonical.Multipass.installer.yaml new file mode 100644 index 0000000000000..5c0fda729389c --- /dev/null +++ b/manifests/c/Canonical/Multipass/1.13.1/Canonical.Multipass.installer.yaml @@ -0,0 +1,14 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Canonical.Multipass +PackageVersion: 1.13.1 +InstallerType: nullsoft +Scope: machine +ReleaseDate: 2024-02-12 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/canonical/multipass/releases/download/v1.13.1/multipass-1.13.1+win-win64.exe + InstallerSha256: 4FF99151AEAF22909DCC7683EE1DF7288A04EF10D2EE6572D6A746FF00A8DBE4 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/Canonical/Multipass/1.13.1/Canonical.Multipass.locale.en-US.yaml b/manifests/c/Canonical/Multipass/1.13.1/Canonical.Multipass.locale.en-US.yaml new file mode 100644 index 0000000000000..721368be0cb44 --- /dev/null +++ b/manifests/c/Canonical/Multipass/1.13.1/Canonical.Multipass.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Canonical.Multipass +PackageVersion: 1.13.1 +PackageLocale: en-US +Publisher: canonical +PublisherUrl: https://canonical.com/ +PublisherSupportUrl: https://github.com/canonical/multipass/issues +PackageName: Multipass +PackageUrl: https://multipass.run/ +License: GPL-3.0 +LicenseUrl: https://github.com/canonical/multipass/blob/HEAD/LICENSE +Copyright: © 2023 Canonical Ltd +ShortDescription: A lightweight VM Manager that supports cloud-deployment simulation +Description: |- + Multipass is a lightweight VM manager for Linux, Windows and macOS. + It's designed for developers who want a fresh Ubuntu environment with a single command. + It uses KVM on Linux, Hyper-V on Windows and HyperKit on macOS to run the VM with minimal overhead. + It can also use VirtualBox on Windows and macOS. + Multipass will fetch images for you and keep them up to date. +Moniker: multipass +Tags: +- container +- multipass +ReleaseNotes: |- + This is a bug fix release addressing the following issues:- [snapshots] Rollback of failed restore wrongly applies last snapshot #3362 + - [regression] multipass aliases command throws segmentation fault #3383 + - Images used for snapcraft do not report pollinate data #3390 + - [regression] Unhandled exception when converting qcow2 images for snapshot support #3399 + On macOS only:- Instances won't start on Apple M3 silicon #3308 +ReleaseNotesUrl: https://github.com/canonical/multipass/releases/tag/v1.13.1 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/Canonical/Multipass/1.13.1/Canonical.Multipass.yaml b/manifests/c/Canonical/Multipass/1.13.1/Canonical.Multipass.yaml new file mode 100644 index 0000000000000..76b3a33a6e63d --- /dev/null +++ b/manifests/c/Canonical/Multipass/1.13.1/Canonical.Multipass.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Canonical.Multipass +PackageVersion: 1.13.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/Casey/Just/1.24.0/Casey.Just.installer.yaml b/manifests/c/Casey/Just/1.24.0/Casey.Just.installer.yaml new file mode 100644 index 0000000000000..be4572b62ceee --- /dev/null +++ b/manifests/c/Casey/Just/1.24.0/Casey.Just.installer.yaml @@ -0,0 +1,20 @@ +# Created with WinGet Updater using komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Casey.Just +PackageVersion: 1.24.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: just.exe + PortableCommandAlias: just +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/casey/just/releases/download/1.24.0/just-1.24.0-x86_64-pc-windows-msvc.zip + InstallerSha256: 325ED382221AC9189EC9BEEDCF4B97E6FC229B4E49EDE7CA36E47A5B651BB09C +- Architecture: x64 + InstallerUrl: https://github.com/casey/just/releases/download/1.24.0/just-1.24.0-x86_64-pc-windows-msvc.zip + InstallerSha256: 325ED382221AC9189EC9BEEDCF4B97E6FC229B4E49EDE7CA36E47A5B651BB09C +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/Casey/Just/1.24.0/Casey.Just.locale.en-US.yaml b/manifests/c/Casey/Just/1.24.0/Casey.Just.locale.en-US.yaml new file mode 100644 index 0000000000000..57278b6317a9e --- /dev/null +++ b/manifests/c/Casey/Just/1.24.0/Casey.Just.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with WinGet Updater using komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Casey.Just +PackageVersion: 1.24.0 +PackageLocale: en-US +Publisher: Casey Rodarmor +PublisherUrl: https://github.com/casey +PublisherSupportUrl: https://github.com/casey/just/issues +Author: Casey Rodarmor +PackageName: Just +PackageUrl: https://github.com/casey/just +License: CC0-1.0 +LicenseUrl: https://github.com/casey/just/blob/HEAD/LICENSE +ShortDescription: Just a command runner +Description: just is a handy way to save and run project-specific commands. Commands, called recipes, are stored in a file called justfile with syntax inspired by make +ReleaseNotes: |- + Added + - Support recipe paths containing :: in Bash completion script (#1863 by crdx) + - Add function to canonicalize paths (#1859) + Misc + - Document installing just on Github Actions in readme (#1867 by cclauss) + - Use unlikely-to-be-set variable name in env tests (#1882) + - Skip write_error test if running as root (#1881) + - Convert run_shebang into integration test (#1880) + - Install mdbook with cargo in CI workflow (#1877) + - Remove deprecated actions-rs/toolchain (#1874 by cclauss) + - Fix Gentoo package link (#1875 by vozbu) + - Fix typos found by codespell (#1872 by cclauss) + - Replace deprecated set-output command in Github Actions workflows (#1869 by cclauss) + - Update actions/checkout and softprops/action-gh-release (#1871 by app/dependabot) + - Keep GitHub Actions up to date with Dependabot (#1868 by cclauss) + - Add contrib directory (#1870) + - Fix install script (#1844) +ReleaseNotesUrl: https://github.com/casey/just/releases/tag/1.24.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/Casey/Just/1.24.0/Casey.Just.yaml b/manifests/c/Casey/Just/1.24.0/Casey.Just.yaml new file mode 100644 index 0000000000000..437b0c7eafa37 --- /dev/null +++ b/manifests/c/Casey/Just/1.24.0/Casey.Just.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Casey.Just +PackageVersion: 1.24.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/Cemu/Cemu/Experimental/2.0-65/Cemu.Cemu.Experimental.installer.yaml b/manifests/c/Cemu/Cemu/Experimental/2.0-65/Cemu.Cemu.Experimental.installer.yaml new file mode 100644 index 0000000000000..08eba0e80ebd2 --- /dev/null +++ b/manifests/c/Cemu/Cemu/Experimental/2.0-65/Cemu.Cemu.Experimental.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Cemu.Cemu.Experimental +PackageVersion: 2.0-65 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: Cemu_2.0-65\Cemu.exe +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/cemu-project/Cemu/releases/download/v2.0-65/cemu-2.0-65-windows-x64.zip + InstallerSha256: E59C978E4283BDFDDBC4CF1869CC5BE004EA556B2888E4FB0E6ADA2B07B7B8BA +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/Cemu/Cemu/Experimental/2.0-65/Cemu.Cemu.Experimental.locale.en-US.yaml b/manifests/c/Cemu/Cemu/Experimental/2.0-65/Cemu.Cemu.Experimental.locale.en-US.yaml new file mode 100644 index 0000000000000..99cf9794219f3 --- /dev/null +++ b/manifests/c/Cemu/Cemu/Experimental/2.0-65/Cemu.Cemu.Experimental.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Cemu.Cemu.Experimental +PackageVersion: 2.0-65 +PackageLocale: en-US +Publisher: Cemu +PackageName: Cemu (Experimental) +License: MPL-2.0 License +ShortDescription: Nintendo Wii U Emulator +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.yaml b/manifests/c/Cemu/Cemu/Experimental/2.0-65/Cemu.Cemu.Experimental.yaml similarity index 72% rename from manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.yaml rename to manifests/c/Cemu/Cemu/Experimental/2.0-65/Cemu.Cemu.Experimental.yaml index 3150c67e79b23..d05057c42d42b 100644 --- a/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.yaml +++ b/manifests/c/Cemu/Cemu/Experimental/2.0-65/Cemu.Cemu.Experimental.yaml @@ -1,8 +1,8 @@ # Created using wingetcreate 1.5.7.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json -PackageIdentifier: TeamViewer.TeamViewer -PackageVersion: 15.48.5 +PackageIdentifier: Cemu.Cemu.Experimental +PackageVersion: 2.0-65 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.5.0 diff --git a/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.installer.yaml b/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.installer.yaml index 57303be38f99c..a9c3982f68a3c 100644 --- a/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.installer.yaml +++ b/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Cimbali.pympress diff --git a/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.locale.en-US.yaml b/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.locale.en-US.yaml index 948e05fc421dd..7f1d8ea3b8f60 100644 --- a/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.locale.en-US.yaml +++ b/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Cimbali.pympress diff --git a/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.yaml b/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.yaml index a62e598b288b8..e7400ff45ac8f 100644 --- a/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.yaml +++ b/manifests/c/Cimbali/pympress/1.8.4/Cimbali.pympress.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Cimbali.pympress diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.10.4.4/Cisco.CiscoWebexMeetings.installer.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.10.4.4/Cisco.CiscoWebexMeetings.installer.yaml deleted file mode 100644 index af822e2e1077e..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.10.4.4/Cisco.CiscoWebexMeetings.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.10.4.4 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerUrl: https://akamaicdn.webex.com/client/WBXclient-41.10.4-4/webexapp.msi - InstallerSha256: E5107EB28E5713D55F04B590C01D2BA82C8FF3472404F5567053D39E853B56A6 - ProductCode: '{57C88506-7CD7-255B-FC2A-D6A5B0E5F006}' -ManifestType: installer -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.10.4.4/Cisco.CiscoWebexMeetings.locale.en-US.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.10.4.4/Cisco.CiscoWebexMeetings.locale.en-US.yaml deleted file mode 100644 index 1f09f4254c71c..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.10.4.4/Cisco.CiscoWebexMeetings.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.10.4.4 -PackageLocale: en-US -Publisher: Cisco Webex LLC -PublisherUrl: https://www.cisco.com/c/en/us/ -PublisherSupportUrl: https://help.webex.com/en-us/ -PrivacyUrl: https://www.cisco.com/c/en/us/about/legal/privacy-full.html -Author: Cisco Webex LLC -PackageName: Cisco Webex Meetings -PackageUrl: https://www.webex.com/video-conferencing -License: Proprietary -LicenseUrl: https://www.cisco.com/c/en/us/about/legal/terms-conditions.html -Copyright: © 2021 Cisco and/or its affiliates. All rights reserved. -CopyrightUrl: https://www.cisco.com/c/en/us/about/legal/terms-conditions.html -ShortDescription: Cisco Webex is the leading enterprise solution for video conferencing, online meetings, screen share, and webinars. Web conferencing, cloud calling and equipment. -Description: Cisco Webex is the leading enterprise solution for video conferencing, online meetings, screen share, and webinars. Web conferencing, cloud calling and equipment. -Moniker: webex -Tags: -- chat -- cisco -- conference -- conferencing -- meetings -- video -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -ManifestType: defaultLocale -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.10.4.4/Cisco.CiscoWebexMeetings.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.10.4.4/Cisco.CiscoWebexMeetings.yaml deleted file mode 100644 index 56b9eaa30a76f..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.10.4.4/Cisco.CiscoWebexMeetings.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.10.4.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.11.5.8/Cisco.CiscoWebexMeetings.installer.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.11.5.8/Cisco.CiscoWebexMeetings.installer.yaml deleted file mode 100644 index 801e891cf4e59..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.11.5.8/Cisco.CiscoWebexMeetings.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.11.5.8 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerUrl: https://akamaicdn.webex.com/client/WBXclient-41.11.5-8/webexapp.msi - InstallerSha256: E2ACB5645318CD5CA08FD49BE7231CC234C4EA8CA50F1F9E3A723056255E1C60 - ProductCode: '{8F5D5F97-7044-3E30-A526-508862204932}' -ManifestType: installer -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.11.5.8/Cisco.CiscoWebexMeetings.locale.en-US.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.11.5.8/Cisco.CiscoWebexMeetings.locale.en-US.yaml deleted file mode 100644 index 1551e93b1d9b3..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.11.5.8/Cisco.CiscoWebexMeetings.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.11.5.8 -PackageLocale: en-US -Publisher: Cisco Webex LLC -PublisherUrl: https://www.cisco.com/c/en/us/ -PublisherSupportUrl: https://help.webex.com/en-us/ -PrivacyUrl: https://www.cisco.com/c/en/us/about/legal/privacy-full.html -Author: Cisco Webex LLC -PackageName: Cisco Webex Meetings -PackageUrl: https://www.webex.com/video-conferencing -License: Proprietary -LicenseUrl: https://www.cisco.com/c/en/us/about/legal/terms-conditions.html -Copyright: © 2021 Cisco and/or its affiliates. All rights reserved. -CopyrightUrl: https://www.cisco.com/c/en/us/about/legal/terms-conditions.html -ShortDescription: Cisco Webex is the leading enterprise solution for video conferencing, online meetings, screen share, and webinars. Web conferencing, cloud calling and equipment. -Description: Cisco Webex is the leading enterprise solution for video conferencing, online meetings, screen share, and webinars. Web conferencing, cloud calling and equipment. -Moniker: webex -Tags: -- chat -- cisco -- conference -- conferencing -- meetings -- video -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -ManifestType: defaultLocale -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.11.5.8/Cisco.CiscoWebexMeetings.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.11.5.8/Cisco.CiscoWebexMeetings.yaml deleted file mode 100644 index ff24d7699011a..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.11.5.8/Cisco.CiscoWebexMeetings.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.11.5.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.12.3.11/Cisco.CiscoWebexMeetings.installer.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.12.3.11/Cisco.CiscoWebexMeetings.installer.yaml deleted file mode 100644 index c7369af0dd10e..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.12.3.11/Cisco.CiscoWebexMeetings.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.12.3.11 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerUrl: https://akamaicdn.webex.com/client/WBXclient-41.12.3-11/webexapp.msi - InstallerSha256: AB9F754DAC6C6018BF3420A5DDCE2498FC25A15FA10EE8A9C23EA5A9BD0F9E16 - ProductCode: '{CF03DC24-8580-FD23-D663-C45516CF5FFC}' -ManifestType: installer -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.12.3.11/Cisco.CiscoWebexMeetings.locale.en-US.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.12.3.11/Cisco.CiscoWebexMeetings.locale.en-US.yaml deleted file mode 100644 index 27f58781d3422..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.12.3.11/Cisco.CiscoWebexMeetings.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.12.3.11 -PackageLocale: en-US -Publisher: Cisco Webex LLC -PublisherUrl: https://www.cisco.com/c/en/us/ -PublisherSupportUrl: https://help.webex.com/en-us/ -PrivacyUrl: https://www.cisco.com/c/en/us/about/legal/privacy-full.html -Author: Cisco Webex LLC -PackageName: Cisco Webex Meetings -PackageUrl: https://www.webex.com/video-conferencing -License: Proprietary -LicenseUrl: https://www.cisco.com/c/en/us/about/legal/terms-conditions.html -Copyright: © 2021 Cisco and/or its affiliates. All rights reserved. -CopyrightUrl: https://www.cisco.com/c/en/us/about/legal/terms-conditions.html -ShortDescription: Cisco Webex is the leading enterprise solution for video conferencing, online meetings, screen share, and webinars. Web conferencing, cloud calling and equipment. -Description: Cisco Webex is the leading enterprise solution for video conferencing, online meetings, screen share, and webinars. Web conferencing, cloud calling and equipment. -Moniker: webex -Tags: -- chat -- cisco -- conference -- conferencing -- meetings -- video -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -ManifestType: defaultLocale -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.12.3.11/Cisco.CiscoWebexMeetings.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.12.3.11/Cisco.CiscoWebexMeetings.yaml deleted file mode 100644 index e82d16ed0119d..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.12.3.11/Cisco.CiscoWebexMeetings.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.12.3.11 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.3.3.8/Cisco.CiscoWebexMeetings.installer.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.3.3.8/Cisco.CiscoWebexMeetings.installer.yaml deleted file mode 100644 index c3c24271229ec..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.3.3.8/Cisco.CiscoWebexMeetings.installer.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.3.3.8 -MinimumOSVersion: 10.0.0.0 -InstallerType: wix -Installers: -- Architecture: x64 - InstallerUrl: https://akamaicdn.webex.com/client/WBXclient-41.3.3-8/webexapp.msi - InstallerSha256: BC627D1CEE755B5094A7B4C12806779EB02D3DC1C1B88EF4E653563D79F433DD - ProductCode: '{C76FB7FA-4896-0ABC-4430-054AD4458E74}' -ManifestType: installer -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.3.3.8/Cisco.CiscoWebexMeetings.locale.en-US.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.3.3.8/Cisco.CiscoWebexMeetings.locale.en-US.yaml deleted file mode 100644 index 532c25ffdd691..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.3.3.8/Cisco.CiscoWebexMeetings.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.3.3.8 -PackageLocale: en-US -Publisher: Cisco Webex LLC -PublisherUrl: https://www.cisco.com/c/en/us/ -PublisherSupportUrl: https://help.webex.com/en-us/ -PrivacyUrl: https://www.cisco.com/c/en/us/about/legal/privacy-full.html -Author: Cisco Webex LLC -PackageName: Cisco Webex Meetings -PackageUrl: https://www.webex.com/video-conferencing -License: Proprietary -LicenseUrl: https://www.cisco.com/c/en/us/about/legal/terms-conditions.html -Copyright: © 2021 Cisco and/or its affiliates. All rights reserved. -CopyrightUrl: https://www.cisco.com/c/en/us/about/legal/terms-conditions.html -ShortDescription: Cisco Webex is the leading enterprise solution for video conferencing, online meetings, screen share, and webinars. Web conferencing, cloud calling and equipment. -# Description: -Moniker: webex -Tags: -- chat -- cisco -- meetings -- video -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -ManifestType: defaultLocale -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.3.3.8/Cisco.CiscoWebexMeetings.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.3.3.8/Cisco.CiscoWebexMeetings.yaml deleted file mode 100644 index b7945831a4c3e..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.3.3.8/Cisco.CiscoWebexMeetings.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.3.3.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.7.5.15/Cisco.CiscoWebexMeetings.installer.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.7.5.15/Cisco.CiscoWebexMeetings.installer.yaml deleted file mode 100644 index 8e030dcdd2a77..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.7.5.15/Cisco.CiscoWebexMeetings.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.7.5.15 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.0.0 -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Installers: -- Architecture: x64 - InstallerUrl: https://akamaicdn.webex.com/client/WBXclient-41.7.5-15/webexapp.msi - InstallerSha256: C24392983749CD9E9F3205FC4FA4A4268D42127498A9169D9DE2821600150BE0 - ProductCode: '{8180367E-1333-2463-5CF8-2787BD406C69}' -ManifestType: installer -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.7.5.15/Cisco.CiscoWebexMeetings.locale.en-US.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.7.5.15/Cisco.CiscoWebexMeetings.locale.en-US.yaml deleted file mode 100644 index 25f39d3d10af4..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.7.5.15/Cisco.CiscoWebexMeetings.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.7.5.15 -PackageLocale: en-US -Publisher: Cisco Webex LLC -PublisherUrl: https://www.cisco.com/c/en/us/ -PublisherSupportUrl: https://help.webex.com/en-us/ -PrivacyUrl: https://www.cisco.com/c/en/us/about/legal/privacy-full.html -Author: Cisco Webex LLC -PackageName: Cisco Webex Meetings -PackageUrl: https://www.webex.com/video-conferencing -License: Proprietary -LicenseUrl: https://www.cisco.com/c/en/us/about/legal/terms-conditions.html -Copyright: © 2021 Cisco and/or its affiliates. All rights reserved. -CopyrightUrl: https://www.cisco.com/c/en/us/about/legal/terms-conditions.html -ShortDescription: Cisco Webex is the leading enterprise solution for video conferencing, online meetings, screen share, and webinars. Web conferencing, cloud calling and equipment. -Description: Cisco Webex is the leading enterprise solution for video conferencing, online meetings, screen share, and webinars. Web conferencing, cloud calling and equipment. -Moniker: webex -Tags: -- chat -- cisco -- conference -- conferencing -- meetings -- video -# Agreements: -# ReleaseNotes: -# ReleaseNotesUrl: -ManifestType: defaultLocale -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/CiscoWebexMeetings/41.7.5.15/Cisco.CiscoWebexMeetings.yaml b/manifests/c/Cisco/CiscoWebexMeetings/41.7.5.15/Cisco.CiscoWebexMeetings.yaml deleted file mode 100644 index a11baa2e1933a..0000000000000 --- a/manifests/c/Cisco/CiscoWebexMeetings/41.7.5.15/Cisco.CiscoWebexMeetings.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.0.6 $debug=AUSU.7-2-1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.1.0.schema.json - -PackageIdentifier: Cisco.CiscoWebexMeetings -PackageVersion: 41.7.5.15 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.1.0 diff --git a/manifests/c/Cisco/WebexTeams/44.2.0.28714/Cisco.WebexTeams.installer.yaml b/manifests/c/Cisco/WebexTeams/44.2.0.28714/Cisco.WebexTeams.installer.yaml new file mode 100644 index 0000000000000..67a8914929d82 --- /dev/null +++ b/manifests/c/Cisco/WebexTeams/44.2.0.28714/Cisco.WebexTeams.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Cisco.WebexTeams +PackageVersion: 44.2.0.28714 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{AE6467CA-68A7-5211-A0A2-15803910CD6C}' +AppsAndFeaturesEntries: +- UpgradeCode: '{6FE30B47-2577-43AD-9095-1861BA25889B}' +Installers: +- Architecture: x64 + InstallerUrl: https://binaries.webex.com/WebexTeamsDesktop-Windows-Gold/Webex.msi + InstallerSha256: 006756A88AA35EB08B4E059C5D3C86FF3B6E8139A41F1C27A9A5A2515D780607 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/Cisco/WebexTeams/44.2.0.28714/Cisco.WebexTeams.locale.en-US.yaml b/manifests/c/Cisco/WebexTeams/44.2.0.28714/Cisco.WebexTeams.locale.en-US.yaml new file mode 100644 index 0000000000000..df9a308a55bf3 --- /dev/null +++ b/manifests/c/Cisco/WebexTeams/44.2.0.28714/Cisco.WebexTeams.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Cisco.WebexTeams +PackageVersion: 44.2.0.28714 +PackageLocale: en-US +Publisher: Cisco Systems, Inc +PublisherSupportUrl: https://help.webex.com/contact +PackageName: Webex +PackageUrl: https://www.webex.com +License: Proprietary +Copyright: (c) 2021 Cisco and/or its affiliates. All rights reserved. +ShortDescription: In-person or afar, Webex brings everyone together to do exceptional work. +Moniker: webex +Tags: +- chat +- cisco +- teams +- video +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/Cisco/WebexTeams/44.2.0.28714/Cisco.WebexTeams.yaml b/manifests/c/Cisco/WebexTeams/44.2.0.28714/Cisco.WebexTeams.yaml new file mode 100644 index 0000000000000..70a70ae3832ef --- /dev/null +++ b/manifests/c/Cisco/WebexTeams/44.2.0.28714/Cisco.WebexTeams.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Cisco.WebexTeams +PackageVersion: 44.2.0.28714 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/Cloudflare/cloudflared/2024.2.0/Cloudflare.cloudflared.installer.yaml b/manifests/c/Cloudflare/cloudflared/2024.2.0/Cloudflare.cloudflared.installer.yaml new file mode 100644 index 0000000000000..3029d1effd288 --- /dev/null +++ b/manifests/c/Cloudflare/cloudflared/2024.2.0/Cloudflare.cloudflared.installer.yaml @@ -0,0 +1,21 @@ +# Created with Komac v1.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Cloudflare.cloudflared +PackageVersion: 2024.2.0 +InstallerLocale: en-US +InstallerType: msi +ReleaseDate: 2024-02-08 +AppsAndFeaturesEntries: +- UpgradeCode: '{23f90fdd-9328-47ea-ab52-5380855a4b12}' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/cloudflare/cloudflared/releases/download/2024.2.0/cloudflared-windows-386.msi + InstallerSha256: 1CF6A892EF266D53A97478938DE172D9C512B04A2F66F9C948276511E3CA151A + ProductCode: '{2F865E86-2708-4716-B6B2-CA76401A568E}' +- Architecture: x64 + InstallerUrl: https://github.com/cloudflare/cloudflared/releases/download/2024.2.0/cloudflared-windows-amd64.msi + InstallerSha256: 06A5D406F4585E229E37CAD5FD1390E5E5D1BC619C8DC9DE32D106A394C30CCE + ProductCode: '{F7E22810-362B-41D6-A8D9-B88411A7130E}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/Cloudflare/cloudflared/2024.2.0/Cloudflare.cloudflared.locale.en-US.yaml b/manifests/c/Cloudflare/cloudflared/2024.2.0/Cloudflare.cloudflared.locale.en-US.yaml new file mode 100644 index 0000000000000..8438217bfde64 --- /dev/null +++ b/manifests/c/Cloudflare/cloudflared/2024.2.0/Cloudflare.cloudflared.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created with Komac v1.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Cloudflare.cloudflared +PackageVersion: 2024.2.0 +PackageLocale: en-US +Publisher: cloudflare +PublisherUrl: https://github.com/cloudflare/cloudflared +PublisherSupportUrl: https://github.com/cloudflare/cloudflared/issues +Author: cloudflare +PackageName: cloudflared +PackageUrl: https://github.com/cloudflare/cloudflared +License: APACHE-2.0 +LicenseUrl: https://github.com/cloudflare/cloudflared/blob/master/LICENSE +Copyright: Copyright (c) cloudflare +CopyrightUrl: https://github.com/cloudflare/cloudflared/blob/master/LICENSE +ShortDescription: Cloudflare Tunnel client +Moniker: cloudflared +ReleaseNotesUrl: https://github.com/cloudflare/cloudflared/releases/tag/2024.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/Cloudflare/cloudflared/2024.2.0/Cloudflare.cloudflared.yaml b/manifests/c/Cloudflare/cloudflared/2024.2.0/Cloudflare.cloudflared.yaml new file mode 100644 index 0000000000000..4717cca7f3df7 --- /dev/null +++ b/manifests/c/Cloudflare/cloudflared/2024.2.0/Cloudflare.cloudflared.yaml @@ -0,0 +1,8 @@ +# Created with Komac v1.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Cloudflare.cloudflared +PackageVersion: 2024.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/Cockos/REAPER/7.10/Cockos.REAPER.installer.yaml b/manifests/c/Cockos/REAPER/7.10/Cockos.REAPER.installer.yaml new file mode 100644 index 0000000000000..32b573e0c1042 --- /dev/null +++ b/manifests/c/Cockos/REAPER/7.10/Cockos.REAPER.installer.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Cockos.REAPER +PackageVersion: "7.10" +Platform: +- Windows.Desktop +MinimumOSVersion: 5.1.0.0 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +InstallerSuccessCodes: +- 1223 +UpgradeBehavior: install +ProductCode: REAPER +AppsAndFeaturesEntries: +- DisplayName: REAPER +Installers: +- Architecture: x86 + InstallerUrl: https://www.reaper.fm/files/7.x/reaper710-install.exe + InstallerSha256: 5AE2CDEF3672439A4E7EB3170029F30AC5A3DCF3AA712B1DEDD83386094332E2 +- Architecture: x64 + InstallerUrl: https://www.reaper.fm/files/7.x/reaper710_x64-install.exe + InstallerSha256: D300F20EEA5BBF253698A45C079909C15705AF0474310D963424650FC15B85FB +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/Cockos/REAPER/7.10/Cockos.REAPER.locale.en-US.yaml b/manifests/c/Cockos/REAPER/7.10/Cockos.REAPER.locale.en-US.yaml new file mode 100644 index 0000000000000..237babc94d8a7 --- /dev/null +++ b/manifests/c/Cockos/REAPER/7.10/Cockos.REAPER.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Cockos.REAPER +PackageVersion: "7.10" +PackageLocale: en-US +Publisher: Cockos Incorporated +PublisherUrl: https://www.cockos.com/ +Author: Cockos Incorporated +PackageName: REAPER +PackageUrl: https://www.reaper.fm/ +License: Proprietary +Copyright: Copyright (c) 2005-2022 Cockos Incorporated +ShortDescription: REAPER is a digital audio production application, offering full multitrack audio and MIDI recording, processing, editing, mixing and mastering toolset. +Moniker: reaper +Tags: +- audio +- audio-editor +- audio-mixer +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/Cockos/REAPER/7.10/Cockos.REAPER.yaml b/manifests/c/Cockos/REAPER/7.10/Cockos.REAPER.yaml new file mode 100644 index 0000000000000..fa0326c9caf87 --- /dev/null +++ b/manifests/c/Cockos/REAPER/7.10/Cockos.REAPER.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Cockos.REAPER +PackageVersion: "7.10" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/Cockos/REAPER/7.11/Cockos.REAPER.installer.yaml b/manifests/c/Cockos/REAPER/7.11/Cockos.REAPER.installer.yaml new file mode 100644 index 0000000000000..055ee4bcee8d8 --- /dev/null +++ b/manifests/c/Cockos/REAPER/7.11/Cockos.REAPER.installer.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Cockos.REAPER +PackageVersion: "7.11" +Platform: +- Windows.Desktop +MinimumOSVersion: 5.1.0.0 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +InstallerSuccessCodes: +- 1223 +UpgradeBehavior: install +ProductCode: REAPER +AppsAndFeaturesEntries: +- DisplayName: REAPER +Installers: +- Architecture: x86 + InstallerUrl: https://www.reaper.fm/files/7.x/reaper711-install.exe + InstallerSha256: 2DBB6DF8B2135BF599D8D710E2718608E7B8679C93E89C48BF5C63B2E6FE16C6 +- Architecture: x64 + InstallerUrl: https://www.reaper.fm/files/7.x/reaper711_x64-install.exe + InstallerSha256: A12AF2B43A1FB6B334AD3883A5EDDF6CDF5011CCF7F954AC678A6349B0BC3039 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/Cockos/REAPER/7.11/Cockos.REAPER.locale.en-US.yaml b/manifests/c/Cockos/REAPER/7.11/Cockos.REAPER.locale.en-US.yaml new file mode 100644 index 0000000000000..e2a42d5f6f8ad --- /dev/null +++ b/manifests/c/Cockos/REAPER/7.11/Cockos.REAPER.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Cockos.REAPER +PackageVersion: "7.11" +PackageLocale: en-US +Publisher: Cockos Incorporated +PublisherUrl: https://www.cockos.com/ +Author: Cockos Incorporated +PackageName: REAPER +PackageUrl: https://www.reaper.fm/ +License: Proprietary +Copyright: Copyright (c) 2005-2022 Cockos Incorporated +ShortDescription: REAPER is a digital audio production application, offering full multitrack audio and MIDI recording, processing, editing, mixing and mastering toolset. +Moniker: reaper +Tags: +- audio +- audio-editor +- audio-mixer +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/Cockos/REAPER/7.11/Cockos.REAPER.yaml b/manifests/c/Cockos/REAPER/7.11/Cockos.REAPER.yaml new file mode 100644 index 0000000000000..0c06639c5bb3c --- /dev/null +++ b/manifests/c/Cockos/REAPER/7.11/Cockos.REAPER.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Cockos.REAPER +PackageVersion: "7.11" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.installer.yaml b/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.installer.yaml index 5e8ba31b1fc94..a65e9b9d04a97 100644 --- a/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.installer.yaml +++ b/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: ColdTurkeySoftware.ColdTurkeyBlocker diff --git a/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.locale.en-US.yaml b/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.locale.en-US.yaml index 6fc59da2dc081..72db5ac346394 100644 --- a/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.locale.en-US.yaml +++ b/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: ColdTurkeySoftware.ColdTurkeyBlocker diff --git a/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.yaml b/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.yaml index 47e5a8c811722..d55fd4dd6abd1 100644 --- a/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.yaml +++ b/manifests/c/ColdTurkeySoftware/ColdTurkeyBlocker/4.5/ColdTurkeySoftware.ColdTurkeyBlocker.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: ColdTurkeySoftware.ColdTurkeyBlocker diff --git a/manifests/c/Coloryr/ColorMC/1.24/Coloryr.ColorMC.installer.yaml b/manifests/c/Coloryr/ColorMC/1.24/Coloryr.ColorMC.installer.yaml new file mode 100644 index 0000000000000..cfd837180b2d3 --- /dev/null +++ b/manifests/c/Coloryr/ColorMC/1.24/Coloryr.ColorMC.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.installer.1.6.0.json + +PackageIdentifier: Coloryr.ColorMC +PackageVersion: "1.24" +InstallerLocale: zh-CN +InstallerType: wix +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /quiet +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Coloryr/ColorMC/releases/download/A24/colormc-x64.msi + InstallerSha256: 87B2301B0BF2BC783ED9022B25D72A0F20849A21580A3740FBC183315C13F51F + ProductCode: '{BA2749D2-BBA4-4ACE-8E06-C4E111C43C1A}' +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/c/Coloryr/ColorMC/1.24/Coloryr.ColorMC.locale.zh-CN.yaml b/manifests/c/Coloryr/ColorMC/1.24/Coloryr.ColorMC.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9efad5a6ad20b --- /dev/null +++ b/manifests/c/Coloryr/ColorMC/1.24/Coloryr.ColorMC.locale.zh-CN.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.defaultLocale.1.6.0.json + +PackageIdentifier: Coloryr.ColorMC +PackageVersion: "1.24" +PackageLocale: zh-CN +Publisher: Coloryr +PublisherUrl: https://github.com/Coloryr/ColorMC +PublisherSupportUrl: https://github.com/Coloryr/ColorMC +PrivacyUrl: https://github.com/Coloryr/ColorMC +Author: Coloryr +PackageName: ColorMC +PackageUrl: https://colormc.coloryr.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/Coloryr/ColorMC?tab=Apache-2.0-1-ov-file#readme +Copyright: Copyright (c) Coloryr +# CopyrightUrl: +ShortDescription: A Minecraft Launcher +Description: 全新的Minecraft PC启动器 +Moniker: colormc +Tags: +- curseforge +- fabric +- forge +- game +- launcher +- live2d +- mc +- mcmod +- minecraft +- modrinth +- quilt +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/c/Coloryr/ColorMC/1.24/Coloryr.ColorMC.yaml b/manifests/c/Coloryr/ColorMC/1.24/Coloryr.ColorMC.yaml new file mode 100644 index 0000000000000..e338ae61e6ba0 --- /dev/null +++ b/manifests/c/Coloryr/ColorMC/1.24/Coloryr.ColorMC.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.version.1.6.0.json + +PackageIdentifier: Coloryr.ColorMC +PackageVersion: "1.24" +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/c/Corsair/iCUE/5/5.11.96/Corsair.iCUE.5.installer.yaml b/manifests/c/Corsair/iCUE/5/5.11.96/Corsair.iCUE.5.installer.yaml new file mode 100644 index 0000000000000..5e3cf8f08532e --- /dev/null +++ b/manifests/c/Corsair/iCUE/5/5.11.96/Corsair.iCUE.5.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Corsair.iCUE.5 +PackageVersion: 5.11.96 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --quiet + SilentWithProgress: --quiet +UpgradeBehavior: install +ReleaseDate: 2024-02-07 +Installers: +- Architecture: x64 + InstallerUrl: https://www3.corsair.com/software/CUE_V5/public/modules/windows/installer/Install%20iCUE.exe + InstallerSha256: 033070FA5091440B269CF771090CBB3C13730A4FBE74F20C249F967E6C6FE3C4 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/Corsair/iCUE/5/5.11.96/Corsair.iCUE.5.locale.en-US.yaml b/manifests/c/Corsair/iCUE/5/5.11.96/Corsair.iCUE.5.locale.en-US.yaml new file mode 100644 index 0000000000000..20585ab9e5aec --- /dev/null +++ b/manifests/c/Corsair/iCUE/5/5.11.96/Corsair.iCUE.5.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Corsair.iCUE.5 +PackageVersion: 5.11.96 +PackageLocale: en-US +Publisher: Corsair +PublisherUrl: https://www.corsair.com/ +PublisherSupportUrl: https://help.corsair.com/ +PrivacyUrl: https://www.corsair.com/eu/en/privacy-policy +Author: Corsair +PackageName: Corsair iCUE5 Software +PackageUrl: https://www.corsair.com/us/en/icue +License: Proprietary +LicenseUrl: https://www.corsair.com/us/en/terms-of-use +Copyright: Copyright © 1996-2024 CORSAIR. All rights reserved. +CopyrightUrl: https://www.corsair.com/us/en/terms-of-use +ShortDescription: iCUE unites all of your compatible CORSAIR components and devices, making your PC greater than the sum of its parts. +Description: |- + iCUE’s single intuitive interface links together supported CORSAIR products, allowing you to quickly and easily fine-tune your settings. + Supported CORSAIR keyboards and mice are fully programmable with macros or key remaps, letting you specify a button or click to do anything from instant shortcuts to complex strings of commands. + iCUE’s robust level of customization helps you create, write, and play faster and more efficiently. +Moniker: icue5 +Tags: +- driver +- gaming +- headset +- keyboard +- monitor +- mouse +- rgb +- utility +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/Corsair/iCUE/5/5.11.96/Corsair.iCUE.5.yaml b/manifests/c/Corsair/iCUE/5/5.11.96/Corsair.iCUE.5.yaml new file mode 100644 index 0000000000000..586ee1a39a9ab --- /dev/null +++ b/manifests/c/Corsair/iCUE/5/5.11.96/Corsair.iCUE.5.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Corsair.iCUE.5 +PackageVersion: 5.11.96 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/c/creativeprojects/resticprofile/0.25.0/creativeprojects.resticprofile.installer.yaml b/manifests/c/creativeprojects/resticprofile/0.25.0/creativeprojects.resticprofile.installer.yaml new file mode 100644 index 0000000000000..2d692595b5122 --- /dev/null +++ b/manifests/c/creativeprojects/resticprofile/0.25.0/creativeprojects.resticprofile.installer.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: creativeprojects.resticprofile +PackageVersion: 0.25.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: resticprofile.exe + PortableCommandAlias: resticprofile +Commands: +- resticprofile +ReleaseDate: 2024-02-08 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/creativeprojects/resticprofile/releases/download/v0.25.0/resticprofile_0.25.0_windows_386.zip + InstallerSha256: 8E0957F2E727FD6678926C3F3AADBD553F9A5441F0D525158B0874ADD26E243A +- Architecture: x64 + InstallerUrl: https://github.com/creativeprojects/resticprofile/releases/download/v0.25.0/resticprofile_0.25.0_windows_amd64.zip + InstallerSha256: D6CE4051F453C37AB9FDD6661AD4EBC581560DA093D61B09F151D745796BE663 +- Architecture: arm64 + InstallerUrl: https://github.com/creativeprojects/resticprofile/releases/download/v0.25.0/resticprofile_0.25.0_windows_arm64.zip + InstallerSha256: E916A6013BDFF83E3C01E93712ABB6473AB78DA387B8D12F651F176A46298941 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/c/creativeprojects/resticprofile/0.25.0/creativeprojects.resticprofile.locale.en-US.yaml b/manifests/c/creativeprojects/resticprofile/0.25.0/creativeprojects.resticprofile.locale.en-US.yaml new file mode 100644 index 0000000000000..860af15a47eb6 --- /dev/null +++ b/manifests/c/creativeprojects/resticprofile/0.25.0/creativeprojects.resticprofile.locale.en-US.yaml @@ -0,0 +1,56 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: creativeprojects.resticprofile +PackageVersion: 0.25.0 +PackageLocale: en-US +Publisher: creativeprojects +PublisherUrl: https://creativeprojects.tech/ +PublisherSupportUrl: https://github.com/creativeprojects/resticprofile/issues +Author: Fred +PackageName: resticprofile +PackageUrl: https://creativeprojects.github.io/resticprofile +License: GPL-3.0 +LicenseUrl: https://github.com/creativeprojects/resticprofile/blob/HEAD/LICENSE +ShortDescription: Configuration profiles manager and scheduler for restic backup +Moniker: resticprofile +Tags: +- backup +- restic +ReleaseNotes: |- + 💖 February release 💝 + ⚠️ Potential breaking change + The prometheus library used to send metrics to the proxy using protobuf. + By default it's now using the more widely used text format.If you have any issue sending metrics to your proxy, you can revert to the previous behaviour by adding this option to your profile (it's not a global option) + + my_profile: + prometheus-push-format: protobuf + + More information about the different formats: https://prometheus.io/docs/instrumenting/exposition_formats/#exposition-formatsNew in this version + - fix for CVE-2023-48795 + - new option prometheus-push-format with values text or protobuf (#281) + - new option to set log output in global section (#277) + - more control over the default systemd service files (#267) + - and bug fixes! + Thanks to all our contributors for the good work!Changelog + - 765c2af Add prometheus-push-format to allow selecting text format (#281) + - ae9554a Pass context to own commands and profile runner (#280) + - fccc05b Remove rclone binary in make clean target (#283) + - 0871d28 Trying new configuration for CodeQL (#306) + - 1317f60 Upgrade packages (#307) + - 63f8faf chore: prep next release & allow deployment to fail on PR + - 3d72803 chore: various fixes (#285) + - 952380f doc: add information about windows path in variables + - f346571 doc: add various missing information (#278) + - 1b3292c logging: allow to setup default log output in global (#277) + - 99484bf macOS: create LaunchAgents folder if it doesn't exist + - 37dcf84 profile: support source with "-" (dash) prefix (#276) + - a1b7840 systemd drop-ins support, option to wait for network-online.target (#267) +ReleaseNotesUrl: https://github.com/creativeprojects/resticprofile/releases/tag/v0.25.0 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://creativeprojects.github.io/resticprofile +- DocumentLabel: Restic documentation + DocumentUrl: https://restic.readthedocs.io/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/c/creativeprojects/resticprofile/0.25.0/creativeprojects.resticprofile.yaml b/manifests/c/creativeprojects/resticprofile/0.25.0/creativeprojects.resticprofile.yaml new file mode 100644 index 0000000000000..f1eb837f32fc9 --- /dev/null +++ b/manifests/c/creativeprojects/resticprofile/0.25.0/creativeprojects.resticprofile.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: creativeprojects.resticprofile +PackageVersion: 0.25.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/DanSmith/Chirp-next/20240208/DanSmith.Chirp-next.installer.yaml b/manifests/d/DanSmith/Chirp-next/20240208/DanSmith.Chirp-next.installer.yaml new file mode 100644 index 0000000000000..6c3d106029d2e --- /dev/null +++ b/manifests/d/DanSmith/Chirp-next/20240208/DanSmith.Chirp-next.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: DanSmith.Chirp-next +PackageVersion: "20240208" +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://trac.chirp.danplanet.com/chirp_next/next-20240208/chirp-next-20240208-installer.exe + InstallerSha256: 33AD4CF0A2F201E12802344773EF8BC79D896F9EC9945C0FBD2BD15312FA1917 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/DanSmith/Chirp-next/20240208/DanSmith.Chirp-next.locale.en-US.yaml b/manifests/d/DanSmith/Chirp-next/20240208/DanSmith.Chirp-next.locale.en-US.yaml new file mode 100644 index 0000000000000..57cd74cafd3c8 --- /dev/null +++ b/manifests/d/DanSmith/Chirp-next/20240208/DanSmith.Chirp-next.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: DanSmith.Chirp-next +PackageVersion: "20240208" +PackageLocale: en-US +Publisher: Dan Smith +PackageName: Chirp-next +License: GPL-3.0 +ShortDescription: CHIRP is a free, open-source tool for programming your radio. It supports a large number of manufacturers and models, as well as provides a way to interface with multiple data sources and formats. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/DanSmith/Chirp-next/20240208/DanSmith.Chirp-next.yaml b/manifests/d/DanSmith/Chirp-next/20240208/DanSmith.Chirp-next.yaml new file mode 100644 index 0000000000000..fbf342f735176 --- /dev/null +++ b/manifests/d/DanSmith/Chirp-next/20240208/DanSmith.Chirp-next.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: DanSmith.Chirp-next +PackageVersion: "20240208" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/DanielMcGuireCorporation/MathBotCLI/3.2.1/DanielMcGuireCorporation.MathBotCLI.installer.yaml b/manifests/d/DanielMcGuireCorporation/MathBotCLI/3.2.1/DanielMcGuireCorporation.MathBotCLI.installer.yaml new file mode 100644 index 0000000000000..7242d29af054c --- /dev/null +++ b/manifests/d/DanielMcGuireCorporation/MathBotCLI/3.2.1/DanielMcGuireCorporation.MathBotCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: DanielMcGuireCorporation.MathBotCLI +PackageVersion: 3.2.1 +InstallerType: nullsoft +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Daniel-McGuire-Corporation/MathBotCLI/releases/download/v3.2.1/MathBotCLISetup.exe + InstallerSha256: 4AE90731F49157CEA0899EB41E909AEB61DAACA0F10C82E4619A26B0F15F677B + AppsAndFeaturesEntries: + - Publisher: '"Daniel McGuire Corporation"' + DisplayVersion: '"3.2.1.15"' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/DanielMcGuireCorporation/MathBotCLI/3.2.1/DanielMcGuireCorporation.MathBotCLI.locale.en-US.yaml b/manifests/d/DanielMcGuireCorporation/MathBotCLI/3.2.1/DanielMcGuireCorporation.MathBotCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..4acb37d31b634 --- /dev/null +++ b/manifests/d/DanielMcGuireCorporation/MathBotCLI/3.2.1/DanielMcGuireCorporation.MathBotCLI.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: DanielMcGuireCorporation.MathBotCLI +PackageVersion: 3.2.1 +PackageLocale: en-US +Publisher: Daniel McGuire Corporation +PackageName: MathBotCLI +License: MIT License +Copyright: Daniel McGuire Corporation +ShortDescription: Command Line Calculator +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/DanielMcGuireCorporation/MathBotCLI/3.2.1/DanielMcGuireCorporation.MathBotCLI.yaml b/manifests/d/DanielMcGuireCorporation/MathBotCLI/3.2.1/DanielMcGuireCorporation.MathBotCLI.yaml new file mode 100644 index 0000000000000..5eadd442dab70 --- /dev/null +++ b/manifests/d/DanielMcGuireCorporation/MathBotCLI/3.2.1/DanielMcGuireCorporation.MathBotCLI.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: DanielMcGuireCorporation.MathBotCLI +PackageVersion: 3.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/DanielMcGuireCorporation/SimpleBrowser/2.4.0/DanielMcGuireCorporation.SimpleBrowser.installer.yaml b/manifests/d/DanielMcGuireCorporation/SimpleBrowser/2.4.0/DanielMcGuireCorporation.SimpleBrowser.installer.yaml new file mode 100644 index 0000000000000..2b3b5e3ac966a --- /dev/null +++ b/manifests/d/DanielMcGuireCorporation/SimpleBrowser/2.4.0/DanielMcGuireCorporation.SimpleBrowser.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: DanielMcGuireCorporation.SimpleBrowser +PackageVersion: 2.4.0 +InstallerType: nullsoft +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 + - PackageIdentifier: Microsoft.EdgeWebView2Runtime +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Daniel-McGuire-Corporation/Simple-Browser/releases/download/v2.4.0.0/SimpleBrowserSetup.exe + InstallerSha256: 23818C2284389D5BDFE9682099AFCB2F99B5F0B903F8722DB629B69F9DEFEADD + AppsAndFeaturesEntries: + - Publisher: '"Daniel McGuire Corporation"' + DisplayVersion: '"2.4.0.0"' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/DanielMcGuireCorporation/SimpleBrowser/2.4.0/DanielMcGuireCorporation.SimpleBrowser.locale.en-US.yaml b/manifests/d/DanielMcGuireCorporation/SimpleBrowser/2.4.0/DanielMcGuireCorporation.SimpleBrowser.locale.en-US.yaml new file mode 100644 index 0000000000000..2f22133ee17fa --- /dev/null +++ b/manifests/d/DanielMcGuireCorporation/SimpleBrowser/2.4.0/DanielMcGuireCorporation.SimpleBrowser.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: DanielMcGuireCorporation.SimpleBrowser +PackageVersion: 2.4.0 +PackageLocale: en-US +Publisher: Daniel McGuire Corporation +PackageName: Simple Browser +License: MIT License +Copyright: Daniel McGuire Corporation +ShortDescription: Simple Web Browser +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/DanielMcGuireCorporation/SimpleBrowser/2.4.0/DanielMcGuireCorporation.SimpleBrowser.yaml b/manifests/d/DanielMcGuireCorporation/SimpleBrowser/2.4.0/DanielMcGuireCorporation.SimpleBrowser.yaml new file mode 100644 index 0000000000000..3512d1c4868e7 --- /dev/null +++ b/manifests/d/DanielMcGuireCorporation/SimpleBrowser/2.4.0/DanielMcGuireCorporation.SimpleBrowser.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: DanielMcGuireCorporation.SimpleBrowser +PackageVersion: 2.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.installer.yaml b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.installer.yaml index d12c8b73375fb..defb913e5f61b 100644 --- a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.installer.yaml +++ b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/08 +# Automatically updated by the winget bot at 2024/Feb/09 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: DigitalExtremes.Warframe diff --git a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.locale.en-US.yaml b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.locale.en-US.yaml index c8499dd9d818e..f057c1cf26167 100644 --- a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.locale.en-US.yaml +++ b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/08 +# Automatically updated by the winget bot at 2024/Feb/09 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: DigitalExtremes.Warframe diff --git a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.yaml b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.yaml index 3972f9eedebe3..95981a01685bc 100644 --- a/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.yaml +++ b/manifests/d/DigitalExtremes/Warframe/1.0.0/DigitalExtremes.Warframe.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/08 +# Automatically updated by the winget bot at 2024/Feb/09 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: DigitalExtremes.Warframe diff --git a/manifests/d/DoltHub/Dolt/1.34.0/DoltHub.Dolt.installer.yaml b/manifests/d/DoltHub/Dolt/1.34.0/DoltHub.Dolt.installer.yaml new file mode 100644 index 0000000000000..95cfc7fe66259 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.34.0/DoltHub.Dolt.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.34.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{47EBA235-1BD9-4A46-A898-EDAFBF560F0E}' +ReleaseDate: 2024-02-10 +AppsAndFeaturesEntries: +- DisplayName: Dolt 1.34.0 + UpgradeCode: '{6BC40754-759D-4899-9FD3-E6BE1823CACD}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dolthub/dolt/releases/download/v1.34.0/dolt-windows-amd64.msi + InstallerSha256: 5A3CF769E039497487AB8272F9239F43DDC246560523D59E462F674D31F09B17 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/DoltHub/Dolt/1.34.0/DoltHub.Dolt.locale.en-US.yaml b/manifests/d/DoltHub/Dolt/1.34.0/DoltHub.Dolt.locale.en-US.yaml new file mode 100644 index 0000000000000..91a366fc2e872 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.34.0/DoltHub.Dolt.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.34.0 +PackageLocale: en-US +Publisher: DoltHub +PublisherUrl: https://github.com/dolthub/dolt +PublisherSupportUrl: https://github.com/dolthub/dolt/issues +Author: DoltHub +PackageName: Dolt +PackageUrl: https://www.dolthub.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/dolthub/dolt/blob/HEAD/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/dolthub/dolt/master/LICENSE +ShortDescription: Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. +Description: |- + Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. + Connect to Dolt just like any MySQL database to run queries or update the data using SQL commands. + Use the command line interface to import CSV files, commit your changes, push them to a remote, or merge your teammate's changes. +Moniker: dolt +Tags: +- cli +- data +- git-for-data +- versioning +ReleaseNotes: "Merged PRs\ndolt\n- 7468: go/libraries/events: Restructure events collection so that we can send events while the dolt process is running.\nWe make the GlobalCollector mutable.\nWe give the Collector a sendingThread which can have an Emitter. When the Collector collects enough events, it forwards a batch of them to the sendingThread. If the sendingThread has an Emitter, it attempts to send its current batch on that Emitter.\nOn shutdown, contexts get canceled, background threads get waited on, and then an accumulated un-emitted events are returned from the Collector, same as previously.\n- 7463: SELECT ... INTO OUTFILE ... tests\nThis PR adds BATS tests for a SELECT ... INTO OUTFILE ... feature we're adding.\nCompanion pr: dolthub/go-mysql-server#2317\n- 7457: Added storage capabilities for GMS Extended Types\nThis adds the necessary scaffolding to support the new ExtendedType interface within GMS. This interface is primarily used by DoltgreSQL to implement PostgreSQL types.\nRelated PRs:- dolthub/go-mysql-server#2312\n- dolthub/doltgresql#120\n\n- 7424: Stats auto refresh\nThree new system variables to configure stats auto refresh, one for turning on, one for a timer of how often to check whether stats are fresh, and a third for a freshness threshold to trigger writing new stats. The system variables are global, and will apply to all databases in a server context. Adding or dropping databases, tables, and indexes are reflected by the statistics provider.\nStatistic updates now funnel through a process where we preserve buckets for pre-existing chunks and create new buckets specifically for new chunk ordinals. The auto-refresh threshold compares the number of new and deleted buckets compared the the existing bucket count. So inserts, updates, and deletes all create new chunks or delete chunks relative to the previously saved statistics, and the fraction of (new+deleted)/previous count is compared against the threshold.\nTODO:- how much logging is appropriate\n- go server tests\n- is stats dataset replication blocked by default?\nother:\n- ANALYZE table and auto-refresh concurrency, last write wins? as long as auto-refresh thread doesn't die\n- drop database/ANALYZE concurrency, error for writing stats to a deleted folder\n\ngo-mysql-server\n- 2323: SQLEXCEPTION proc handler\nWe originally supported one type of procedure handler, NOT FOUND, which explicitly checked for an error when fetching from a cursor io.EOFs. The implementation for that handler would walk the entire BEGIN/END scope stack inside the Fetch call looking for a handler, execute the handler body, and then embed the scope height into a special return error. The error walked back up the callstack looking for the BEGIN/END block embedded in the error message.\nThis PR:- Refactors handlers to coordinate message passing in a centralized way. No metadata is embedded in FetchEOF, because each scope will explicitly compare its handlers to errors raised during execution within its BEGIN/END bounds. (FetchEOF is important because we differentiate between 3 different types of io.EOF in procedure loops).\n- Add type/object support for representing specific signal handers.\n- Add SQLEXCEPTION signal handling, which will trigger for any error type (other than io.EOF) that bubbles up during a BeginEndIter's execution.\nre: #7454\nAnother thing I noticed is that some of our tests return nil for empty stored procedures when mysql returns ERROR 1329 (02000): No data - zero rows fetched, selected, or processed. \n\n- 2322: Allow InjectedExpr to handle name resolution\nModifies the InjectedExpr handling to support additional expressions, such as those requiring name resolution.\nRelated PRs:- dolthub/vitess#312\n- dolthub/doltgresql#121\n\n- 2317: support SELECT ... INTO OUTFILE/DUMPFILE ...\nThis adds support for MySQL's SELECT ... INTO OUTFILE/DUMPFILE ... feature.\nIt is the complement to LOAD DATA. There is no LOCAL option, so files created using this feature are on the server.\nThis PR adds a custom TestSuite for testing these files, as it needs to write, read, and delete files.\nsyntax: dolthub/vitess#311\nfixes #7453\n- 2316: Allow primary keys with auto_increment columns to be dropped when an appropriate index exists\nMySQL allows a primary key with an auto_increment column to be dropped as long as there is a secondary index that includes the auto_increment column as the first column in the index. (MySQL Reference)\nThis PR also enables dropping a primary key by referencing it by it's ID (PRIMARY), in order to match MySQL's behavior, e.g.\n\nDROP INDEX `PRIMARY` ON t;\n\nRelated to #7456\n- 2312: Added the ExtendedType interface\nThis adds the ExtendedType interface, which is used within DoltgreSQL to implement PostgreSQL types, as well as in Dolt to properly handle the new type and value serialization.\nRelated PRs:- #7457\n- dolthub/doltgresql#120\n\n- 2300: Fix External Index Creation\nFixes regression introduced by 9b9301f8c4709d2d32982068322662643e02f231\nCurrently\n\nCREATE INDEX foo USING driver table (column)\n\ncreates a table scan if driver is not \"\", \"btree\" or \"hash\".\nThe regression is caused by the change:\n\n-\toutScope.node = plan.NewCreateIndex(\n+\tcreateIndex := plan.NewCreateIndex(\nddl.IndexSpec.ToName.String(),\ntable,\ncols,\nddl.IndexSpec.Using.Lowered(),\nconfig,\n)\n+\tcreateIndex.Catalog = b.cat\nreturn\n\n\nvitess\n- 312: Allow InjectedExpr to handle name resolution\nAdds the capability for additional expressions that need to be resolved to InjectedExpr.\nRelated PRs:- dolthub/go-mysql-server#2322\n- dolthub/doltgresql#121\n\n- 311: add syntax support for SELECT ... INTO OUTFILE ... options\nWe had parser support for SELECT ... INTO OUTFILE, but were lacking parser support for the variety of OUTFILE options.\nThis PR adds support for all the options and certain combinations of them.\nHowever, we are missing support for duplicate options and certain orderings of these options; tests for these are added as error tests with a TODO.\nMySQL Docs:\nhttps://dev.mysql.com/doc/refman/8.0/en/select-into.html\nMariaDB Docs (this has the actual grammar):\nhttps://mariadb.com/kb/en/select-into-outfile/\n- 309: Added a way for Doltgres to inject expressions\nThis primarily adds a new AST node that DoltgreSQL takes advantage of. All currently-existing nodes are specifically designed for MySQL transformations. In many cases, Doltgres will have different transformations that need to take place, and this provides a way for Doltgres to implement those transformations without having to modify other packages whenever a new transformation is added or edited.\nRelated PRs:- dolthub/go-mysql-server#2312\n- dolthub/doltgresql#120\n\n- 308: Change Handler.ComResetConnection to return an error\nRelated to #3921\nClosed Issues\n- 7453: Add support for \"SELECT INTO\" for files\n- 7456: Can't drop primary index.\n- 3921: Implement COM_RESET_CONNECTION" +ReleaseNotesUrl: https://github.com/dolthub/dolt/releases/tag/v1.34.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/DoltHub/Dolt/1.34.0/DoltHub.Dolt.yaml b/manifests/d/DoltHub/Dolt/1.34.0/DoltHub.Dolt.yaml new file mode 100644 index 0000000000000..807556b7e054b --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.34.0/DoltHub.Dolt.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.34.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/d/desowin/USBPcap/1.5.4.0/desowin.USBPcap.installer.yaml b/manifests/d/desowin/USBPcap/1.5.4.0/desowin.USBPcap.installer.yaml new file mode 100644 index 0000000000000..3ed38c59937c0 --- /dev/null +++ b/manifests/d/desowin/USBPcap/1.5.4.0/desowin.USBPcap.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: desowin.USBPcap +PackageVersion: 1.5.4.0 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/desowin/usbpcap/releases/download/1.5.4.0/USBPcapSetup-1.5.4.0.exe + InstallerSha256: 87A7EDF9BBBCF07B5F4373D9A192A6770D2FF3ADD7AA1E276E82E38582CCB622 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/d/desowin/USBPcap/1.5.4.0/desowin.USBPcap.locale.en-US.yaml b/manifests/d/desowin/USBPcap/1.5.4.0/desowin.USBPcap.locale.en-US.yaml new file mode 100644 index 0000000000000..21da22b31a55d --- /dev/null +++ b/manifests/d/desowin/USBPcap/1.5.4.0/desowin.USBPcap.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: desowin.USBPcap +PackageVersion: 1.5.4.0 +PackageLocale: en-US +Publisher: desowin +PackageName: USBPcap +License: GPLv2/BSD 2-Clause +Copyright: (c) 2013-2020 Tomasz Mon +ShortDescription: USBPcap is an open-source USB sniffer for Windows. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/d/desowin/USBPcap/1.5.4.0/desowin.USBPcap.yaml b/manifests/d/desowin/USBPcap/1.5.4.0/desowin.USBPcap.yaml new file mode 100644 index 0000000000000..284148d2fb4c5 --- /dev/null +++ b/manifests/d/desowin/USBPcap/1.5.4.0/desowin.USBPcap.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: desowin.USBPcap +PackageVersion: 1.5.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/e/eloston/ungoogled-chromium/121.0.6167.160/eloston.ungoogled-chromium.installer.yaml b/manifests/e/eloston/ungoogled-chromium/121.0.6167.160/eloston.ungoogled-chromium.installer.yaml new file mode 100644 index 0000000000000..07e143fb66d68 --- /dev/null +++ b/manifests/e/eloston/ungoogled-chromium/121.0.6167.160/eloston.ungoogled-chromium.installer.yaml @@ -0,0 +1,55 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json + +PackageIdentifier: eloston.ungoogled-chromium +PackageVersion: 121.0.6167.160 +InstallerLocale: en-US +MinimumOSVersion: 10.0.0.0 +UpgradeBehavior: install +Protocols: +- http +- https +FileExtensions: +- crx +- htm +- html +- pdf +- url +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/121.0.6167.160-1.1/ungoogled-chromium_121.0.6167.160-1.1_installer_x64.exe + InstallerSha256: FB2E1D9C39DD28A5865D78FC3C5BD445D382C2F51A9EA9FEB1A1CE8C224D4FA3 + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + Custom: --system-level +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/121.0.6167.160-1.1/ungoogled-chromium_121.0.6167.160-1.1_installer_x64.exe + InstallerSha256: FB2E1D9C39DD28A5865D78FC3C5BD445D382C2F51A9EA9FEB1A1CE8C224D4FA3 + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install +- Architecture: x86 + InstallerType: exe + Scope: user + InstallerUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/121.0.6167.160-1.1/ungoogled-chromium_121.0.6167.160-1.1_installer_x86.exe + InstallerSha256: 284FA15F5D5399EF214D7093068DC4DF4E0597121FB039141532048E8B209A86 + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install +- Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/releases/download/121.0.6167.160-1.1/ungoogled-chromium_121.0.6167.160-1.1_installer_x86.exe + InstallerSha256: 284FA15F5D5399EF214D7093068DC4DF4E0597121FB039141532048E8B209A86 + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + Custom: --system-level +ManifestType: installer +ManifestVersion: 1.2.0 +ReleaseDate: 2022-08-04 diff --git a/manifests/e/eloston/ungoogled-chromium/121.0.6167.160/eloston.ungoogled-chromium.locale.en-US.yaml b/manifests/e/eloston/ungoogled-chromium/121.0.6167.160/eloston.ungoogled-chromium.locale.en-US.yaml new file mode 100644 index 0000000000000..8ce679d838b04 --- /dev/null +++ b/manifests/e/eloston/ungoogled-chromium/121.0.6167.160/eloston.ungoogled-chromium.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json + +PackageIdentifier: eloston.ungoogled-chromium +PackageVersion: 121.0.6167.160 +PackageLocale: en-US +Publisher: The Chromium Authors +PublisherUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows +PublisherSupportUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/issues +Author: Eloston +PackageName: Chromium +PackageUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/releases +License: BSD 3-Clause License +LicenseUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/blob/master/LICENSE +Copyright: Copyright 2022 The ungoogled-chromium Authors +CopyrightUrl: https://github.com/ungoogled-software/ungoogled-chromium-windows/blob/master/LICENSE +ShortDescription: ungoogled-chromium is Google Chromium without dependency on Google web services. +Description: |- + ungoogled-chromium is a set of configuration flags, patches, and custom scripts. + + These components altogether strive to accomplish the following + * Disable or remove offending services and features that communicate with Google or weaken privacy + * Strip binaries from the source tree, and use those provided by the system or build them from source + * Add, modify, or disable features that inhibit control and transparency (these changes are minor and do not have significant impacts on the general user experience) + + ungoogled-chromium should not be considered a fork of Chromium. + The main reason for this is that a fork is associated with more significant deviations from the Chromium, such as branding, configuration formats, file locations, and other interface changes. + ungoogled-chromium will not modify the Chromium browser outside of the project's goals. + Since these goals and requirements are not precise, unclear situations are discussed and decided on a case-by-case basis. +Moniker: ungoogled-chromium +Tags: +- browser +- chromium +- ungoogled +ManifestType: defaultLocale +ManifestVersion: 1.2.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.0.3/Bosyun.BoardMix.CN.yaml b/manifests/e/eloston/ungoogled-chromium/121.0.6167.160/eloston.ungoogled-chromium.yaml similarity index 54% rename from manifests/b/Bosyun/BoardMix/CN/1.0.3/Bosyun.BoardMix.CN.yaml rename to manifests/e/eloston/ungoogled-chromium/121.0.6167.160/eloston.ungoogled-chromium.yaml index 89c079ebcad7c..20829608fabd9 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.0.3/Bosyun.BoardMix.CN.yaml +++ b/manifests/e/eloston/ungoogled-chromium/121.0.6167.160/eloston.ungoogled-chromium.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.2.0 $debug=QUS2.CRLF.7-2-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.0.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json + +PackageIdentifier: eloston.ungoogled-chromium +PackageVersion: 121.0.6167.160 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.2.0 diff --git a/manifests/f/FACEITLTD/FACEITAC/2.1/FACEITLTD.FACEITAC.installer.yaml b/manifests/f/FACEITLTD/FACEITAC/2.1/FACEITLTD.FACEITAC.installer.yaml index 6c52dcf9b5f93..d6ce77f367be1 100644 --- a/manifests/f/FACEITLTD/FACEITAC/2.1/FACEITLTD.FACEITAC.installer.yaml +++ b/manifests/f/FACEITLTD/FACEITAC/2.1/FACEITLTD.FACEITAC.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: FACEITLTD.FACEITAC diff --git a/manifests/f/FACEITLTD/FACEITAC/2.1/FACEITLTD.FACEITAC.locale.en-US.yaml b/manifests/f/FACEITLTD/FACEITAC/2.1/FACEITLTD.FACEITAC.locale.en-US.yaml index 3791a6661b75b..df8d6b5275ecc 100644 --- a/manifests/f/FACEITLTD/FACEITAC/2.1/FACEITLTD.FACEITAC.locale.en-US.yaml +++ b/manifests/f/FACEITLTD/FACEITAC/2.1/FACEITLTD.FACEITAC.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: FACEITLTD.FACEITAC diff --git a/manifests/f/FACEITLTD/FACEITAC/2.1/FACEITLTD.FACEITAC.yaml b/manifests/f/FACEITLTD/FACEITAC/2.1/FACEITLTD.FACEITAC.yaml index cd776c51c08e3..0674b181cfe49 100644 --- a/manifests/f/FACEITLTD/FACEITAC/2.1/FACEITLTD.FACEITAC.yaml +++ b/manifests/f/FACEITLTD/FACEITAC/2.1/FACEITLTD.FACEITAC.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: FACEITLTD.FACEITAC diff --git a/manifests/f/FACEITLTD/FACEITClient/1.33.0/FACEITLTD.FACEITClient.installer.yaml b/manifests/f/FACEITLTD/FACEITClient/1.33.0/FACEITLTD.FACEITClient.installer.yaml new file mode 100644 index 0000000000000..fe8c55204629d --- /dev/null +++ b/manifests/f/FACEITLTD/FACEITClient/1.33.0/FACEITLTD.FACEITClient.installer.yaml @@ -0,0 +1,23 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: FACEITLTD.FACEITClient +PackageVersion: 1.33.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: exe +Scope: machine +InstallModes: +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://faceit-client.faceit-cdn.net/release/FACEIT-setup-latest.exe + InstallerSha256: 2A24AC8DAF67AE0F8A4F8B1DA6C7B84C47B0DEE06F167704BB7BB5E428571060 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/f/FACEITLTD/FACEITClient/1.33.0/FACEITLTD.FACEITClient.locale.en-US.yaml b/manifests/f/FACEITLTD/FACEITClient/1.33.0/FACEITLTD.FACEITClient.locale.en-US.yaml new file mode 100644 index 0000000000000..defedff15c099 --- /dev/null +++ b/manifests/f/FACEITLTD/FACEITClient/1.33.0/FACEITLTD.FACEITClient.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: FACEITLTD.FACEITClient +PackageVersion: 1.33.0 +PackageLocale: en-US +Publisher: FACEIT Ltd. +PrivacyUrl: https://corporate.faceit.com/privacy +Author: FACEIT Ltd. +PackageName: FACEIT +License: Proprietary +LicenseUrl: https://corporate.faceit.com/terms-conditions +Copyright: Copyright © 2021 FACEIT Ltd. +CopyrightUrl: https://corporate.faceit.com/terms-conditions +ShortDescription: FACEIT is the leading independent competitive gaming platform for online multiplayer PvP gamers. +Description: FACEIT is the leading independent competitive gaming platform for online multiplayer PvP gamers with more than eight million users, and a total of twelve million online gaming sessions each month. +Moniker: faceit +Tags: +- competitive +- faceit +- matchmaking +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.5.0/Bosyun.BoardMix.CN.yaml b/manifests/f/FACEITLTD/FACEITClient/1.33.0/FACEITLTD.FACEITClient.yaml similarity index 54% rename from manifests/b/Bosyun/BoardMix/CN/1.5.0/Bosyun.BoardMix.CN.yaml rename to manifests/f/FACEITLTD/FACEITClient/1.33.0/FACEITLTD.FACEITClient.yaml index b3b0286f956b9..2c7b68543701d 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.5.0/Bosyun.BoardMix.CN.yaml +++ b/manifests/f/FACEITLTD/FACEITClient/1.33.0/FACEITLTD.FACEITClient.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.2.10 $debug=QUSU.CRLF.7-3-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.5.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: FACEITLTD.FACEITClient +PackageVersion: 1.33.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.15/Ferdium.Ferdium.Nightly.installer.yaml b/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.15/Ferdium.Ferdium.Nightly.installer.yaml new file mode 100644 index 0000000000000..1c56491e0d5a9 --- /dev/null +++ b/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.15/Ferdium.Ferdium.Nightly.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ferdium.Ferdium.Nightly +PackageVersion: 6.7.1-nightly.15 +InstallerType: nullsoft +Installers: +- Architecture: arm64 + InstallerUrl: https://github.com/ferdium/ferdium-app/releases/download/v6.7.1-nightly.15/Ferdium-win-AutoSetup-6.7.1-nightly.15-arm64.exe + InstallerSha256: 94C29F143BCFBA53A0FB058BE31C0CEA108B80C6629A9DE85B473B706BFB1347 +- Architecture: x64 + InstallerUrl: https://github.com/ferdium/ferdium-app/releases/download/v6.7.1-nightly.15/Ferdium-win-AutoSetup-6.7.1-nightly.15-x64.exe + InstallerSha256: F4AE5101509F7745A1E80D01A6558D5EFD2B464FB6624007C0778ABCE4F262A6 +- Architecture: x86 + InstallerUrl: https://github.com/ferdium/ferdium-app/releases/download/v6.7.1-nightly.15/Ferdium-win-AutoSetup-6.7.1-nightly.15-ia32.exe + InstallerSha256: 0527F749501BD106786E40B7B239E95F669D9A292F7E040F144E3602376C514E +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.15/Ferdium.Ferdium.Nightly.locale.en-US.yaml b/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.15/Ferdium.Ferdium.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..fb1f699cf4768 --- /dev/null +++ b/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.15/Ferdium.Ferdium.Nightly.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ferdium.Ferdium.Nightly +PackageVersion: 6.7.1-nightly.15 +PackageLocale: en-US +Publisher: Ferdium Contributors +PublisherUrl: https://ferdium.org +PackageName: Ferdium Nightly +PackageUrl: https://github.com/ferdium/ferdium-app +License: Apache License 2.0 +Copyright: Copyright © 2022 Ferdium Contributors +ShortDescription: Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more. +Moniker: ferdium-nightly +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.15/Ferdium.Ferdium.Nightly.yaml b/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.15/Ferdium.Ferdium.Nightly.yaml new file mode 100644 index 0000000000000..24e00ad02bd72 --- /dev/null +++ b/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.15/Ferdium.Ferdium.Nightly.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ferdium.Ferdium.Nightly +PackageVersion: 6.7.1-nightly.15 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.16/Ferdium.Ferdium.Nightly.installer.yaml b/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.16/Ferdium.Ferdium.Nightly.installer.yaml new file mode 100644 index 0000000000000..bcbc34bfb16c1 --- /dev/null +++ b/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.16/Ferdium.Ferdium.Nightly.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ferdium.Ferdium.Nightly +PackageVersion: 6.7.1-nightly.16 +InstallerType: nullsoft +Installers: +- Architecture: arm64 + InstallerUrl: https://github.com/ferdium/ferdium-app/releases/download/v6.7.1-nightly.16/Ferdium-win-AutoSetup-6.7.1-nightly.16-arm64.exe + InstallerSha256: 1E57B564335E9E05A429B9CC72D109AF64CB6AE27295ECCE6A14BD94A3681833 +- Architecture: x64 + InstallerUrl: https://github.com/ferdium/ferdium-app/releases/download/v6.7.1-nightly.16/Ferdium-win-AutoSetup-6.7.1-nightly.16-x64.exe + InstallerSha256: 78CA033365EABE35E1918D34AAC270CCC78DE082C391FB5B461563B2A2E87A54 +- Architecture: x86 + InstallerUrl: https://github.com/ferdium/ferdium-app/releases/download/v6.7.1-nightly.16/Ferdium-win-AutoSetup-6.7.1-nightly.16-ia32.exe + InstallerSha256: E867689E96FAE94FA43534EB3542111A0B313077B999F4935D6E7C62EE556630 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.16/Ferdium.Ferdium.Nightly.locale.en-US.yaml b/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.16/Ferdium.Ferdium.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..680821991a5b1 --- /dev/null +++ b/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.16/Ferdium.Ferdium.Nightly.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ferdium.Ferdium.Nightly +PackageVersion: 6.7.1-nightly.16 +PackageLocale: en-US +Publisher: Ferdium Contributors +PublisherUrl: https://ferdium.org +PackageName: Ferdium Nightly +PackageUrl: https://github.com/ferdium/ferdium-app +License: Apache License 2.0 +Copyright: Copyright © 2022 Ferdium Contributors +ShortDescription: Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more. +Moniker: ferdium-nightly +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.16/Ferdium.Ferdium.Nightly.yaml b/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.16/Ferdium.Ferdium.Nightly.yaml new file mode 100644 index 0000000000000..0ddb244aee486 --- /dev/null +++ b/manifests/f/Ferdium/Ferdium/Nightly/6.7.1-nightly.16/Ferdium.Ferdium.Nightly.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ferdium.Ferdium.Nightly +PackageVersion: 6.7.1-nightly.16 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.10.0/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.10.0/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 760215f3ccf45..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.10.0/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.10.0 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-08-27 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.10.0/Paperlib_1.10.0.exe - InstallerSha256: D0B9126246C470479B0CB3AEFFAB3DC3BFE0BB54E8DB7F70A0C56493065049AF - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.10.0/Paperlib_1.10.0.exe - InstallerSha256: D0B9126246C470479B0CB3AEFFAB3DC3BFE0BB54E8DB7F70A0C56493065049AF - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.10.0/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.10.0/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 4eccb060aeac5..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.10.0/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.10.0 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Better reference copy-paste plugin: copy cite key, link to a folder. - 2. Choose your prefered CSL format. - 3. Choose your prefered PDF viewer. - 4. Editable tags and folders. - 5. Fixed some bugs. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.10.0/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.10.0/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 70da1468f40f7..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.10.0/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.10.0 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 更好的引用快速复制插件:复制引用 Key,链接一个文件夹等。 - 2. 支持选择 CSL style。 - 3. 支持选择自定义 PDF 阅读器。 - 4. 支持编辑 tags 和 folders。 - 5. 修复漏洞。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.10.0/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.10.0/FutureScholars.Paperlib.yaml deleted file mode 100644 index 6082e1d7172bf..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.10.0/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.10.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.10.1/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.10.1/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index c7d1305112680..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.10.1/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.10.1 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-09-01 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.10.1/Paperlib_1.10.1.exe - InstallerSha256: EBE6C19B077E92D30DC0D852C15BAB86446FA7AE48D4B1D00AB059D2115439DA - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.10.1/Paperlib_1.10.1.exe - InstallerSha256: EBE6C19B077E92D30DC0D852C15BAB86446FA7AE48D4B1D00AB059D2115439DA - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.10.1/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.10.1/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 32b761f5fda42..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.10.1/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.10.1 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Fixed some bugs. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.10.1/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.10.1/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index f1ad9e549b432..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.10.1/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.10.1 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 修复漏洞。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.10.1/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.10.1/FutureScholars.Paperlib.yaml deleted file mode 100644 index 16d4ff98e443c..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.10.1/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.10.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.10.2/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.10.2/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index e3b7aafd3e247..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.10.2/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.10.2 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-09-05 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.10.2/Paperlib_1.10.2.exe - InstallerSha256: 4024DE49747B4B924810D8689EDEFB34B8BD9401665E0B9FEA7B471136BEC064 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.10.2/Paperlib_1.10.2.exe - InstallerSha256: 4024DE49747B4B924810D8689EDEFB34B8BD9401665E0B9FEA7B471136BEC064 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.10.2/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.10.2/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 8fc0379c09566..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.10.2/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.10.2 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. New metadata scraper: corssref.org - 2. Fixed some bugs. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.10.2/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.10.2/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index bc4b165611bc8..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.10.2/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.10.2 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 新的元数据搜刮器:crossref.org - 2. 修复漏洞。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.10.2/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.10.2/FutureScholars.Paperlib.yaml deleted file mode 100644 index 42e16b2f5f9ea..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.10.2/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.10.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.5/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.7.5/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index ee8e4e732905e..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.5/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.5 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-06-24 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.7.5/Paperlib_1.7.5.exe - InstallerSha256: DD701B539126E0EADFDA32A6D78F7B2FD4C10F3D977004556CAA170FD2C30876 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.7.5/Paperlib_1.7.5.exe - InstallerSha256: DD701B539126E0EADFDA32A6D78F7B2FD4C10F3D977004556CAA170FD2C30876 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.5/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.7.5/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 00799348bcffd..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.5/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.5 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Fix bugs. - 2. Support proxy. - 3. Support 3 renaming formats. - 4. Support import from a folder or a Zotero CSV file. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.5/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.7.5/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 1ad4b2d235f2d..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.5/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.5 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 修复漏洞。 - 2. 支持三种重命名格式。 - 3. 支持代理。 - 4. 支持从文件夹或者 Zotero CSV 导入。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.5/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.7.5/FutureScholars.Paperlib.yaml deleted file mode 100644 index f9ba1b8645870..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.5/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.6/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.7.6/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index d006a2a4c0e67..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.6/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.6 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-06-26 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.7.6/Paperlib_1.7.6.exe - InstallerSha256: C39AF5E4003C133178B1AED4DB0C7FAB82A7FAF08731CC9949E3A30A5606FCA5 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.7.6/Paperlib_1.7.6.exe - InstallerSha256: C39AF5E4003C133178B1AED4DB0C7FAB82A7FAF08731CC9949E3A30A5606FCA5 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.6/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.7.6/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 03f85f5af1e8a..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.6/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.6 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Configurable hotkeys. - 2. Arrow up and down to select the previous or next paper. - 3. Fix bugs. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.6/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.7.6/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index d89de88d7238f..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.6/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.6 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 修复漏洞。 - 2. 支持方向键切换选定论文。 - 3. 支持自定义快捷键。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.6/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.7.6/FutureScholars.Paperlib.yaml deleted file mode 100644 index b565cd0abb8c2..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.6/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.7/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.7.7/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 8f90b0c4a0b05..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.7/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.7 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-06-29 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.7.7/Paperlib_1.7.7.exe - InstallerSha256: DF5EB4A9D618842C3B3D6BB5A389AA5CF0DD5333EC9C710C89F9AE5C6D650436 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.7.7/Paperlib_1.7.7.exe - InstallerSha256: DF5EB4A9D618842C3B3D6BB5A389AA5CF0DD5333EC9C710C89F9AE5C6D650436 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.7/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.7.7/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index dffc9f2821327..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.7/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.7 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Fix bugs. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.7/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.7.7/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 8718a805940d3..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.7/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.7 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 修复漏洞。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.7/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.7.7/FutureScholars.Paperlib.yaml deleted file mode 100644 index 823fc36827270..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.7/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.8/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.7.8/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 2c4f8a6437b99..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.8/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.8 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-07-05 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.7.8/Paperlib_1.7.8.exe - InstallerSha256: 8E80D3A4AF4CF42419AAF84C1DC7D54C490490D915E524D4620EF88C5B7537CC - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.7.8/Paperlib_1.7.8.exe - InstallerSha256: 8E80D3A4AF4CF42419AAF84C1DC7D54C490490D915E524D4620EF88C5B7537CC - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.8/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.7.8/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 2cea914a4d2c3..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.8/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.8 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Resizable sidebar. - 2. Custom renaming format. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.8/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.7.8/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 011551bb7b96b..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.8/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.8 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 支持侧边栏调整。 - 2. 支持自定义的重命名规则。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.7.8/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.7.8/FutureScholars.Paperlib.yaml deleted file mode 100644 index a4b9a5cce9e62..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.7.8/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.7.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.8.1/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.8.1/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 758f73d314bd1..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.8.1/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.8.1 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-07-10 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.8.1/Paperlib_1.8.1.exe - InstallerSha256: 0989505481769162D1E1C3E43EE6454E952B7E71EC34BA2D49802D68EC88BDD5 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.8.1/Paperlib_1.8.1.exe - InstallerSha256: 0989505481769162D1E1C3E43EE6454E952B7E71EC34BA2D49802D68EC88BDD5 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.8.1/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.8.1/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index ca0e9d5c7bb99..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.8.1/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.8.1 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. FireFox add-on is ready. - 2. Custom scraper, scrapers’ priority. - 3. Dialog window hotkey. - 4. Bug fix. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.8.1/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.8.1/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 4446e842a30bb..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.8.1/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.8.1 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. Firefox 插件。 - 2. 支持自定义搜刮器。 - 3. 对话框可以使用一些快捷键操作。 - 4. 修复诸多漏洞。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.8.1/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.8.1/FutureScholars.Paperlib.yaml deleted file mode 100644 index 969a71e2bc4e5..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.8.1/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.8.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.8.2/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.8.2/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 776f11b2183af..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.8.2/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.8.2 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-07-17 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.8.2/Paperlib_1.8.2.exe - InstallerSha256: 42779DDF406D4B1674BF2ED3207467A2B6D2AF7026BFC83020C3E3D13760187B - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.8.2/Paperlib_1.8.2.exe - InstallerSha256: 42779DDF406D4B1674BF2ED3207467A2B6D2AF7026BFC83020C3E3D13760187B - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.8.2/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.8.2/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 45084818e5c2f..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.8.2/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.8.2 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Configurable paper detail information in the mainview. - 2. Directly import files or paper items to a folder or tag. - 3. Contextmenu: Scrape by using a specific scraper. - 4. Bug fix. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.8.2/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.8.2/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index d4b57b3660b22..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.8.2/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.8.2 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 支持在主列表展示自定义的详情信息。在这里你可以选择展示发表相关信息,标签文件夹,打分和笔记等。 - 2. 直接拖动 PDF 文件或者已有的论文条目到侧边栏直接添加到对应标签或文件夹。 - 3. 右键菜单添加了从某一特定搜刮器搜刮 metadata 的选项。 - 4. 修复漏洞。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.8.2/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.8.2/FutureScholars.Paperlib.yaml deleted file mode 100644 index 53001367a8906..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.8.2/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.8.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.0/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.9.0/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index d8d515565565d..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.0/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.0 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-07-23 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.0/Paperlib_1.9.0.exe - InstallerSha256: EFA1F5C8975DF5969997742D5F38C05273A0E10376BEDEAC8E093691C80C5CB6 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.0/Paperlib_1.9.0.exe - InstallerSha256: EFA1F5C8975DF5969997742D5F38C05273A0E10376BEDEAC8E093691C80C5CB6 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.0/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.9.0/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index f6aef936afe83..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.0/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.0 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. RSS subscription. - 2. Markdown Notes. - 3. Bug fix. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.0/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.9.0/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 39f2076d2eacf..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.0/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.0 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. RSS 订阅。 - 2. Markdown 笔记。 - 3. 修复漏洞。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.0/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.9.0/FutureScholars.Paperlib.yaml deleted file mode 100644 index 855614d022494..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.0/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.1/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.9.1/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 1d92d3a9d0404..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.1/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.1 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-07-27 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.1/Paperlib_1.9.1.exe - InstallerSha256: 04B5EB45405F5E5E5820CBDD4119B8204E49D4F6B0C3329262B10EDCB3736182 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.1/Paperlib_1.9.1.exe - InstallerSha256: 04B5EB45405F5E5E5820CBDD4119B8204E49D4F6B0C3329262B10EDCB3736182 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.1/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.9.1/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index a1f73ffd26fbb..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.1/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.1 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Support more arxiv RSS formats. - 2. Bug fix: Cannot reopen window on macOS. - 3. Bug fix: Windows database initialization bug. - 4. Bug fix: Tooltip text missing under dark mode. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.1/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.9.1/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 0f6baa744d004..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.1/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.1 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 支持 arXiv 更多的 RSS 格式。 - 2. 修复 Windows 下数据库初始化 Bug。 - 3. 修复 macOS 快捷键关闭之后无法打开的 Bug。 - 4. 修复 Tooltip 文字 Bug。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.1/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.9.1/FutureScholars.Paperlib.yaml deleted file mode 100644 index 52aefd7638fb3..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.1/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.2/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.9.2/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 2a892bf82b7bd..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.2/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.2 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-07-28 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.2/Paperlib_1.9.2.exe - InstallerSha256: 593D101F18BF88EA9FE5E9C183209BA21CC1DF42A5A56D49C3DCBBE7AC9855B2 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.2/Paperlib_1.9.2.exe - InstallerSha256: 593D101F18BF88EA9FE5E9C183209BA21CC1DF42A5A56D49C3DCBBE7AC9855B2 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.2/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.9.2/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 768e8052737e3..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.2/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.2 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Bug fix: Cannot reopen window on macOS. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.2/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.9.2/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index fde41fb4763ae..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.2/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.2 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 修复 macOS 快捷键关闭之后无法打开的 Bug。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.2/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.9.2/FutureScholars.Paperlib.yaml deleted file mode 100644 index a3d4d6ea0062f..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.2/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.3/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.9.3/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 0c7c30aa19e2a..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.3/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.3 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-08-08 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.3/Paperlib_1.9.3.exe - InstallerSha256: E8BD2C07D162EF005A9289E6E7E6A7B1857650FE79B085128DD12AF2D411D922 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.3/Paperlib_1.9.3.exe - InstallerSha256: E8BD2C07D162EF005A9289E6E7E6A7B1857650FE79B085128DD12AF2D411D922 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.3/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.9.3/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 1e029ffc9f80a..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.3/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.3 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Reduce memory usage. - 2. Fixed: a bug in the metadata updating. - 3. Fixed: a bug in the preview rendering. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.3/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.9.3/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index a98dcedea16f0..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.3/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.3 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 减少内存消耗。 - 2. 修复元数据更新时的 Bug。 - 3. 修复缩略图渲染 Bug。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.3/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.9.3/FutureScholars.Paperlib.yaml deleted file mode 100644 index b0b754c4f48d9..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.3/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.4/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.9.4/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 4f529f774a3fc..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.4/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.4 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-08-08 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.4/Paperlib_1.9.4.exe - InstallerSha256: 7D4307FE33C13277185A61DC70A58D9B97894EE52A1FE4ADAD32D5F39D14732A - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.4/Paperlib_1.9.4.exe - InstallerSha256: 7D4307FE33C13277185A61DC70A58D9B97894EE52A1FE4ADAD32D5F39D14732A - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.4/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.9.4/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 012d9bd3e4748..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.4/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.4 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Save mainview and sorting preference. #124 - 2. Better code repos scraper. #125 - 3. Fixed: Keyboard pressing bug in input fields #123 -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.4/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.9.4/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 2929289760b1f..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.4/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.4 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 保存主视图类型和排序等设置。 #124 - 2. 优化代码仓库抓取器。现在抓取 star 前三名的仓库并显示。 #125 - 3. 修复部分输入框按键 Bug。 #123 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.4/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.9.4/FutureScholars.Paperlib.yaml deleted file mode 100644 index 2c5e36555d069..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.4/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.5/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.9.5/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 85223b7da7011..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.5/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.5 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-08-15 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.5/Paperlib_1.9.5.exe - InstallerSha256: 832AF39F6400E4BAFC16A4335BB178B00875B04797D7314FE016EB49B7EC442D - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.5/Paperlib_1.9.5.exe - InstallerSha256: 832AF39F6400E4BAFC16A4335BB178B00875B04797D7314FE016EB49B7EC442D - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.5/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.9.5/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 59281f510f2f9..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.5/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.5 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Now you can remove a tag/folder in the details panel. - 2. Copy plain text or BibTex using the plugin with two modes. Press Tab or click it to switch between two modes. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.5/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.9.5/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 6461f9c1f2aa9..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.5/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.5 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 可以在详情界面删除标签/文件夹了。 - 2. 快速复制插件支持两种模式,按下 Tab 键或者点击来切换。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.5/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.9.5/FutureScholars.Paperlib.yaml deleted file mode 100644 index 54049f1437cfa..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.5/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.6/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.9.6/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 7a01bade1a6c6..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.6/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.6 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-08-21 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.6/Paperlib_1.9.6.exe - InstallerSha256: 7DB148D712BD75EE8AADCD6376A915D9B595C3E55AD59794A262ADDA1987CBC5 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.6/Paperlib_1.9.6.exe - InstallerSha256: 7DB148D712BD75EE8AADCD6376A915D9B595C3E55AD59794A262ADDA1987CBC5 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.6/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.9.6/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 4f03a83a0a6e4..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.6/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.6 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Render LaTeX in the details panel. - 2. Support locating PDF from arXiv, unpaywall, and xxx-hub. Please manually input the URL of the xxx-hub in the preference window. - 3. Import papers from a BibTex file. - 4. The browser extension supports all urls ending with ‘.pdf’. - 5. For those who have cloud sync set up, now it is possible to use Paperlib without network connection. - 6. Fixed some bugs in custom scrapers. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.6/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.9.6/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 8a3b86705b06a..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.6/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.6 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 详情面板渲染 LaTeX。 - 2. 支持从 arXiv、unpaywall 和 xxx-hub 搜索 PDF。 - 3. 导入 BibTeX 文件。 - 4. 浏览器插件支持所有以 .pdf 结尾的 URL。 - 5. 对于开启云同步的用户支持离线使用。 - 6. 修复漏洞。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.6/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.9.6/FutureScholars.Paperlib.yaml deleted file mode 100644 index e12915538a970..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.6/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.7/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/1.9.7/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index b389e4e5d920e..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.7/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.7 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-08-21 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.7/Paperlib_1.9.7.exe - InstallerSha256: BA012F61A5FB2266C6EA45CFE8D00C5F4B9C5AE6D0883CA9C86DA5DE6DFC9152 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-1.9.7/Paperlib_1.9.7.exe - InstallerSha256: BA012F61A5FB2266C6EA45CFE8D00C5F4B9C5AE6D0883CA9C86DA5DE6DFC9152 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.7/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/1.9.7/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 77f1b5dded7d3..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.7/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.7 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Fixed: Papers from the ACL conference will be mistakenly identified from AMTA conference #127 -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.7/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/1.9.7/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index ba125d5baeeaf..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.7/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.7 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 修复了 ACL 会议元数据匹配的 Bug。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/1.9.7/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/1.9.7/FutureScholars.Paperlib.yaml deleted file mode 100644 index fbfa7f503b773..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/1.9.7/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 1.9.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.0/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/2.0.0/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index d1a72d6165e80..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.0/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.0 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-09-19 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.0/Paperlib_2.0.0.exe - InstallerSha256: 869CEFFFB42E8DB6D2C6250E86C761648833083B8921180AC1E28B02E89E8381 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.0/Paperlib_2.0.0.exe - InstallerSha256: 869CEFFFB42E8DB6D2C6250E86C761648833083B8921180AC1E28B02E89E8381 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.0/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/2.0.0/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 88669aa742946..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.0/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,50 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.0 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Rewrite the database related code to optimise the response time. For example, the resorting time for 10K paper items is decreased from 3s to 30ms. - 2. Cache the preview image to optimise the rendering speed of paper preview. - 3. Multi language support. Currently, English and Chinese are supported. - 4. Redesigned the UI of Windows version. - 5. Automatically detect and use the system proxy. - 6. Added some guidance pages. - 7. Redesigned the metadata scrapper pipeline and setting UI. For users who already used a custom scraper, you may need to modify the code of your scraper slightly. See Github for details. - 8. Added two new scrapers: Paperlib Query Service (the server backend is still in progress), Semantic Scholar. We are constantly adding new scrapers, please contact me directly if you would like to optimise Paperlib for your research topic. - 9. Optimise the launching speed, memory usage. - 10. Optimise the performance of some metadata scrapers. - 11. Moving files to trash instead of deleting files. - 12. Add a progress bar to show some notifications such as downloading progress. - 13. Now adding a paper in a subscribed feed will not download its PDF file. - 14. Fixed some bugs. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.0/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/2.0.0/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 87f58df2c505e..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.0/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,47 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.0 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 重写数据库代码,优化响应时间。例如,对于 10K 篇文献,排序时间从 3s 降低到 30ms。 - 2. 优化预览渲染速度,缓存文献预览图。 - 3. 多语言支持,目前支持英文和中文。 - 4. 重新设计了部分 Windows 版本的 UI。 - 5. 自动检测和使用系统默认代理。中国大陆地区推荐设置代理来加速个别数据库的访问速度。我们会持续尽力优化对于无代理的大陆用户的体验。 - 6. 增加了导引界面。 - 7. 重新设计了元数据搜寻器的流程以及设置界面。对于已经使用了自定义搜寻器的用户,您可能需要稍微修改一下您的自定义代码。详情请见 Github。 - 8. 增加了两个新的元数据搜寻器:Paperlib Query Service(后端仍在设计实现中)、Semantic Scholar。我们仍在不断添加新的搜寻器,如果你想为你的学科优化 Paperlib 的元数据搜索能力,请直接联系我。 - 9. 优化程序启动速度、占用内存等。 - 10. 优化部分元数据搜寻器的性能。 - 11. 删除的文件会首先移入回收站而不是直接删除。 - 12. 添加了一个进度条来显示如下载的进度。 - 13. 添加一个 RSS 订阅的论文到库的时候不会自动下载论文了,以此来提高添加速度。 - 14. 修复了很多 Bug。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.0/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/2.0.0/FutureScholars.Paperlib.yaml deleted file mode 100644 index 47be9a0aaf891..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.0/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.1/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/2.0.1/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 953e0ae7019ba..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.1/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.1 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-09-20 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.1/Paperlib_2.0.1.exe - InstallerSha256: B1711503D7E571D23C94FF928B5962553644A08EEC552636E6E9F6741C89F086 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.1/Paperlib_2.0.1.exe - InstallerSha256: B1711503D7E571D23C94FF928B5962553644A08EEC552636E6E9F6741C89F086 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.1/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/2.0.1/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index c34389e3db988..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.1/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.1 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Fixed a bug. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.1/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/2.0.1/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 8ed0e91df8d28..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.1/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.1 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 修复一个小 Bug。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.1/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/2.0.1/FutureScholars.Paperlib.yaml deleted file mode 100644 index 93347bd96eaa9..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.1/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.2/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/2.0.2/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 9ef86d16c3c3a..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.2/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.2 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-09-20 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.2/Paperlib_2.0.2.exe - InstallerSha256: 5733975B56FB5228233F87732A71EAC0E3243A5FAFB7B2336926DD10CD4F303A - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.2/Paperlib_2.0.2.exe - InstallerSha256: 5733975B56FB5228233F87732A71EAC0E3243A5FAFB7B2336926DD10CD4F303A - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.2/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/2.0.2/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 0ec1d3b5e362c..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.2/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.2 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Now you can choose which columns are displayed in the table view. - 2. Add a global shared metadata cache layer for all users. All the successfully scraped metadata will be cached and shared with other users to speed up scraping of popular papers. About privacy, this feature only share the metadata from the public builtin scrapers. - 3. Add an alternative API url for DBLP. - 4. Fixed a bug in the file operation of Onedrive. - 5. Fixed a bug when refreshing RSS feeds. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.2/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/2.0.2/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 974720fd1fc7e..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.2/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.2 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 现在可以配置表格视图下显示哪些列了。 - 2. 增加了元数据搜寻结果缓存,每个成功的搜寻结果(仅公共数据库返回结果)将会对其他用户共享缓存,加快热门文章搜寻的速度。 - 3. DBLP 搜寻器增加了一个备用 API 地址。 - 4. 修复一个在使用 Onedrive 作为文件夹时候删除文件的 Bug。 - 5. 修复一个 RSS 订阅刷新时的 Bug。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.2/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/2.0.2/FutureScholars.Paperlib.yaml deleted file mode 100644 index 301f0bcc6f2fa..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.2/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.3/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/2.0.3/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 593e7110e1e90..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.3/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.3 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-10-08 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.3/Paperlib_2.0.3.exe - InstallerSha256: 49E5D08EF2BC9B64EC3671B6DBDD6ABCF0D7EDDE8F8C0223730FD237AF704C76 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.3/Paperlib_2.0.3.exe - InstallerSha256: 49E5D08EF2BC9B64EC3671B6DBDD6ABCF0D7EDDE8F8C0223730FD237AF704C76 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.3/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/2.0.3/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 755ce2c55aed4..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.3/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.3 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Fulltext search mode: the highlights of the search results will be displayed in the PDF preview view. - 2. Adjustable width of the detail panel. - 3. Better rules for preprint papers. - 4. Fixed a bug in the PDF preview view. - 5. Fixed a bug in the markdown preview. - 6. Fixed a compatibility issue in MacOS Catalina. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.3/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/2.0.3/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 126b02a29dd84..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.3/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.3 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 全文搜索的高亮结果可以显示在 PDF 预览视图下。 - 2. 可调整详情面板的宽度。 - 3. 优化了对于预印本论文的判断规则。 - 4. 修复了内置 PDF 浏览视图下可能出现的遮挡 Bug。 - 5. 修复了 Markdown 渲染超出视图,以及无法渲然 HTML 图片的 Bug。 - 6. 修复了 MacOS Catalina 的兼容性 Bug。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.3/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/2.0.3/FutureScholars.Paperlib.yaml deleted file mode 100644 index 6ef5b29c3b2f7..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.3/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.4/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/2.0.4/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index d2934d70144c9..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.4/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.4 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-10-08 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.4/Paperlib_2.0.4.exe - InstallerSha256: 9E3E5EB700F8ADE1320F298EF7D25268FA5D7D7382F82B3DE4165ED17B7AF273 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.4/Paperlib_2.0.4.exe - InstallerSha256: 9E3E5EB700F8ADE1320F298EF7D25268FA5D7D7382F82B3DE4165ED17B7AF273 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.4/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/2.0.4/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 00c0449266001..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.4/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.4 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Fulltext search mode: the highlights of the search results will be displayed in the PDF preview view. - 2. Adjustable width of the detail panel. - 3. Better rules for preprint papers. - 4. Fixed a bug in the PDF preview view. - 5. Fixed a bug in the markdown preview. - 6. Fixed a compatibility issue in MacOS Catalina. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.4/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/2.0.4/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 256ee46d0714c..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.4/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.4 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 全文搜索的高亮结果可以显示在 PDF 预览视图下。 - 2. 可调整详情面板的宽度。 - 3. 优化了对于预印本论文的判断规则。 - 4. 修复了内置 PDF 浏览视图下可能出现的遮挡 Bug。 - 5. 修复了 Markdown 渲染超出视图,以及无法渲然 HTML 图片的 Bug。 - 6. 修复了 MacOS Catalina 的兼容性 Bug。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.4/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/2.0.4/FutureScholars.Paperlib.yaml deleted file mode 100644 index 45ed788188ef1..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.4/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.5/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/2.0.5/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 349cc9dd2bc51..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.5/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.5 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-10-18 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.5/Paperlib_2.0.5.exe - InstallerSha256: 2256A19FFE6CFC64E17D72EA06568501A81B1762EE265875F4F7F988B5E39D7C - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.5/Paperlib_2.0.5.exe - InstallerSha256: 2256A19FFE6CFC64E17D72EA06568501A81B1762EE265875F4F7F988B5E39D7C - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.5/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/2.0.5/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index badc224fac395..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.5/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,41 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.5 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. The beta version of the Microsoft Word Add-in is released. - 2. Linux build is avaliable now. - 3. The code repository metadata is editable now. - 4. Better hover experience of the search bar. - 5. Fixed some bugs. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.5/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/2.0.5/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 21da770e4b8d1..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.5/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.5 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. Microsoft Word 插件的测试版发布了。 - 2. 支持了 Linux 系统。 - 3. 代码仓库元数据现在可以编辑了。 - 4. 更好的搜索栏鼠标悬浮体验。 - 5. 修复漏洞。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.5/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/2.0.5/FutureScholars.Paperlib.yaml deleted file mode 100644 index 73dd4eeb786aa..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.5/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.6/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/2.0.6/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 9bc4097a4f8ac..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.6/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.6 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-10-22 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.6/Paperlib_2.0.6.exe - InstallerSha256: AF11BB299C5BA11C0651D534BAD4681E60063381E2EAB189CAFCDEA122918463 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.0.6/Paperlib_2.0.6.exe - InstallerSha256: AF11BB299C5BA11C0651D534BAD4681E60063381E2EAB189CAFCDEA122918463 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.6/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/2.0.6/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 9eb82e15dd1ef..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.6/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.6 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. New Scrapers: bioRxiv, medRxiv, and chemRxiv. - 2. Better DOI regex. - 3. New icon. - 4. Fixed some bugs. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.6/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/2.0.6/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index b55f180d8da49..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.6/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.6 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 新的元数据搜寻器:bioRxiv、medRxiv、chemRxiv。 - 2. 优化 DOI 正则表达式。 - 3. 新的图标。 - 4. 修复漏洞。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.0.6/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/2.0.6/FutureScholars.Paperlib.yaml deleted file mode 100644 index d8e7f81db8d53..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.0.6/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.0.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.1/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/2.1.1/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 7fc3636023cd9..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.1/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.1 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-11-06 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.1.1/Paperlib_2.1.1.exe - InstallerSha256: 5CBDF6914DC951A3C22BB43B32B2B5CDA9BE9A695D7ED5DCD3F787511C4CE653 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.1.1/Paperlib_2.1.1.exe - InstallerSha256: 5CBDF6914DC951A3C22BB43B32B2B5CDA9BE9A695D7ED5DCD3F787511C4CE653 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.1/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/2.1.1/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 94d047e866f19..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.1/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.1 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Fixed a bug. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.1/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/2.1.1/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 26249d435bd48..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.1/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.1 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 修复了一个 Bug。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.1/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/2.1.1/FutureScholars.Paperlib.yaml deleted file mode 100644 index bedbaf9ff11a5..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.1/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.2/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/2.1.2/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index ceb505edec7b4..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.2/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +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: FutureScholars.Paperlib -PackageVersion: 2.1.2 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-11-20 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.1.2/Paperlib_2.1.2.exe - InstallerSha256: 8F5A643B0682FC7298BA642720DD67C2337FE06F502D9230179426A3F211B913 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.1.2/Paperlib_2.1.2.exe - InstallerSha256: 8F5A643B0682FC7298BA642720DD67C2337FE06F502D9230179426A3F211B913 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.2/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/2.1.2/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 234d33d6d1c97..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.2/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,40 +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: FutureScholars.Paperlib -PackageVersion: 2.1.2 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Browser extension now supports CNKI (中国知网). - 2. If DBLP returns metadata with a doi, then use this DOI first to get metadata. - 3. Fixed an animation bug of the search bar. - 4. Fixed a bug occured when clicking a URL link in the PDF reader view. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.2/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/2.1.2/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index fd9a7a135af10..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.2/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,37 +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.locale.1.2.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.2 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 浏览器插件支持 CNKI(中国知网)。 - 2. 如果 DBLP 返回元数据带有 DOI,那么优先使用此 DOI 获取其余元数据。 - 3. 修复搜索栏动画的问题。 - 4. 修复在 PDF 浏览器里点击链接时,无法在外部浏览器打开的问题。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.2/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/2.1.2/FutureScholars.Paperlib.yaml deleted file mode 100644 index a5c403ad47578..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.2/FutureScholars.Paperlib.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: FutureScholars.Paperlib -PackageVersion: 2.1.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.3/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/2.1.3/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index c5fc5fbd8eb90..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.3/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.3 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-12-23 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.1.3/Paperlib_2.1.3.exe - InstallerSha256: 10C430581CEB566B42C2DABAC5E2223F70BD8C2F1AD2EA691DCEC39E2B1D65DF - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.1.3/Paperlib_2.1.3.exe - InstallerSha256: 10C430581CEB566B42C2DABAC5E2223F70BD8C2F1AD2EA691DCEC39E2B1D65DF - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.3/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/2.1.3/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 807420d279169..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.3/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,37 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.3 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Update the MS Word add-in cert. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.3/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/2.1.3/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index d419bd7add8fd..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.3/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.3 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 更新 Word 插件证书。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.4/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/2.1.4/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 0fcca8badd5b0..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.4/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.4 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2022-12-31 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.1.4/Paperlib_2.1.4.exe - InstallerSha256: 1BB5C093902761CD5F09768B8B89DF5E891880485E65C69CD4AF6146859FB013 - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.1.4/Paperlib_2.1.4.exe - InstallerSha256: 1BB5C093902761CD5F09768B8B89DF5E891880485E65C69CD4AF6146859FB013 - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.4/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/2.1.4/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index 012fadd7c5e56..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.4/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,38 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.4 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Enhance the DBLP scaper for ICLR 2016. - 2. Fixed some bugs. -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.4/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/2.1.4/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 53f6dd34173f9..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.4/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.4 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2022 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 修复 Bug。 - 2. 优化 DBLP scaper 对 ICLR 2016 的检索结果。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.5/FutureScholars.Paperlib.installer.yaml b/manifests/f/FutureScholars/Paperlib/2.1.5/FutureScholars.Paperlib.installer.yaml deleted file mode 100644 index 3c9dc2d67cc9b..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.5/FutureScholars.Paperlib.installer.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.5 -InstallerType: nullsoft # electron-builder -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ReleaseDate: 2023-01-07 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.1.5/Paperlib_2.1.5.exe - InstallerSha256: 017B7D87EF5DBD73D95C655BC9D8CE07FA9854CE853760E3C7C08D00F446BB4C - InstallerSwitches: - Custom: /currentuser - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/GeoffreyChen777/paperlib/releases/download/release-electron-2.1.5/Paperlib_2.1.5.exe - InstallerSha256: 017B7D87EF5DBD73D95C655BC9D8CE07FA9854CE853760E3C7C08D00F446BB4C - InstallerSwitches: - Custom: /allusers - ProductCode: 1d30f4d8-0e3b-5fc9-bdad-f2c67c2b5c34 - ElevationRequirement: elevationRequired -ManifestType: installer -ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.5/FutureScholars.Paperlib.locale.en-US.yaml b/manifests/f/FutureScholars/Paperlib/2.1.5/FutureScholars.Paperlib.locale.en-US.yaml deleted file mode 100644 index ce0a1d74c5f03..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.5/FutureScholars.Paperlib.locale.en-US.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.5 -PackageLocale: en-US -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/en/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2023 Geoffrey Chen -# CopyrightUrl: -ShortDescription: An open-source simple academic paper management tool for computer science. -# Description: -# Moniker: -Tags: -- academics -- article -- citation -- cite -- literature -- paper -- thesis -# Agreements: -ReleaseNotes: |- - 1. Enhance the DBLP scaper for some workshop papers. - 2. Fixed the bibtex output for special char. - 3. Fixed some bugs -ReleaseNotesUrl: https://paperlib.app/en/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.5/FutureScholars.Paperlib.locale.zh-CN.yaml b/manifests/f/FutureScholars/Paperlib/2.1.5/FutureScholars.Paperlib.locale.zh-CN.yaml deleted file mode 100644 index 720a33ac73c3e..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.5/FutureScholars.Paperlib.locale.zh-CN.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.2.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.5 -PackageLocale: zh-CN -Publisher: Geoffrey Chen -PublisherUrl: https://github.com/GeoffreyChen777 -PublisherSupportUrl: https://github.com/GeoffreyChen777/paperlib/issues -# PrivacyUrl: -Author: Geoffrey Chen -PackageName: Paperlib -PackageUrl: https://paperlib.app/cn/ -License: GPL-3.0 -LicenseUrl: https://github.com/GeoffreyChen777/paperlib/blob/master/LICENSE -Copyright: Copyright © 2023 Geoffrey Chen -# CopyrightUrl: -ShortDescription: 一个适合计算机学科的简单好用的论文管理工具 -# Description: -# Moniker: -Tags: -- 学术 -- 引用 -- 文献 -- 论文 -# Agreements: -ReleaseNotes: |- - 1. 优化 DBLP scaper 对部分 workshop 论文的检索结果。 - 2. 修复 BibTex 输出中一些特殊字符的问题。 - 3. 修复一些 Bug。 -ReleaseNotesUrl: https://paperlib.app/cn/release-note.html -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.5/FutureScholars.Paperlib.yaml b/manifests/f/FutureScholars/Paperlib/2.1.5/FutureScholars.Paperlib.yaml deleted file mode 100644 index aae06ab0dd106..0000000000000 --- a/manifests/f/FutureScholars/Paperlib/2.1.5/FutureScholars.Paperlib.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.2.0 diff --git a/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.0.3/flyingpie.windows-terminal-quake.prerelease.installer.yaml b/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.0.3/flyingpie.windows-terminal-quake.prerelease.installer.yaml new file mode 100644 index 0000000000000..40585d3d2df59 --- /dev/null +++ b/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.0.3/flyingpie.windows-terminal-quake.prerelease.installer.yaml @@ -0,0 +1,18 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: flyingpie.windows-terminal-quake.prerelease +PackageVersion: 2.0.0.3 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: wtq.exe + PortableCommandAlias: wtq +Commands: +- wtq +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.0-pre3/win-x64_self-contained.zip + InstallerSha256: ab3b732ba40a7af89169cc23449568faac61eaaa2943e7520ffbb77f25722a5c +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.0.3/flyingpie.windows-terminal-quake.prerelease.locale.en-US.yaml b/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.0.3/flyingpie.windows-terminal-quake.prerelease.locale.en-US.yaml new file mode 100644 index 0000000000000..7e804dca0ffed --- /dev/null +++ b/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.0.3/flyingpie.windows-terminal-quake.prerelease.locale.en-US.yaml @@ -0,0 +1,13 @@ +PackageIdentifier: flyingpie.windows-terminal-quake.prerelease +PackageVersion: 2.0.0.3 +PackageLocale: en-US +Publisher: Flyingpie +PublisherUrl: http://flyingpie.nl/ +PackageName: windows-terminal-quake-prerelease +PackageUrl: https://github.com/flyingpie/windows-terminal-quake +License: MIT +LicenseUrl: https://github.com/flyingpie/windows-terminal-quake/blob/master/LICENSE +ShortDescription: Simple program that adds Quake-style drop down to user-specified applications. +Moniker: windows-terminal-quake-prerelease +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.0.3/flyingpie.windows-terminal-quake.prerelease.yaml b/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.0.3/flyingpie.windows-terminal-quake.prerelease.yaml new file mode 100644 index 0000000000000..582c86b773336 --- /dev/null +++ b/manifests/f/flyingpie/windows-terminal-quake/prerelease/2.0.0.3/flyingpie.windows-terminal-quake.prerelease.yaml @@ -0,0 +1,5 @@ +PackageIdentifier: flyingpie.windows-terminal-quake.prerelease +PackageVersion: 2.0.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/f/foldynl/QLog/0.32.0/foldynl.QLog.installer.yaml b/manifests/f/foldynl/QLog/0.32.0/foldynl.QLog.installer.yaml new file mode 100644 index 0000000000000..3d7fa673b40b0 --- /dev/null +++ b/manifests/f/foldynl/QLog/0.32.0/foldynl.QLog.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: foldynl.QLog +PackageVersion: 0.32.0 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: in -c + SilentWithProgress: in -c + InstallLocation: -t +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2024-02-10 +AppsAndFeaturesEntries: +- Publisher: OK1MLG + DisplayVersion: 0.32.0 + ProductCode: '{ff960799-b4b6-4bc6-8b55-0576e9030a78}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/foldynl/QLog/releases/download/v0.32.0/qlog-installer0.32.0.exe + InstallerSha256: 6457389ECC2B103AC20FFA9156ED9A499CD04658419023062AC18C34FD6612B4 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/f/foldynl/QLog/0.32.0/foldynl.QLog.locale.en-US.yaml b/manifests/f/foldynl/QLog/0.32.0/foldynl.QLog.locale.en-US.yaml new file mode 100644 index 0000000000000..55ff0c21cf8a7 --- /dev/null +++ b/manifests/f/foldynl/QLog/0.32.0/foldynl.QLog.locale.en-US.yaml @@ -0,0 +1,59 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: foldynl.QLog +PackageVersion: 0.32.0 +PackageLocale: en-US +Publisher: foldynl +PublisherUrl: https://github.com/foldynl +PublisherSupportUrl: https://github.com/foldynl/QLog/issues +Author: Ladislav +PackageName: QLog +PackageUrl: https://github.com/foldynl/QLog +License: GPL-3.0 +LicenseUrl: https://github.com/foldynl/QLog/blob/HEAD/LICENSE +Copyright: Copyright (C) 2020 Thomas Gatzweiler +CopyrightUrl: https://github.com/foldynl/QLog/blob/master/README.md#license +ShortDescription: Amateur radio logbook software. +Description: QLog is an Amateur Radio logging application for Linux, Windows and Mac OS. It is based on the Qt framework and uses SQLite as database backend. +Tags: +- amateur-radio +- amateurradio +- fldigi +- hamqth +- hamradio +- logger +- lotw +- open-source +- opensource +- openstreetmap +- qsl +- qso +- qt5 +- qt6 +- radioamateur +- sqlite +ReleaseNotes: |- + - [NEW] - Added Rig Interface Omnirig v1 (Windows only) + - [NEW] - Added Rig Interface Omnirig v2 (Windows only) + - [NEW] - Clublog - Added Clear Clublog and reupload QSOs + - [NEW] - Clublog - Added Real-time Insert/Update/Delete + - [CHANGED] - Clublog - Upload callsign is derived from the Current Profile Callsign + - Fixed clang linker failed issue (issue #301) + - Fixed SAT Mode U/U missing (issue #308 PR #309 thanks @ea5wa) + - Fixed Multiple QSO selection. Callsigns modified by mistake (issue #310) + - Fixed Callbook query cache is not properly cleared when Callbook settings change (issue #313) + Windows Libraries: + Qt 6.6.1 (UPDATED) + openssl 3.2.1 (UPDATED) + hamlib 4.5.5 + qtkeychain 0.13.2Timezone DB: 2023d (Binaries: + Windows: below + Fedora 38: below + Fedora 39: below + MacOS 12: below + Ubuntu 20.04, 22.04, 23.10: via PPA (https://launchpad.net/~foldyna/+archive/ubuntu/qlog) + Flatpak package is available via Flathub. The package contains built-in Trusted QSL. +ReleaseNotesUrl: https://github.com/foldynl/QLog/releases/tag/v0.32.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/f/foldynl/QLog/0.32.0/foldynl.QLog.yaml b/manifests/f/foldynl/QLog/0.32.0/foldynl.QLog.yaml new file mode 100644 index 0000000000000..a4c4e975caac5 --- /dev/null +++ b/manifests/f/foldynl/QLog/0.32.0/foldynl.QLog.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: foldynl.QLog +PackageVersion: 0.32.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/g/GNE/DualMonitorTools/2.10.0.0/GNE.DualMonitorTools.installer.yaml b/manifests/g/GNE/DualMonitorTools/2.10.0.0/GNE.DualMonitorTools.installer.yaml new file mode 100644 index 0000000000000..9d3118352a2f1 --- /dev/null +++ b/manifests/g/GNE/DualMonitorTools/2.10.0.0/GNE.DualMonitorTools.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=NVS0.CRLF.5-1-19041-3930.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.installer.1.6.0.json + +PackageIdentifier: GNE.DualMonitorTools +PackageVersion: 2.10.0.0 +InstallerLocale: en-US +InstallerType: msi +UpgradeBehavior: install +ReleaseDate: 2023-08-27 +Installers: +- Architecture: x86 + InstallerUrl: https://sourceforge.net/projects/dualmonitortool/files/dualmonitortool/2.10/DualMonitorTools-2.10.msi/download + InstallerSha256: 5F0DD6512670939B04CC9C009CEB4FC855943223CFCE23CEAFDA58E23A2DE28B + ProductCode: '{4D12B270-FE84-471F-BA5E-273AEC4A26B1}' +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/g/GNE/DualMonitorTools/2.10.0.0/GNE.DualMonitorTools.locale.en-US.yaml b/manifests/g/GNE/DualMonitorTools/2.10.0.0/GNE.DualMonitorTools.locale.en-US.yaml new file mode 100644 index 0000000000000..8efc81e04fca2 --- /dev/null +++ b/manifests/g/GNE/DualMonitorTools/2.10.0.0/GNE.DualMonitorTools.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=NVS0.CRLF.5-1-19041-3930.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.defaultLocale.1.6.0.json + +PackageIdentifier: GNE.DualMonitorTools +PackageVersion: 2.10.0.0 +PackageLocale: en-US +Publisher: GNE +PublisherUrl: https://dualmonitortool.sourceforge.net/ +PublisherSupportUrl: https://sourceforge.net/projects/dualmonitortool/support +# PrivacyUrl: +Author: GNE +PackageName: Dual Monitor Tools +PackageUrl: https://dualmonitortool.sourceforge.net/ +License: GNU GPL v3 +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: Tools for users with multiple monitors. +# Description: +Moniker: dmt +Tags: +- monitor +- screen +- wallpaper +# ReleaseNotes: +ReleaseNotesUrl: https://dualmonitortool.sourceforge.net/history.html +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/g/GNE/DualMonitorTools/2.10.0.0/GNE.DualMonitorTools.yaml b/manifests/g/GNE/DualMonitorTools/2.10.0.0/GNE.DualMonitorTools.yaml new file mode 100644 index 0000000000000..70240e5b6d549 --- /dev/null +++ b/manifests/g/GNE/DualMonitorTools/2.10.0.0/GNE.DualMonitorTools.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=NVS0.CRLF.5-1-19041-3930.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.version.1.6.0.json + +PackageIdentifier: GNE.DualMonitorTools +PackageVersion: 2.10.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/g/Ghisler/TotalCommander/11.02/Ghisler.TotalCommander.installer.yaml b/manifests/g/Ghisler/TotalCommander/11.02/Ghisler.TotalCommander.installer.yaml index 5265ff728bae5..2b82f0d4182c6 100644 --- a/manifests/g/Ghisler/TotalCommander/11.02/Ghisler.TotalCommander.installer.yaml +++ b/manifests/g/Ghisler/TotalCommander/11.02/Ghisler.TotalCommander.installer.yaml @@ -4,16 +4,35 @@ PackageIdentifier: Ghisler.TotalCommander PackageVersion: "11.02" InstallerType: exe -InstallerSwitches: - Silent: /AH - SilentWithProgress: /AH UpgradeBehavior: install Installers: - Architecture: x64 InstallerUrl: https://totalcommander.ch/win/tcmd1102x64.exe InstallerSha256: 07CDF2D51CB04EE3148AE3399978FC609829908B538C49CABF1953015857987B + Scope: user + InstallerSwitches: + Silent: /AH + SilentWithProgress: /AH - Architecture: x86 InstallerUrl: https://totalcommander.ch/win/tcmd1102x32.exe InstallerSha256: 25C4706EF4519664E5101A8BDC3AFF813B6DD76F05883279608667E25752DF36 + Scope: user + InstallerSwitches: + Silent: /AH + SilentWithProgress: /AH +- Architecture: x64 + InstallerUrl: https://totalcommander.ch/win/tcmd1102x64.exe + InstallerSha256: 07CDF2D51CB04EE3148AE3399978FC609829908B538C49CABF1953015857987B + Scope: machine + InstallerSwitches: + Silent: /AHFN + SilentWithProgress: /AHFN +- Architecture: x86 + InstallerUrl: https://totalcommander.ch/win/tcmd1102x32.exe + InstallerSha256: 25C4706EF4519664E5101A8BDC3AFF813B6DD76F05883279608667E25752DF36 + Scope: machine + InstallerSwitches: + Silent: /AHFN + SilentWithProgress: /AHFN ManifestType: installer ManifestVersion: 1.5.0 diff --git a/manifests/g/GlennDelahoy/SnappyDriverInstallerOrigin/1.12.20/GlennDelahoy.SnappyDriverInstallerOrigin.installer.yaml b/manifests/g/GlennDelahoy/SnappyDriverInstallerOrigin/1.12.20/GlennDelahoy.SnappyDriverInstallerOrigin.installer.yaml new file mode 100644 index 0000000000000..1ca31bb4806c9 --- /dev/null +++ b/manifests/g/GlennDelahoy/SnappyDriverInstallerOrigin/1.12.20/GlennDelahoy.SnappyDriverInstallerOrigin.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: GlennDelahoy.SnappyDriverInstallerOrigin +PackageVersion: 1.12.20 +InstallerType: zip +NestedInstallerType: portable +AppsAndFeaturesEntries: +- DisplayVersion: 1.12.20.761 +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: SDIO_x64_R761.exe + PortableCommandAlias: SDIO + InstallerUrl: https://www.glenn.delahoy.com/downloads/sdio/SDIO_1.12.20.761.zip + InstallerSha256: A7182BEA784AFE2A74D8AA3701FDBC6F06946CE4E50948B3B4B5D0D067B5755B +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: SDIO_R761.exe + PortableCommandAlias: SDIO + InstallerUrl: https://www.glenn.delahoy.com/downloads/sdio/SDIO_1.12.20.761.zip + InstallerSha256: A7182BEA784AFE2A74D8AA3701FDBC6F06946CE4E50948B3B4B5D0D067B5755B +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/g/GlennDelahoy/SnappyDriverInstallerOrigin/1.12.20/GlennDelahoy.SnappyDriverInstallerOrigin.locale.en-US.yaml b/manifests/g/GlennDelahoy/SnappyDriverInstallerOrigin/1.12.20/GlennDelahoy.SnappyDriverInstallerOrigin.locale.en-US.yaml new file mode 100644 index 0000000000000..a84ca192d76de --- /dev/null +++ b/manifests/g/GlennDelahoy/SnappyDriverInstallerOrigin/1.12.20/GlennDelahoy.SnappyDriverInstallerOrigin.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: GlennDelahoy.SnappyDriverInstallerOrigin +PackageVersion: 1.12.20 +PackageLocale: en-US +Publisher: Glenn Delahoy +PublisherUrl: https://www.glenn.delahoy.com/ +PublisherSupportUrl: https://www.glenn.delahoy.com/forums/forum/snappy-driver-installer-origin/ +PrivacyUrl: https://www.glenn.delahoy.com/privacy-policy/ +Author: Glenn Delahoy +PackageName: Snappy Driver Installer Origin +PackageUrl: https://www.glenn.delahoy.com/snappy-driver-installer-origin/ +License: GPLv3 +LicenseUrl: https://www.glenn.delahoy.com/snappy-driver-installer-origin/ +ShortDescription: Install Missing Drivers and Update Old Drivers +Description: Snappy Driver Installer Origin is a portable Windows tool to install and update device drivers. It can be used offline to install drivers where Internet isn’t available. No more searching for drivers after a clean install, just let Snappy Driver Installer Origin do it’s thing and your job will be done in no time. The perfect technician’s tool. +PurchaseUrl: https://www.glenn.delahoy.com/subscribe-to-snappy-driver-installer-origin/ +ReleaseNotesUrl: https://www.glenn.delahoy.com/downloads/sdio/changelog.txt +Documentations: +- DocumentLabel: FAQs + DocumentUrl: https://www.glenn.delahoy.com/sdio-faq/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.5.1/Bosyun.BoardMix.CN.yaml b/manifests/g/GlennDelahoy/SnappyDriverInstallerOrigin/1.12.20/GlennDelahoy.SnappyDriverInstallerOrigin.yaml similarity index 54% rename from manifests/b/Bosyun/BoardMix/CN/1.5.1/Bosyun.BoardMix.CN.yaml rename to manifests/g/GlennDelahoy/SnappyDriverInstallerOrigin/1.12.20/GlennDelahoy.SnappyDriverInstallerOrigin.yaml index b08d38ec3316b..a650197c3b09d 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.5.1/Bosyun.BoardMix.CN.yaml +++ b/manifests/g/GlennDelahoy/SnappyDriverInstallerOrigin/1.12.20/GlennDelahoy.SnappyDriverInstallerOrigin.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.2.10 $debug=QUSU.CRLF.7-3-9.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.5.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: GlennDelahoy.SnappyDriverInstallerOrigin +PackageVersion: 1.12.20 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/g/GoACME/lego/4.15.0/GoACME.lego.installer.yaml b/manifests/g/GoACME/lego/4.15.0/GoACME.lego.installer.yaml index 7de786db1b9f4..f497374d72ac2 100644 --- a/manifests/g/GoACME/lego/4.15.0/GoACME.lego.installer.yaml +++ b/manifests/g/GoACME/lego/4.15.0/GoACME.lego.installer.yaml @@ -8,7 +8,7 @@ InstallerType: zip NestedInstallerType: portable NestedInstallerFiles: - RelativeFilePath: lego.exe - PortableCommandAlias: lego.exe + PortableCommandAlias: lego UpgradeBehavior: install ReleaseDate: 2024-01-28 Installers: @@ -18,6 +18,9 @@ Installers: - Architecture: x64 InstallerUrl: https://github.com/go-acme/lego/releases/download/v4.15.0/lego_v4.15.0_windows_amd64.zip InstallerSha256: F1BA309EFCC15FA67617AAAF7C9A528FBE361BC0C8176E9FC19F704448AB490E +- Architecture: arm + InstallerUrl: https://github.com/go-acme/lego/releases/download/v4.15.0/lego_v4.15.0_windows_armv7.zip + InstallerSha256: D72F3D63D9D2351E64CAD694F0369D6ECE081439FB87C0A70A2EEF9719234226 - Architecture: arm64 InstallerUrl: https://github.com/go-acme/lego/releases/download/v4.15.0/lego_v4.15.0_windows_arm64.zip InstallerSha256: 902AE68D9FC08AB09EE7C110018F7C720C18409716FEE1F4526788A0145D51D7 diff --git a/manifests/g/Google/GoogleDrive/86.0.9.0/Google.GoogleDrive.installer.yaml b/manifests/g/Google/GoogleDrive/86.0.9.0/Google.GoogleDrive.installer.yaml new file mode 100644 index 0000000000000..c604098b856fe --- /dev/null +++ b/manifests/g/Google/GoogleDrive/86.0.9.0/Google.GoogleDrive.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Google.GoogleDrive +PackageVersion: 86.0.9.0 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: --silent --skip_launch_new --gsuite_shortcuts=false + SilentWithProgress: --silent --skip_launch_new --gsuite_shortcuts=false +ExpectedReturnCodes: +- InstallerReturnCode: 1603 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/drive-file-stream/etcnu5qqd4dvtsyq5szk7ovjwa_86.0.9.0/setup.exe + InstallerSha256: 199DFE13BE49FEA70CED47B922DBE114417BF50026E4DFA9C1DC1E23AB84C8FF + ProductCode: '{6BBAE539-2232-434A-A4E5-9A33560C6283}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/g/Google/GoogleDrive/86.0.9.0/Google.GoogleDrive.locale.en-US.yaml b/manifests/g/Google/GoogleDrive/86.0.9.0/Google.GoogleDrive.locale.en-US.yaml new file mode 100644 index 0000000000000..0b66ba1a04288 --- /dev/null +++ b/manifests/g/Google/GoogleDrive/86.0.9.0/Google.GoogleDrive.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Google.GoogleDrive +PackageVersion: 86.0.9.0 +PackageLocale: en-US +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/ +PrivacyUrl: https://policies.google.com/privacy +Author: Google LLC +PackageName: Google Drive +PackageUrl: https://www.google.com/drive/download/ +License: Proprietary +LicenseUrl: https://www.google.com/drive/terms-of-service/ +Copyright: Copyright(c) 2024 Google LLC. All Rights Reserved. +# CopyrightUrl: +ShortDescription: Safely store your files and access them from any device +Description: Choose folders on your computer to sync with Google Drive or backup to Google Photos, and access all of your content directly from your PC or Mac +Moniker: google-drive +Tags: +- backup +- cloud +- cloud-drive +- download +- drive +- file +- netdisk +- share +- sync +- upload +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/g/Google/GoogleDrive/86.0.9.0/Google.GoogleDrive.locale.zh-CN.yaml b/manifests/g/Google/GoogleDrive/86.0.9.0/Google.GoogleDrive.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5e71968dfb067 --- /dev/null +++ b/manifests/g/Google/GoogleDrive/86.0.9.0/Google.GoogleDrive.locale.zh-CN.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Google.GoogleDrive +PackageVersion: 86.0.9.0 +PackageLocale: zh-CN +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/ +PrivacyUrl: https://policies.google.com/privacy +Author: Google LLC +PackageName: Google Drive +PackageUrl: https://www.google.com/drive/download/ +License: 专有软件 +LicenseUrl: https://www.google.com/drive/terms-of-service/ +Copyright: Copyright(c) 2024 Google LLC. 保留所有权利。 +# CopyrightUrl: +ShortDescription: 安全存储文件,且可以通过任意设备访问 +Description: 在计算机上选择要同步到 Google 云端硬盘或备份到 Google 相册的文件夹,然后直接通过 PC 或 Mac 访问您的所有内容 +# Moniker: +Tags: +- 上传 +- 下载 +- 云 +- 云盘 +- 共享 +- 分享 +- 同步 +- 备份 +- 文件 +- 网盘 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/g/Google/GoogleDrive/86.0.9.0/Google.GoogleDrive.yaml b/manifests/g/Google/GoogleDrive/86.0.9.0/Google.GoogleDrive.yaml new file mode 100644 index 0000000000000..996dc0986d2e8 --- /dev/null +++ b/manifests/g/Google/GoogleDrive/86.0.9.0/Google.GoogleDrive.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Google.GoogleDrive +PackageVersion: 86.0.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/h/HandBrake/HandBrake/1.7.3/HandBrake.HandBrake.installer.yaml b/manifests/h/HandBrake/HandBrake/1.7.3/HandBrake.HandBrake.installer.yaml new file mode 100644 index 0000000000000..2067041056294 --- /dev/null +++ b/manifests/h/HandBrake/HandBrake/1.7.3/HandBrake.HandBrake.installer.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: HandBrake.HandBrake +PackageVersion: 1.7.3 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.6 +ProductCode: HandBrake +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/HandBrake/HandBrake/releases/download/1.7.3/HandBrake-1.7.3-x86_64-Win_GUI.exe + InstallerSha256: F80829D30029BA255675929587F2B6665DE2790E52B24845B92D1427C8893264 +- Architecture: arm64 + InstallerUrl: https://github.com/HandBrake/HandBrake/releases/download/1.7.3/HandBrake-1.7.3-arm64-Win_GUI.exe + InstallerSha256: 78E5E2E7061136EB0066BBFA3759A27A45A20CD3280FA30E5FA369BD06A8D22E +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/h/HandBrake/HandBrake/1.7.3/HandBrake.HandBrake.locale.en-US.yaml b/manifests/h/HandBrake/HandBrake/1.7.3/HandBrake.HandBrake.locale.en-US.yaml new file mode 100644 index 0000000000000..425dde2c2d758 --- /dev/null +++ b/manifests/h/HandBrake/HandBrake/1.7.3/HandBrake.HandBrake.locale.en-US.yaml @@ -0,0 +1,48 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: HandBrake.HandBrake +PackageVersion: 1.7.3 +PackageLocale: en-US +Publisher: The HandBrake Team +PublisherUrl: https://github.com/HandBrake/HandBrake +PublisherSupportUrl: https://github.com/HandBrake/HandBrake/issues +Author: The HandBrake Team +PackageName: HandBrake +License: GNU General Public License v2 +LicenseUrl: https://github.com/HandBrake/HandBrake/blob/HEAD/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/HandBrake/HandBrake/master/LICENSE +ShortDescription: HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs. +Moniker: handbrake +Tags: +- media +- transcode +- video +- video-transcoding +ReleaseNotes: |- + Upgrade Notice + Before updating HandBrake, please make sure there are no pending encodes in the queue, and be sure to make a backup of any custom presets and app preferences you have, as they may not be compatible with newer versions.Windows users, please make sure to install Microsoft .NET Desktop Runtime version 6.0.x. Read carefully: you need the DESKTOP runtime. You must install .NET 6 even if you have installed .NET 7 or 8HandBrake 1.7.3 + All platforms + General + - Fixed formatting leading zeros for timestamps in logs + - Miscellaneous bug fixes and improvements + Video + - Fixed an issue that could potentially cause incorrect detection of source FPS value (#5677) + Subtitles + - Fixed tx3g to SSA subtitles conversion + Linux + - Fixed the "All Files" open file dialog filter to really show all files + - Fixed an issue where adding a new default audio track automatically set the gain to -20 dB + Mac + - Fixed a regression introduced in HandBrake 1.7.2 by the workaround for VideoToolbox crashes on Sonoma + - Miscellaneous bug fixes and improvements + Windows + - Improved security hardening of loading of DLL files within libhb by limiting search scope (#5724) + - Improved keyboard navigation on Chapters tab (#5679) + - Fixed an issue that could cause encodes to appear stalled when process isolation is turned on + - Fixed an issue that could prevent QSV decode from being used when a system also has a non-Intel GPU + - Fixed an issue where the drive label was not always correctly detected (#5711) + - Miscellaneous bug fixes and improvements +ReleaseNotesUrl: https://github.com/HandBrake/HandBrake/releases/tag/1.7.3 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/h/HandBrake/HandBrake/1.7.3/HandBrake.HandBrake.yaml b/manifests/h/HandBrake/HandBrake/1.7.3/HandBrake.HandBrake.yaml new file mode 100644 index 0000000000000..36a59d3957848 --- /dev/null +++ b/manifests/h/HandBrake/HandBrake/1.7.3/HandBrake.HandBrake.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: HandBrake.HandBrake +PackageVersion: 1.7.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/17/17.0.10.7/IBM.SemeruRuntimeOpenEdition.JDK.17.installer.yaml b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/17/17.0.10.7/IBM.SemeruRuntimeOpenEdition.JDK.17.installer.yaml new file mode 100644 index 0000000000000..6bba7cb6c0881 --- /dev/null +++ b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/17/17.0.10.7/IBM.SemeruRuntimeOpenEdition.JDK.17.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: IBM.SemeruRuntimeOpenEdition.JDK.17 +PackageVersion: 17.0.10.7 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +ProductCode: '{E0DCD439-BC03-4626-8D49-A33BF994A100}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ibmruntimes/semeru17-binaries/releases/download/jdk-17.0.10%2B7_openj9-0.43.0/ibm-semeru-open-jdk_x64_windows_17.0.10_7_openj9-0.43.0.msi + InstallerSha256: 79DB4D3E59A42976E33490D8A55AAB404BD73E4AF8010B2BB107D194FE2BBA36 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/17/17.0.10.7/IBM.SemeruRuntimeOpenEdition.JDK.17.locale.en-US.yaml b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/17/17.0.10.7/IBM.SemeruRuntimeOpenEdition.JDK.17.locale.en-US.yaml new file mode 100644 index 0000000000000..8727fe63069d0 --- /dev/null +++ b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/17/17.0.10.7/IBM.SemeruRuntimeOpenEdition.JDK.17.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: IBM.SemeruRuntimeOpenEdition.JDK.17 +PackageVersion: 17.0.10.7 +PackageLocale: en-US +Publisher: IBM +PackageName: IBM Semeru Runtime Open Edition (JDK) 17 +License: GPLv2+CE +ShortDescription: The IBM Semeru Runtimes are free production-ready binaries built with the OpenJDK class libraries and the Eclipse OpenJ9 JVM, which delivers the power and performance to run your Java applications, when you need it most. +Tags: +- java +- jdk +- openjdk +- openj9 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/17/17.0.10.7/IBM.SemeruRuntimeOpenEdition.JDK.17.yaml b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/17/17.0.10.7/IBM.SemeruRuntimeOpenEdition.JDK.17.yaml new file mode 100644 index 0000000000000..9a594bc5593c2 --- /dev/null +++ b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/17/17.0.10.7/IBM.SemeruRuntimeOpenEdition.JDK.17.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: IBM.SemeruRuntimeOpenEdition.JDK.17 +PackageVersion: 17.0.10.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JDK.installer.yaml b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JDK.installer.yaml new file mode 100644 index 0000000000000..b091be736b6b3 --- /dev/null +++ b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JDK.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: IBM.SemeruRuntimeOpenEdition.JDK +PackageVersion: 21.0.2.13 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +ProductCode: '{073163B2-5AB3-42EA-A7FF-8B4753DAB60E}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jdk_x64_windows_21.0.2_13_openj9-0.43.0.msi + InstallerSha256: 138AA8CABB4D7B59A8F1C064AE98569A3E3A7A9E09A15D629508B19179770F4A +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JDK.locale.en-US.yaml b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JDK.locale.en-US.yaml new file mode 100644 index 0000000000000..92eaddda0d789 --- /dev/null +++ b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JDK.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: IBM.SemeruRuntimeOpenEdition.JDK +PackageVersion: 21.0.2.13 +PackageLocale: en-US +Publisher: IBM +PackageName: IBM Semeru Runtime Open Edition (JDK) +License: GPLv2+CE +ShortDescription: The IBM Semeru Runtimes are free production-ready binaries built with the OpenJDK class libraries and the Eclipse OpenJ9 JVM, which delivers the power and performance to run your Java applications, when you need it most. +Tags: +- java +- jdk +- openjdk +- openj9 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JDK.yaml b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JDK.yaml new file mode 100644 index 0000000000000..67cd876c02d60 --- /dev/null +++ b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JDK.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: IBM.SemeruRuntimeOpenEdition.JDK +PackageVersion: 21.0.2.13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/8/8.0.402.6/IBM.SemeruRuntimeOpenEdition.JDK.8.installer.yaml b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/8/8.0.402.6/IBM.SemeruRuntimeOpenEdition.JDK.8.installer.yaml new file mode 100644 index 0000000000000..ee917ff2fdbba --- /dev/null +++ b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/8/8.0.402.6/IBM.SemeruRuntimeOpenEdition.JDK.8.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: IBM.SemeruRuntimeOpenEdition.JDK.8 +PackageVersion: 8.0.402.6 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_x86-32_windows_8u402b06_openj9-0.43.0.msi + InstallerSha256: FA942DEB2599778EF4066B7F4EDAE5947C55627AA2C90CE345A415500B15EE81 + ProductCode: '{AA0D602D-537F-473F-B690-95021C4735FE}' +- Architecture: x64 + InstallerUrl: https://github.com/ibmruntimes/semeru8-binaries/releases/download/jdk8u402-b06_openj9-0.43.0/ibm-semeru-open-jdk_x64_windows_8u402b06_openj9-0.43.0.msi + InstallerSha256: A636F77B153CEA120D090BDD138FD249BF4AA3D4D138A4B8AEF258AE2D353A79 + ProductCode: '{FD30587A-F195-44E6-8D06-053766306DF3}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/8/8.0.402.6/IBM.SemeruRuntimeOpenEdition.JDK.8.locale.en-US.yaml b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/8/8.0.402.6/IBM.SemeruRuntimeOpenEdition.JDK.8.locale.en-US.yaml new file mode 100644 index 0000000000000..2d680abc8ff05 --- /dev/null +++ b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/8/8.0.402.6/IBM.SemeruRuntimeOpenEdition.JDK.8.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: IBM.SemeruRuntimeOpenEdition.JDK.8 +PackageVersion: 8.0.402.6 +PackageLocale: en-US +Publisher: IBM +PackageName: IBM Semeru Runtime Open Edition (JDK) 8 +License: GPLv2+CE +ShortDescription: The IBM Semeru Runtimes are free production-ready binaries built with the OpenJDK class libraries and the Eclipse OpenJ9 JVM, which delivers the power and performance to run your Java applications, when you need it most. +Tags: +- java +- jdk +- openjdk +- openj9 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/8/8.0.402.6/IBM.SemeruRuntimeOpenEdition.JDK.8.yaml b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/8/8.0.402.6/IBM.SemeruRuntimeOpenEdition.JDK.8.yaml new file mode 100644 index 0000000000000..b5b26f0c6785a --- /dev/null +++ b/manifests/i/IBM/SemeruRuntimeOpenEdition/JDK/8/8.0.402.6/IBM.SemeruRuntimeOpenEdition.JDK.8.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: IBM.SemeruRuntimeOpenEdition.JDK.8 +PackageVersion: 8.0.402.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/i/IBM/SemeruRuntimeOpenEdition/JRE/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JRE.installer.yaml b/manifests/i/IBM/SemeruRuntimeOpenEdition/JRE/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JRE.installer.yaml new file mode 100644 index 0000000000000..f5d363a9f1d06 --- /dev/null +++ b/manifests/i/IBM/SemeruRuntimeOpenEdition/JRE/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JRE.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: IBM.SemeruRuntimeOpenEdition.JRE +PackageVersion: 21.0.2.13 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{CE5BA8C0-E7A1-4B35-8D31-41DEF5400101}' +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ibmruntimes/semeru21-binaries/releases/download/jdk-21.0.2%2B13_openj9-0.43.0/ibm-semeru-open-jre_x64_windows_21.0.2_13_openj9-0.43.0.msi + InstallerSha256: 7B6C0AEBAE7C5E6D4EC6E8B0C1E4CDAAF839AA96E3E103D65AD6F2D231B8D952 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/i/IBM/SemeruRuntimeOpenEdition/JRE/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JRE.locale.en-US.yaml b/manifests/i/IBM/SemeruRuntimeOpenEdition/JRE/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JRE.locale.en-US.yaml new file mode 100644 index 0000000000000..e0c73db3ec144 --- /dev/null +++ b/manifests/i/IBM/SemeruRuntimeOpenEdition/JRE/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JRE.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: IBM.SemeruRuntimeOpenEdition.JRE +PackageVersion: 21.0.2.13 +PackageLocale: en-US +Publisher: IBM +PackageName: IBM Semeru Runtime Open Edition (JRE) +License: GPLv2+CE +ShortDescription: The IBM Semeru Runtimes are free production-ready binaries built with the OpenJDK class libraries and the Eclipse OpenJ9 JVM, which delivers the power and performance to run your Java applications, when you need it most. +Tags: +- java +- jdk +- openjdk +- openj9 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/i/IBM/SemeruRuntimeOpenEdition/JRE/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JRE.yaml b/manifests/i/IBM/SemeruRuntimeOpenEdition/JRE/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JRE.yaml new file mode 100644 index 0000000000000..99d5bfad683c8 --- /dev/null +++ b/manifests/i/IBM/SemeruRuntimeOpenEdition/JRE/21.0.2.13/IBM.SemeruRuntimeOpenEdition.JRE.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: IBM.SemeruRuntimeOpenEdition.JRE +PackageVersion: 21.0.2.13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/i/ImageMagick/ImageMagick/7.1.1.28/ImageMagick.ImageMagick.installer.yaml b/manifests/i/ImageMagick/ImageMagick/7.1.1.28/ImageMagick.ImageMagick.installer.yaml new file mode 100644 index 0000000000000..0a7e37412ae51 --- /dev/null +++ b/manifests/i/ImageMagick/ImageMagick/7.1.1.28/ImageMagick.ImageMagick.installer.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: ImageMagick.ImageMagick +PackageVersion: 7.1.1.28 +InstallerType: inno +Scope: machine +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART +UpgradeBehavior: install +Commands: +- magick +FileExtensions: +- bmp +- eps +- gif +- jpg +- mif +- miff +- png +- svg +- tif +- tiff +- wmf +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x86 + InstallerUrl: https://imagemagick.org/archive/binaries/ImageMagick-7.1.1-28-Q16-HDRI-x86-dll.exe + InstallerSha256: 277631FCD88A03B9D17D0146EB5C18A680052F1B83C9091E79D2911B0360D812 + ProductCode: ImageMagick 7.1.1 Q16-HDRI (32-bit)_is1 +- Architecture: x64 + InstallerUrl: https://imagemagick.org/archive/binaries/ImageMagick-7.1.1-28-Q16-HDRI-x64-dll.exe + InstallerSha256: 4723C47CF110604E00D937130AC41EC4CBF285D4AD3B461659B16C0BE24E9023 + ProductCode: ImageMagick 7.1.1 Q16-HDRI (64-bit)_is1 +- Architecture: arm64 + InstallerUrl: https://imagemagick.org/archive/binaries/ImageMagick-7.1.1-28-Q16-HDRI-arm64-dll.exe + InstallerSha256: FE70555243E7E677253C1A97865643366180D77EA27AA0CC035C2BD983B5F3E9 + ProductCode: ImageMagick 7.1.1 Q16-HDRI (arm64)_is1 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/i/ImageMagick/ImageMagick/7.1.1.28/ImageMagick.ImageMagick.locale.en-US.yaml b/manifests/i/ImageMagick/ImageMagick/7.1.1.28/ImageMagick.ImageMagick.locale.en-US.yaml new file mode 100644 index 0000000000000..d43f1ab4278e9 --- /dev/null +++ b/manifests/i/ImageMagick/ImageMagick/7.1.1.28/ImageMagick.ImageMagick.locale.en-US.yaml @@ -0,0 +1,80 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: ImageMagick.ImageMagick +PackageVersion: 7.1.1.28 +PackageLocale: en-US +Publisher: ImageMagick Studio LLC +PublisherUrl: https://github.com/ImageMagick/ImageMagick +PublisherSupportUrl: https://github.com/ImageMagick/ImageMagick/issues +# PrivacyUrl: +Author: ImageMagick Studio LLC +PackageName: ImageMagick +PackageUrl: https://imagemagick.org +License: Apache-2.0 Derivative +LicenseUrl: https://imagemagick.org/script/license.php +Copyright: Copyright (c) 1999 ImageMagick Studio LLC +CopyrightUrl: https://imagemagick.org/script/license.php +ShortDescription: Use ImageMagick to create, edit, compose, or convert digital images. +# Description: +# Moniker: +Tags: +- bitmap +- colors +- convert +- distort +- draw +- effects +- flip +- images +- mirror +- resize +- rotate +- shear +ReleaseNotes: |- + Merged + - fix misleading comment in dds.c #7075 + Commits + - beta release 868642e + - Bump azure/azure-code-signing-action from 0.2.22 to 0.2.26 1aa50ea + - updated link f69389a + - eliminate extraneous EXIF comma c4b3e14 + - Do not leak memory when throwing in the constructor aa4afc5 + - escape { when writing MIFF images (https://github.com/ImageMagick/ImageMagick/issues/7071) 97432f1 + - protect '{' in MIFF key/value pairs dd171d1 + - ... 52c0001 + - set visible image artifac 2c6c09d + - include version header be0f61a + - Bump azure/azure-code-signing-action from 0.2.26 to 0.3.0 438b9ab + - extent buffer by the maximum field size ce9b069 + - enable error diffusion for -posterize (https://github.com/ImageMagick/ImageMagick/issues/7079) b103653 + - refactor posterize macro 122a1f6 + - improve posterize algorithm 92c93c3 + - refactor posterize pixel macro 114f958 + - eliminate compiler warning 79f137d + - support setting the image registry 73e6f63 + - modify posterize algorithm (https://github.com/ImageMagick/ImageMagick/issues/7079) 4b6843d + - eliminate compiler warning 03af658 + - eliminate compiler warning e73215c + - check for class recursion 5a549df + - Raise warning instead of error when xmp profile can not be validated. 832aabf + - Fixed running identify one dds files with a cubemap. e9702b4 + - Renamed method that skips the mipmaps. c317606 + - Corrected check for width and height when skipping the mipmaps. 59fa6fd + - Set ttl to time when the image will expire instead of the duration that the image can be used. d3735ed + - improve time-to-live formatting 12b1e53 + - Added HEIC_COMPUTE_NUMERIC_VERSION to make the version checks more readable. 0c0f0a4 + - fix incorrect stroke opacity (https://github.com/ImageMagick/ImageMagick/issues/7097) fab46a4 + - correct pixel offset validation method 3be0fa7 + - if resampling fails, replace with invalid pixel b0f6c05 + - Also allow invalid length where 8 was added to the header size. 5c7fbe3 + - release b206758 + - release 365d9b6 +ReleaseNotesUrl: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md#711-28---2024-02-11 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Anatomy of the Command-line + DocumentUrl: https://imagemagick.org/script/command-line-processing.php +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/i/ImageMagick/ImageMagick/7.1.1.28/ImageMagick.ImageMagick.yaml b/manifests/i/ImageMagick/ImageMagick/7.1.1.28/ImageMagick.ImageMagick.yaml new file mode 100644 index 0000000000000..3f7271197609d --- /dev/null +++ b/manifests/i/ImageMagick/ImageMagick/7.1.1.28/ImageMagick.ImageMagick.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: ImageMagick.ImageMagick +PackageVersion: 7.1.1.28 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.installer.yaml b/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.installer.yaml index 0ced135a849c6..8f7fbb0e92370 100644 --- a/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.installer.yaml +++ b/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Intel.IntelDriverAndSupportAssistant diff --git a/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml b/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml index d7c2d49557364..45e059f9c4a51 100644 --- a/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml +++ b/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Intel.IntelDriverAndSupportAssistant diff --git a/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.yaml b/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.yaml index 6fcff653ef23d..15b9d38b3de0b 100644 --- a/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.yaml +++ b/manifests/i/Intel/IntelDriverAndSupportAssistant/23.4.39.9/Intel.IntelDriverAndSupportAssistant.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Intel.IntelDriverAndSupportAssistant diff --git a/manifests/j/JFrog/Cli/2.46.3/JFrog.Cli.installer.yaml b/manifests/j/JFrog/Cli/2.46.3/JFrog.Cli.installer.yaml new file mode 100644 index 0000000000000..1311c477c9763 --- /dev/null +++ b/manifests/j/JFrog/Cli/2.46.3/JFrog.Cli.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.installer.1.6.0.json + +PackageIdentifier: JFrog.Cli +PackageVersion: 2.46.3 +InstallerLocale: en-US +InstallerType: portable +Commands: +- jf +Installers: +- Architecture: x64 + InstallerUrl: https://releases.jfrog.io/artifactory/jfrog-cli/v2/2.46.3/jfrog-cli-windows-amd64/jfrog.exe + InstallerSha256: BD03F27C1401BDC550BAE5388A331DE218EF33C5EA0D0E11D86935B7DA373A75 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/j/JFrog/Cli/2.46.3/JFrog.Cli.locale.en-US.yaml b/manifests/j/JFrog/Cli/2.46.3/JFrog.Cli.locale.en-US.yaml new file mode 100644 index 0000000000000..1a4a1d6255e2a --- /dev/null +++ b/manifests/j/JFrog/Cli/2.46.3/JFrog.Cli.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.defaultLocale.1.6.0.json + +PackageIdentifier: JFrog.Cli +PackageVersion: 2.46.3 +PackageLocale: en-US +Publisher: JFrog Ltd +PublisherUrl: https://jfrog.com +PublisherSupportUrl: https://jfrog.com/contact-us +PrivacyUrl: https://jfrog.com/privacy-policy +# Author: +PackageName: JFrog CLI +PackageUrl: https://jfrog.com/getcli +License: Apache License, version 2. +LicenseUrl: https://github.com/jfrog/jfrog-cli/blob/v2/LICENSE +# Copyright: +# CopyrightUrl: +ShortDescription: JFrog CLI is a compact and smart client that provides a simple interface that automates access to Artifactory and Mission Control through their respective REST APIs. +# Description: +Moniker: jf +Tags: +- artifactory +- jfrog +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/j/JFrog/Cli/2.46.3/JFrog.Cli.yaml b/manifests/j/JFrog/Cli/2.46.3/JFrog.Cli.yaml new file mode 100644 index 0000000000000..cb10956e784ce --- /dev/null +++ b/manifests/j/JFrog/Cli/2.46.3/JFrog.Cli.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.version.1.6.0.json + +PackageIdentifier: JFrog.Cli +PackageVersion: 2.46.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1721/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.21.1721/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..ccc44f4e5d868 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1721/Jackett.Jackett.installer.yaml @@ -0,0 +1,20 @@ +# 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: Jackett.Jackett +PackageVersion: 0.21.1721 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2024-02-10 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.21.1721/Jackett.Installer.Windows.exe + InstallerSha256: 3C666CFD38F85C04FD8552634B08442D2D8FBB52F6AC2BB8385569FD5BF6450E +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1721/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.21.1721/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..7ef78707f43fb --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1721/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,43 @@ +# 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: Jackett.Jackett +PackageVersion: 0.21.1721 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - torrent911: new domain + - gktorrent; new domain + - mejortorrent: cant use 100.Megabytes() with a constant. switched to var + - mejortorrent: use size in units for readability + - dontorrent: use size in units for readability + - siambit: new domain (#15046) +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.21.1721 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1721/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.21.1721/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..911d6647c312b --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1721/Jackett.Jackett.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.21.1721 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1730/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.21.1730/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..c3c7097f28f3e --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1730/Jackett.Jackett.installer.yaml @@ -0,0 +1,20 @@ +# 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: Jackett.Jackett +PackageVersion: 0.21.1730 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2024-02-10 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.21.1730/Jackett.Installer.Windows.exe + InstallerSha256: 512B6DE55F51BB44D1854777BEB23DEB6EB8139FAD07D3E665B967BC280FE608 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1730/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.21.1730/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..52bd09cc8088a --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1730/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,41 @@ +# 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: Jackett.Jackett +PackageVersion: 0.21.1730 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - Wolfmax4K: add Spanish public tracker. resolves #14511 (#15045) + - torrentz2eu: removed. resolves #10959 + - divxtotal: new subdomain + - finelite: new category selector. resolves #15040 +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.21.1730 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1730/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.21.1730/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..0cb1e98ae708b --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1730/Jackett.Jackett.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.21.1730 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1735/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.21.1735/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..93fdced7f203a --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1735/Jackett.Jackett.installer.yaml @@ -0,0 +1,20 @@ +# 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: Jackett.Jackett +PackageVersion: 0.21.1735 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2024-02-12 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.21.1735/Jackett.Installer.Windows.exe + InstallerSha256: 090D284DEC4653E443DF7E80FB0A678BF8010D85965B858EB85581C8A2D81556 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1735/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.21.1735/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..b8ac641579a38 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1735/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,42 @@ +# 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: Jackett.Jackett +PackageVersion: 0.21.1735 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - torrentsir: dump domain + - mejortorrent: bump subdomain + - torrentdownload: revert keywordless search to homepage + - hdcztorrent: exclude recommended results + - solidtorrents: removed nocensor proxy. #4751 +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.21.1735 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/j/Jackett/Jackett/0.21.1735/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.21.1735/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..a812918b6e0d3 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.21.1735/Jackett.Jackett.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Jackett.Jackett +PackageVersion: 0.21.1735 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/19.10.0/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/19.10.0/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 0000000000000..704d729564d70 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/19.10.0/JanDeDobbeleer.OhMyPosh.installer.yaml @@ -0,0 +1,53 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 19.10.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v19.10.0/install-amd64.exe + InstallerSha256: 44674C56DCD7BE6E523C16C9F8AFD5BA5CDF6143600E67F9423C2FBCB3E673AE + InstallerSwitches: + Custom: /INSTALLER=winget /ALLUSERS +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v19.10.0/install-amd64.exe + InstallerSha256: 44674C56DCD7BE6E523C16C9F8AFD5BA5CDF6143600E67F9423C2FBCB3E673AE + InstallerSwitches: + Custom: /INSTALLER=winget /CURRENTUSER +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v19.10.0/install-386.exe + InstallerSha256: 6A0CC7C7BD167A5D5A7F3C349D899856577423BBB1F7AB09E49849B2C5837706 + InstallerSwitches: + Custom: /INSTALLER=winget /ALLUSERS +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v19.10.0/install-386.exe + InstallerSha256: 6A0CC7C7BD167A5D5A7F3C349D899856577423BBB1F7AB09E49849B2C5837706 + InstallerSwitches: + Custom: /INSTALLER=winget /CURRENTUSER +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v19.10.0/install-arm64.exe + InstallerSha256: 03AE470F7AABB1C6DAED77CB3DC07D8D0748EC8EF8279633D20DCA22F7A474DE + InstallerSwitches: + Custom: /INSTALLER=winget /ALLUSERS +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v19.10.0/install-arm64.exe + InstallerSha256: 03AE470F7AABB1C6DAED77CB3DC07D8D0748EC8EF8279633D20DCA22F7A474DE + InstallerSwitches: + Custom: /INSTALLER=winget /CURRENTUSER +ManifestType: installer +ManifestVersion: 1.4.0 +ReleaseDate: 2024-02-12 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/19.10.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/19.10.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 0000000000000..989412d771e10 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/19.10.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 19.10.0 +PackageLocale: en-US +Publisher: Jan De Dobbeleer +PublisherUrl: https://github.com/JanDeDobbeleer/oh-my-posh/ +PublisherSupportUrl: https://github.com/JanDeDobbeleer/oh-my-posh/issues +Author: Jan De Dobbeleer +PackageName: Oh My Posh +PackageUrl: https://ohmyposh.dev/ +License: MIT +LicenseUrl: https://github.com/JanDeDobbeleer/oh-my-posh/raw/main/COPYING +ShortDescription: Prompt theme engine for any shell +Moniker: oh-my-posh +Tags: +- console +- command-line +- shell +- command-prompt +- powershell +- wsl +- developer-tools +- utilities +- cli +- cmd +- ps +- terminal +- oh-my-posh +ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v19.10.0 +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.4.2/Bosyun.BoardMix.CN.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/19.10.0/JanDeDobbeleer.OhMyPosh.yaml similarity index 58% rename from manifests/b/Bosyun/BoardMix/CN/1.4.2/Bosyun.BoardMix.CN.yaml rename to manifests/j/JanDeDobbeleer/OhMyPosh/19.10.0/JanDeDobbeleer.OhMyPosh.yaml index e9f208fe3aed4..d2a4b7e447be3 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.4.2/Bosyun.BoardMix.CN.yaml +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/19.10.0/JanDeDobbeleer.OhMyPosh.yaml @@ -1,8 +1,8 @@ -# Created with WinGet Automation using Komac v1.9.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.4.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 19.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/19.9.0/JanDeDobbeleer.OhMyPosh.installer.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/19.9.0/JanDeDobbeleer.OhMyPosh.installer.yaml new file mode 100644 index 0000000000000..43b93a9db081f --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/19.9.0/JanDeDobbeleer.OhMyPosh.installer.yaml @@ -0,0 +1,53 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 19.9.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v19.9.0/install-amd64.exe + InstallerSha256: FE12E54122E52C2475D512DACCBE5C7CD46544EA81E2BBD13AF4EAB9CEE1A958 + InstallerSwitches: + Custom: /INSTALLER=winget /ALLUSERS +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v19.9.0/install-amd64.exe + InstallerSha256: FE12E54122E52C2475D512DACCBE5C7CD46544EA81E2BBD13AF4EAB9CEE1A958 + InstallerSwitches: + Custom: /INSTALLER=winget /CURRENTUSER +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v19.9.0/install-386.exe + InstallerSha256: B1BA1865A28F72ED818B42712E5AE3E371FDB469C23E9F1A5CD19944F64E609E + InstallerSwitches: + Custom: /INSTALLER=winget /ALLUSERS +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v19.9.0/install-386.exe + InstallerSha256: B1BA1865A28F72ED818B42712E5AE3E371FDB469C23E9F1A5CD19944F64E609E + InstallerSwitches: + Custom: /INSTALLER=winget /CURRENTUSER +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v19.9.0/install-arm64.exe + InstallerSha256: CA2C83678A0DDE483BC9D3E80DBCC639BDBD9195B366BF77D22D4A2876502422 + InstallerSwitches: + Custom: /INSTALLER=winget /ALLUSERS +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v19.9.0/install-arm64.exe + InstallerSha256: CA2C83678A0DDE483BC9D3E80DBCC639BDBD9195B366BF77D22D4A2876502422 + InstallerSwitches: + Custom: /INSTALLER=winget /CURRENTUSER +ManifestType: installer +ManifestVersion: 1.4.0 +ReleaseDate: 2024-02-12 diff --git a/manifests/j/JanDeDobbeleer/OhMyPosh/19.9.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/19.9.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml new file mode 100644 index 0000000000000..f1552d460b627 --- /dev/null +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/19.9.0/JanDeDobbeleer.OhMyPosh.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 19.9.0 +PackageLocale: en-US +Publisher: Jan De Dobbeleer +PublisherUrl: https://github.com/JanDeDobbeleer/oh-my-posh/ +PublisherSupportUrl: https://github.com/JanDeDobbeleer/oh-my-posh/issues +Author: Jan De Dobbeleer +PackageName: Oh My Posh +PackageUrl: https://ohmyposh.dev/ +License: MIT +LicenseUrl: https://github.com/JanDeDobbeleer/oh-my-posh/raw/main/COPYING +ShortDescription: Prompt theme engine for any shell +Moniker: oh-my-posh +Tags: +- console +- command-line +- shell +- command-prompt +- powershell +- wsl +- developer-tools +- utilities +- cli +- cmd +- ps +- terminal +- oh-my-posh +ReleaseNotesUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/tag/v19.9.0 +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.4.3/Bosyun.BoardMix.CN.yaml b/manifests/j/JanDeDobbeleer/OhMyPosh/19.9.0/JanDeDobbeleer.OhMyPosh.yaml similarity index 57% rename from manifests/b/Bosyun/BoardMix/CN/1.4.3/Bosyun.BoardMix.CN.yaml rename to manifests/j/JanDeDobbeleer/OhMyPosh/19.9.0/JanDeDobbeleer.OhMyPosh.yaml index 7b229749010d4..b282a17ca8815 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.4.3/Bosyun.BoardMix.CN.yaml +++ b/manifests/j/JanDeDobbeleer/OhMyPosh/19.9.0/JanDeDobbeleer.OhMyPosh.yaml @@ -1,8 +1,8 @@ -# Created with WinGet Automation using Komac v1.10.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.4.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: JanDeDobbeleer.OhMyPosh +PackageVersion: 19.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/j/Japplis/Dictaphone/1.1/Japplis.Dictaphone.installer.yaml b/manifests/j/Japplis/Dictaphone/1.1/Japplis.Dictaphone.installer.yaml new file mode 100644 index 0000000000000..4ff9ce01fc040 --- /dev/null +++ b/manifests/j/Japplis/Dictaphone/1.1/Japplis.Dictaphone.installer.yaml @@ -0,0 +1,27 @@ +# Created using Apache Ant script from Japplis +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Japplis.Dictaphone +PackageVersion: 1.1 +Platform: +- Windows.Desktop +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://www.japplis.com/dictaphone/versions/Dictaphone-1.1.exe + InstallerSha256: 883f20f91fbfe0265b307ac50481adb086f337f8aca38a4972fe51c96e965a58 + InstallerSwitches: + Custom: /ALLUSERS +- Architecture: x64 + Scope: user + InstallerUrl: https://www.japplis.com/dictaphone/versions/Dictaphone-1.1.exe + InstallerSha256: 883f20f91fbfe0265b307ac50481adb086f337f8aca38a4972fe51c96e965a58 + InstallerSwitches: + Custom: /CURRENTUSER +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/j/Japplis/Dictaphone/1.1/Japplis.Dictaphone.locale.en-US.yaml b/manifests/j/Japplis/Dictaphone/1.1/Japplis.Dictaphone.locale.en-US.yaml new file mode 100644 index 0000000000000..27a56d9e570ac --- /dev/null +++ b/manifests/j/Japplis/Dictaphone/1.1/Japplis.Dictaphone.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using Apache Ant script from Japplis +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Japplis.Dictaphone +PackageVersion: 1.1 +PackageLocale: en-US +Publisher: Japplis +PublisherUrl: https://www.japplis.com +Author: Anthony Goubard +PackageName: Dictaphone +PackageUrl: https://www.japplis.com/dictaphone/ +License: Freeware +LicenseUrl: https://www.japplis.com/dictaphone/license.txt +Copyright: Copyright © 2011 - 2024 Japplis. All rights reserved. +ShortDescription: Voice and audio recorder +Description: |- + Dictaphone - Voice and Audio Recorder + Record audio from your computer +ReleaseNotesUrl: https://www.japplis.com/dictaphone/changes.txt +Moniker: dictaphone +Tags: +- dictaphone +- audio +- recording +- voice +- microphone +- recorder +- memo +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/j/Japplis/Dictaphone/1.1/Japplis.Dictaphone.yaml b/manifests/j/Japplis/Dictaphone/1.1/Japplis.Dictaphone.yaml new file mode 100644 index 0000000000000..a649435b44f14 --- /dev/null +++ b/manifests/j/Japplis/Dictaphone/1.1/Japplis.Dictaphone.yaml @@ -0,0 +1,8 @@ +# Created using Apache Ant script from Japplis +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Japplis.Dictaphone +PackageVersion: 1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/Japplis/M2RepoCleaner/1.0/Japplis.M2RepoCleaner.installer.yaml b/manifests/j/Japplis/M2RepoCleaner/1.0/Japplis.M2RepoCleaner.installer.yaml new file mode 100644 index 0000000000000..3bff68baeb9b7 --- /dev/null +++ b/manifests/j/Japplis/M2RepoCleaner/1.0/Japplis.M2RepoCleaner.installer.yaml @@ -0,0 +1,27 @@ +# Created using Apache Ant script from Japplis +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Japplis.M2RepoCleaner +PackageVersion: 1.0 +Platform: +- Windows.Desktop +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x64 + Scope: machine + InstallerUrl: https://www.antcommander.com/m2-repo-cleaner/versions/M2RepoCleaner-1.0.exe + InstallerSha256: a05ca11eaca247d01700832f35c0ba56ac1b3d361d3dcc239e7321173571eeec + InstallerSwitches: + Custom: /ALLUSERS +- Architecture: x64 + Scope: user + InstallerUrl: https://www.antcommander.com/m2-repo-cleaner/versions/M2RepoCleaner-1.0.exe + InstallerSha256: a05ca11eaca247d01700832f35c0ba56ac1b3d361d3dcc239e7321173571eeec + InstallerSwitches: + Custom: /CURRENTUSER +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/j/Japplis/M2RepoCleaner/1.0/Japplis.M2RepoCleaner.locale.en-US.yaml b/manifests/j/Japplis/M2RepoCleaner/1.0/Japplis.M2RepoCleaner.locale.en-US.yaml new file mode 100644 index 0000000000000..84539f41d23c5 --- /dev/null +++ b/manifests/j/Japplis/M2RepoCleaner/1.0/Japplis.M2RepoCleaner.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created using Apache Ant script from Japplis +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Japplis.M2RepoCleaner +PackageVersion: 1.0 +PackageLocale: en-US +Publisher: Japplis +PublisherUrl: https://www.japplis.com +Author: Anthony Goubard +PackageName: M2 Repo Cleaner +PackageUrl: https://www.antcommander.com/m2-repo-cleaner/ +License: Freeware +LicenseUrl: https://www.antcommander.com/m2-repo-cleaner/license.txt +Copyright: Copyright © 2022 - 2024 Japplis. All rights reserved. +ShortDescription: Remove old dependencies and snapshot from your Maven local repository. +Description: |- + M2 Repo Cleaner - Clean old files in Maven local repository + Free space from your hard disk by removing old dependencies and snapshots from your Maven local repository. +ReleaseNotesUrl: https://www.antcommander.com/m2-repo-cleaner/changes.txt +Moniker: m2-repo-cleaner +Tags: +- maven +- m2 +- repository +- repo +- cleaner +- clean +- delete +- snapshots +- gradle +- clean-up +- prune +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/j/Japplis/M2RepoCleaner/1.0/Japplis.M2RepoCleaner.yaml b/manifests/j/Japplis/M2RepoCleaner/1.0/Japplis.M2RepoCleaner.yaml new file mode 100644 index 0000000000000..013801e81fb90 --- /dev/null +++ b/manifests/j/Japplis/M2RepoCleaner/1.0/Japplis.M2RepoCleaner.yaml @@ -0,0 +1,8 @@ +# Created using Apache Ant script from Japplis +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Japplis.M2RepoCleaner +PackageVersion: 1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/Jsoftware/J/9/5/9.5.2/Jsoftware.J.9.5.installer.yaml b/manifests/j/Jsoftware/J/9/5/9.5.2/Jsoftware.J.9.5.installer.yaml new file mode 100644 index 0000000000000..b8a4625f1cf30 --- /dev/null +++ b/manifests/j/Jsoftware/J/9/5/9.5.2/Jsoftware.J.9.5.installer.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: Jsoftware.J.9.5 +PackageVersion: 9.5.2 +Platform: +- Windows.Desktop +InstallModes: +- silent +FileExtensions: +- ijs +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://www.jsoftware.com/download/j9.5/install/j9.5_win64.exe + InstallerSha256: be7c3779194ee6d0b9c818a5636d0275f6c40d366f553d152f0c37b2bbfed19f + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://www.jsoftware.com/download/j9.5/install/j9.5_win64.exe + InstallerSha256: be7c3779194ee6d0b9c818a5636d0275f6c40d366f553d152f0c37b2bbfed19f + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.4.0 diff --git a/manifests/j/Jsoftware/J/9/5/9.5.2/Jsoftware.J.9.5.locale.en-US.yaml b/manifests/j/Jsoftware/J/9/5/9.5.2/Jsoftware.J.9.5.locale.en-US.yaml new file mode 100644 index 0000000000000..643949303701f --- /dev/null +++ b/manifests/j/Jsoftware/J/9/5/9.5.2/Jsoftware.J.9.5.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: Jsoftware.J.9.5 +PackageVersion: 9.5.2 +PackageLocale: en-US +Publisher: Jsoftware +PublisherUrl: https://www.jsoftware.com +PackageName: J-language +PackageUrl: https://code.jsoftware.com +License: J Source can be used either under a commercial license from Jsoftware, or under the GNU General Public License version 3 +LicenseUrl: https://raw.githubusercontent.com/jsoftware/jsource/master/license.txt +Copyright: Copyright 1994-2024 by Jsoftware Inc. All rights reserved. +ShortDescription: J is a high-level, general purpose programming language. +Description: J is a high-level, general-purpose programming language that is particularly suited to the mathematical, statistical, and logical analysis of data. It is a powerful tool for developing algorithms and exploring problems that are not already well understood. +Moniker: J +Tags: +- programming-language +- array-language +- language +- development +- numerical +- open-source +ReleaseNotesUrl: https://code.jsoftware.com/wiki/System/ReleaseNotes/J9.5 +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.4.1/Bosyun.BoardMix.CN.yaml b/manifests/j/Jsoftware/J/9/5/9.5.2/Jsoftware.J.9.5.yaml similarity index 54% rename from manifests/b/Bosyun/BoardMix/CN/1.4.1/Bosyun.BoardMix.CN.yaml rename to manifests/j/Jsoftware/J/9/5/9.5.2/Jsoftware.J.9.5.yaml index 01708a8dfb054..07ac30c5a3c97 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.4.1/Bosyun.BoardMix.CN.yaml +++ b/manifests/j/Jsoftware/J/9/5/9.5.2/Jsoftware.J.9.5.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.2.6 $debug=QUSU.CRLF.7-3-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.4.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 +# Created using wingetcreate 1.2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: Jsoftware.J.9.5 +PackageVersion: 9.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/j/Jsoftware/J/9/5/slim/9.5.2/Jsoftware.J.9.5.slim.installer.yaml b/manifests/j/Jsoftware/J/9/5/slim/9.5.2/Jsoftware.J.9.5.slim.installer.yaml new file mode 100644 index 0000000000000..89aafee5d6143 --- /dev/null +++ b/manifests/j/Jsoftware/J/9/5/slim/9.5.2/Jsoftware.J.9.5.slim.installer.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: Jsoftware.J.9.5.slim +PackageVersion: 9.5.2 +Platform: +- Windows.Desktop +InstallModes: +- silent +FileExtensions: +- ijs +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://www.jsoftware.com/download/j9.5/install/j9.5_win64_slim.exe + InstallerSha256: f36324702789fcd9932bdfa1948e1aa0588bb4c200f90accdb5d031a0ecaf533 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://www.jsoftware.com/download/j9.5/install/j9.5_win64_slim.exe + InstallerSha256: f36324702789fcd9932bdfa1948e1aa0588bb4c200f90accdb5d031a0ecaf533 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.4.0 diff --git a/manifests/j/Jsoftware/J/9/5/slim/9.5.2/Jsoftware.J.9.5.slim.locale.en-US.yaml b/manifests/j/Jsoftware/J/9/5/slim/9.5.2/Jsoftware.J.9.5.slim.locale.en-US.yaml new file mode 100644 index 0000000000000..b5c205fd61aa7 --- /dev/null +++ b/manifests/j/Jsoftware/J/9/5/slim/9.5.2/Jsoftware.J.9.5.slim.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: Jsoftware.J.9.5.slim +PackageVersion: 9.5.2 +PackageLocale: en-US +Publisher: Jsoftware +PublisherUrl: https://www.jsoftware.com +PackageName: J-language +PackageUrl: https://code.jsoftware.com +License: J Source can be used either under a commercial license from Jsoftware, or under the GNU General Public License version 3 +LicenseUrl: https://raw.githubusercontent.com/jsoftware/jsource/master/license.txt +Copyright: Copyright 1994-2024 by Jsoftware Inc. All rights reserved. +ShortDescription: J is a high-level, general purpose programming language. +Description: J is a high-level, general-purpose programming language that is particularly suited to the mathematical, statistical, and logical analysis of data. It is a powerful tool for developing algorithms and exploring problems that are not already well understood. +Moniker: J +Tags: +- programming-language +- array-language +- language +- development +- numerical +- open-source +ReleaseNotesUrl: https://code.jsoftware.com/wiki/System/ReleaseNotes/J9.5 +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.3.10/Bosyun.BoardMix.CN.yaml b/manifests/j/Jsoftware/J/9/5/slim/9.5.2/Jsoftware.J.9.5.slim.yaml similarity index 54% rename from manifests/b/Bosyun/BoardMix/CN/1.3.10/Bosyun.BoardMix.CN.yaml rename to manifests/j/Jsoftware/J/9/5/slim/9.5.2/Jsoftware.J.9.5.slim.yaml index f20f10dddaea7..713e979333b54 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.3.10/Bosyun.BoardMix.CN.yaml +++ b/manifests/j/Jsoftware/J/9/5/slim/9.5.2/Jsoftware.J.9.5.slim.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.2.4 $debug=QUSU.CRLF.7-3-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.3.10 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.4.0 +# Created using wingetcreate 1.2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: Jsoftware.J.9.5.slim +PackageVersion: 9.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/k/karakun/OpenWebStart/1.9.1/karakun.OpenWebStart.installer.yaml b/manifests/k/karakun/OpenWebStart/1.9.1/karakun.OpenWebStart.installer.yaml new file mode 100644 index 0000000000000..eb6b551ce7236 --- /dev/null +++ b/manifests/k/karakun/OpenWebStart/1.9.1/karakun.OpenWebStart.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.installer.1.6.0.json + +PackageIdentifier: karakun.OpenWebStart +PackageVersion: 1.9.1 +InstallerLocale: en-US +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: -q + SilentWithProgress: -q +UpgradeBehavior: install +FileExtensions: +- jnlp +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/karakun/OpenWebStart/releases/download/v1.9.1/OpenWebStart_windows-x32_1_9_1.exe + InstallerSha256: 296AA394BA9187D18FC5C62E11D8B6E5BC929B4926C2D9A17B53603B55E27065 +- Architecture: x64 + InstallerUrl: https://github.com/karakun/OpenWebStart/releases/download/v1.9.1/OpenWebStart_windows-x64_1_9_1.exe + InstallerSha256: AF74EA2BE152FAEF0E82C0B4AA32AA479CB106793269B096868C51926051375C +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/k/karakun/OpenWebStart/1.9.1/karakun.OpenWebStart.locale.en-US.yaml b/manifests/k/karakun/OpenWebStart/1.9.1/karakun.OpenWebStart.locale.en-US.yaml new file mode 100644 index 0000000000000..b2bbd194532e9 --- /dev/null +++ b/manifests/k/karakun/OpenWebStart/1.9.1/karakun.OpenWebStart.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.defaultLocale.1.6.0.json + +PackageIdentifier: karakun.OpenWebStart +PackageVersion: 1.9.1 +PackageLocale: en-US +Publisher: Karakun AG +PublisherUrl: https://karakun.com +PublisherSupportUrl: https://openwebstart.com/support +PrivacyUrl: https://openwebstart.com/privacy-policy +Author: Karakun AG +PackageName: OpenWebStart +PackageUrl: https://openwebstart.com +License: GPL2 with the Classpath Exception +LicenseUrl: https://raw.githubusercontent.com/karakun/OpenWebStart/master/LICENSE.md +# Copyright: +# CopyrightUrl: +ShortDescription: Run Web Start based applications after the release of Java 11 +# Description: +# Moniker: +Tags: +- java +- jdk +- jnlp +- jre +- web +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/k/karakun/OpenWebStart/1.9.1/karakun.OpenWebStart.yaml b/manifests/k/karakun/OpenWebStart/1.9.1/karakun.OpenWebStart.yaml new file mode 100644 index 0000000000000..7acfeee80b9c7 --- /dev/null +++ b/manifests/k/karakun/OpenWebStart/1.9.1/karakun.OpenWebStart.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.version.1.6.0.json + +PackageIdentifier: karakun.OpenWebStart +PackageVersion: 1.9.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/k/kosay/kubetui/1.5.0/kosay.kubetui.installer.yaml b/manifests/k/kosay/kubetui/1.5.0/kosay.kubetui.installer.yaml new file mode 100644 index 0000000000000..853f92ed61a5a --- /dev/null +++ b/manifests/k/kosay/kubetui/1.5.0/kosay.kubetui.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=NVS1.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.installer.1.6.0.json + +PackageIdentifier: kosay.kubetui +PackageVersion: 1.5.0 +InstallerLocale: en-US +InstallerType: portable +ReleaseDate: 2024-01-14 +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Commands: +- kubetui +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/sarub0b0/kubetui/releases/download/v1.5.0/kubetui-x86_64-pc-windows-msvc-rustls.exe + InstallerSha256: 3AC97E3CBE4CA2D0FED8A7BD3B958162BCBD51BB3B849B090A2810CEE3FB5BDF +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/k/kosay/kubetui/1.5.0/kosay.kubetui.locale.en-US.yaml b/manifests/k/kosay/kubetui/1.5.0/kosay.kubetui.locale.en-US.yaml new file mode 100644 index 0000000000000..50a3d89a0c762 --- /dev/null +++ b/manifests/k/kosay/kubetui/1.5.0/kosay.kubetui.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=NVS1.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.defaultLocale.1.6.0.json + +PackageIdentifier: kosay.kubetui +PackageVersion: 1.5.0 +PackageLocale: en-US +Publisher: kosay +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +Author: kosay +PackageName: kubetui +PackageUrl: https://github.com/sarub0b0/kubetui +License: MIT +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: A terminal UI for Kubernetes +Description: | + Kubetui is a terminal user interface (TUI) tool designed for monitoring Kubernetes resources. + It provides an easy-to-use interface for developers and operators to access important information about their applications and infrastructure. +# Moniker: +Tags: +- cli +- kubernetes +- monitor +- rust +- terminal +- tui +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/sarub0b0/kubetui/releases/tag/v1.5.0 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/k/kosay/kubetui/1.5.0/kosay.kubetui.yaml b/manifests/k/kosay/kubetui/1.5.0/kosay.kubetui.yaml new file mode 100644 index 0000000000000..9dc279fbb5b6d --- /dev/null +++ b/manifests/k/kosay/kubetui/1.5.0/kosay.kubetui.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=NVS1.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.version.1.6.0.json + +PackageIdentifier: kosay.kubetui +PackageVersion: 1.5.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/l/LINE/LINE/8.6.0.3277/LINE.LINE.installer.yaml b/manifests/l/LINE/LINE/8.6.0.3277/LINE.LINE.installer.yaml new file mode 100644 index 0000000000000..d2e8335161140 --- /dev/null +++ b/manifests/l/LINE/LINE/8.6.0.3277/LINE.LINE.installer.yaml @@ -0,0 +1,31 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: LINE.LINE +PackageVersion: 8.6.0.3277 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /M + SilentWithProgress: /M +UpgradeBehavior: install +AppsAndFeaturesEntries: +- ProductCode: LINE +Installers: +- Architecture: x64 + InstallerUrl: https://desktop.line-scdn.net/win/new/LineInst.exe + InstallerSha256: 29A27AD871BA5466AD58CB2F37767397FAC084817CE572FF74C5C6075889F26D + ProductCode: LINE +- Architecture: x86 + InstallerUrl: https://desktop.line-scdn.net/win/new/LineInst.exe + InstallerSha256: 29A27AD871BA5466AD58CB2F37767397FAC084817CE572FF74C5C6075889F26D + ProductCode: LINE +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/l/LINE/LINE/8.6.0.3277/LINE.LINE.locale.en-US.yaml b/manifests/l/LINE/LINE/8.6.0.3277/LINE.LINE.locale.en-US.yaml new file mode 100644 index 0000000000000..b0eeadc9bad7e --- /dev/null +++ b/manifests/l/LINE/LINE/8.6.0.3277/LINE.LINE.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: LINE.LINE +PackageVersion: 8.6.0.3277 +PackageLocale: en-US +Publisher: LINE Corporation +PublisherUrl: https://line.me +PublisherSupportUrl: https://help.line.me +PrivacyUrl: https://line.me/en/terms/policy/ +Author: LINE Corporation +PackageName: LINE +PackageUrl: https://line.me +License: Proprietary +LicenseUrl: https://terms.line.me/line_terms?lang=en +Copyright: Copyright LINE Corporation All Rights Reserved. +CopyrightUrl: https://terms.line.me/line_terms?lang=en +ShortDescription: Free SMS, Free Voice call messenger application. +Description: |- + LINE reshapes communication around the globe, allowing you to enjoy not only messaging but also free voice and video calls wherever you find yourself. + Download LINE and discover the reasons for its global popularity and number one ranking in 52 countries. +Moniker: line +Tags: +- communication +- cross-platform +- im +- line +- messaging +- messenger +- social +- video-call +- voice-call +- voice-chat +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/l/LINE/LINE/8.6.0.3277/LINE.LINE.yaml b/manifests/l/LINE/LINE/8.6.0.3277/LINE.LINE.yaml new file mode 100644 index 0000000000000..8f58fe0284c80 --- /dev/null +++ b/manifests/l/LINE/LINE/8.6.0.3277/LINE.LINE.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: LINE.LINE +PackageVersion: 8.6.0.3277 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/l/LinwoodCloud/Butterfly/Nightly/2.0.3-rc.1/LinwoodCloud.Butterfly.Nightly.installer.yaml b/manifests/l/LinwoodCloud/Butterfly/Nightly/2.0.3-rc.1/LinwoodCloud.Butterfly.Nightly.installer.yaml new file mode 100644 index 0000000000000..6870847fbd58c --- /dev/null +++ b/manifests/l/LinwoodCloud/Butterfly/Nightly/2.0.3-rc.1/LinwoodCloud.Butterfly.Nightly.installer.yaml @@ -0,0 +1,29 @@ +# 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: LinwoodCloud.Butterfly.Nightly +PackageVersion: 2.0.3-rc.1 +InstallerType: inno +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2024-02-12 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/LinwoodDev/Butterfly/releases/download/v2.0.3-rc.1/linwood-butterfly-windows-setup.exe + InstallerSha256: 42FA51C2CC80215FBDDC1CEB431C73A74CE2FC5C0AAA29805D69DDFEEC438DC5 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/LinwoodDev/Butterfly/releases/download/v2.0.3-rc.1/linwood-butterfly-windows-setup.exe + InstallerSha256: 42FA51C2CC80215FBDDC1CEB431C73A74CE2FC5C0AAA29805D69DDFEEC438DC5 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/l/LinwoodCloud/Butterfly/Nightly/2.0.3-rc.1/LinwoodCloud.Butterfly.Nightly.locale.en-US.yaml b/manifests/l/LinwoodCloud/Butterfly/Nightly/2.0.3-rc.1/LinwoodCloud.Butterfly.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..f1e83971ff74c --- /dev/null +++ b/manifests/l/LinwoodCloud/Butterfly/Nightly/2.0.3-rc.1/LinwoodCloud.Butterfly.Nightly.locale.en-US.yaml @@ -0,0 +1,34 @@ +# 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: LinwoodCloud.Butterfly.Nightly +PackageVersion: 2.0.3-rc.1 +PackageLocale: en-US +Publisher: LinwoodCloud +PublisherUrl: https://www.linwood.dev +PublisherSupportUrl: https://github.com/LinwoodDev/Butterfly/issues +PrivacyUrl: https://docs.butterfly.linwood.dev/privacypolicy +PackageName: Butterfly (Nightly) +PackageUrl: https://docs.butterfly.linwood.dev +License: AGPL-3.0 +LicenseUrl: https://github.com/LinwoodCloud/Butterfly/blob/develop/LICENSE +ShortDescription: Butterfly is a note app where your ideas come first. +Moniker: butterfly-nightly +Tags: +- cross-platform +- note +- notes +- notes-app +- open-source +ReleaseNotes: |- + - Add initial ios support (currently nightly only) (#244) + - Add option to disable autosave (#591) + - Convert aspect ratio menu to material 3 + - Invert current inverted position to be normal + - Fix file sharing on android (#585) + - Fix laser movement is not locked + - Fix color of icon dropdown in property view + - Disable camera on android sdk version < 21 +ReleaseNotesUrl: https://github.com/LinwoodDev/Butterfly/releases/tag/v2.0.3-rc.1 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/l/LinwoodCloud/Butterfly/Nightly/2.0.3-rc.1/LinwoodCloud.Butterfly.Nightly.yaml b/manifests/l/LinwoodCloud/Butterfly/Nightly/2.0.3-rc.1/LinwoodCloud.Butterfly.Nightly.yaml new file mode 100644 index 0000000000000..4483bba093e53 --- /dev/null +++ b/manifests/l/LinwoodCloud/Butterfly/Nightly/2.0.3-rc.1/LinwoodCloud.Butterfly.Nightly.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: LinwoodCloud.Butterfly.Nightly +PackageVersion: 2.0.3-rc.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/l/LogMeIn/LastPass/4.124.0.140/LogMeIn.LastPass.installer.yaml b/manifests/l/LogMeIn/LastPass/4.124.0.140/LogMeIn.LastPass.installer.yaml deleted file mode 100644 index 5627e6a041e49..0000000000000 --- a/manifests/l/LogMeIn/LastPass/4.124.0.140/LogMeIn.LastPass.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Automatically updated by the winget bot at 2023/Nov/30 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: LogMeIn.LastPass -PackageVersion: 4.124.0.140 -InstallerLocale: en-US -Platform: -- Windows.Desktop -InstallerType: msi -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ProductCode: '{A57324BA-FB17-4E2B-913C-65A0E979D09D}' -ReleaseDate: 2023-10-10 -AppsAndFeaturesEntries: -- Publisher: LastPass US LP. - UpgradeCode: '{5CD146E8-4D50-4247-AA0E-5DBFE0B2660C}' -Installers: -- Architecture: x86 - InstallerUrl: https://download.cloud.lastpass.com/windows_installer/LastPassInstaller.msi - InstallerSha256: F6FB4A6345553B4ABF7C52047F087C753EE07039D7CB7DCCC1ABF24559FEB1AB -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/l/LogMeIn/LastPass/4.124.0.140/LogMeIn.LastPass.locale.en-US.yaml b/manifests/l/LogMeIn/LastPass/4.124.0.140/LogMeIn.LastPass.locale.en-US.yaml deleted file mode 100644 index 0f503005c620a..0000000000000 --- a/manifests/l/LogMeIn/LastPass/4.124.0.140/LogMeIn.LastPass.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Automatically updated by the winget bot at 2023/Nov/30 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: LogMeIn.LastPass -PackageVersion: 4.124.0.140 -PackageLocale: en-US -Publisher: GoTo Group, Inc. -PublisherSupportUrl: https://support.logmeininc.com/lastpass -PrivacyUrl: https://www.logmein.com/legal/privacy -Author: LogMeIn -PackageName: LastPass -License: Freemium -LicenseUrl: https://www.logmeininc.com/legal -Copyright: Copyright © 2003-2022 LogMeIn, Inc. All rights reserved. -CopyrightUrl: https://www.logmeininc.com/legal -ShortDescription: LastPass is a freemium password manager that stores encrypted passwords online. -Moniker: lastpass -Tags: -- credentials -- password -- password-safe -- protect -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/l/LogMeIn/LastPass/4.124.0.140/LogMeIn.LastPass.yaml b/manifests/l/LogMeIn/LastPass/4.124.0.140/LogMeIn.LastPass.yaml deleted file mode 100644 index 2ec3017823b72..0000000000000 --- a/manifests/l/LogMeIn/LastPass/4.124.0.140/LogMeIn.LastPass.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2023/Nov/30 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: LogMeIn.LastPass -PackageVersion: 4.124.0.140 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/l/Logitech/GHUB/2024.1.5200/Logitech.GHUB.installer.yaml b/manifests/l/Logitech/GHUB/2024.1.5200/Logitech.GHUB.installer.yaml index a0af7d0345b17..af7428d736fb9 100644 --- a/manifests/l/Logitech/GHUB/2024.1.5200/Logitech.GHUB.installer.yaml +++ b/manifests/l/Logitech/GHUB/2024.1.5200/Logitech.GHUB.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/07 +# Created with Komac v1.11.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Logitech.GHUB @@ -13,7 +13,7 @@ InstallModes: InstallerSwitches: Silent: --silent SilentWithProgress: --silent -UpgradeBehavior: uninstallPrevious +UpgradeBehavior: install Installers: - Architecture: x64 InstallerUrl: https://download01.logi.com/web/ftp/pub/techsupport/gaming/lghub_installer.exe diff --git a/manifests/l/Logitech/GHUB/2024.1.5200/Logitech.GHUB.locale.en-US.yaml b/manifests/l/Logitech/GHUB/2024.1.5200/Logitech.GHUB.locale.en-US.yaml index eb681f1f9963c..88129459f6167 100644 --- a/manifests/l/Logitech/GHUB/2024.1.5200/Logitech.GHUB.locale.en-US.yaml +++ b/manifests/l/Logitech/GHUB/2024.1.5200/Logitech.GHUB.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/07 +# Created with Komac v1.11.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Logitech.GHUB @@ -6,6 +6,7 @@ PackageVersion: 2024.1.5200 PackageLocale: en-US Publisher: Logitech, Inc. PublisherUrl: https://www.logitechg.com/en-us/innovation/g-hub.html.html +PublisherSupportUrl: https://support.logitech.com/home PrivacyUrl: https://www.logitechg.com/en-us/legal/web-privacy-policy.html Author: Logitech PackageName: Logitech G HUB @@ -25,5 +26,8 @@ Tags: - logitech - mouse - utility +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://logi.com/en-au/my-account/order-faqs.html#returns-cancellations ManifestType: defaultLocale ManifestVersion: 1.5.0 diff --git a/manifests/l/Logitech/GHUB/2024.1.5200/Logitech.GHUB.yaml b/manifests/l/Logitech/GHUB/2024.1.5200/Logitech.GHUB.yaml index d891fd331e6e6..328549cb29ce5 100644 --- a/manifests/l/Logitech/GHUB/2024.1.5200/Logitech.GHUB.yaml +++ b/manifests/l/Logitech/GHUB/2024.1.5200/Logitech.GHUB.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/07 +# Created with Komac v1.11.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Logitech.GHUB diff --git a/manifests/l/Logitech/LogiTune/3.4.142.0/Logitech.LogiTune.installer.yaml b/manifests/l/Logitech/LogiTune/3.4.142.0/Logitech.LogiTune.installer.yaml deleted file mode 100644 index 6dea4758d38c4..0000000000000 --- a/manifests/l/Logitech/LogiTune/3.4.142.0/Logitech.LogiTune.installer.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Created using wingetcreate 1.5.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Logitech.LogiTune -PackageVersion: 3.4.142.0 -InstallerType: burn -Installers: -- Architecture: x64 - InstallerUrl: https://software.vc.logitech.com/downloads/tune/LogiTuneInstall.exe - InstallerSha256: 2397DDC32FEA59F0306816B7556BC899C6E0F39076C2BE584BF8AA433ECBBB73 -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/l/Logitech/LogiTune/3.4.142.0/Logitech.LogiTune.locale.en-US.yaml b/manifests/l/Logitech/LogiTune/3.4.142.0/Logitech.LogiTune.locale.en-US.yaml deleted file mode 100644 index 6cb95a3572e76..0000000000000 --- a/manifests/l/Logitech/LogiTune/3.4.142.0/Logitech.LogiTune.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created using wingetcreate 1.5.5.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Logitech.LogiTune -PackageVersion: 3.4.142.0 -PackageLocale: en-US -Publisher: Logitech -PublisherUrl: https://www.logitech.com -PublisherSupportUrl: http://support.logitech.com/contact -PrivacyUrl: https://www.logitech.com/legal/product-privacy-policy.html -PackageName: Logi Tune -PackageUrl: https://www.logitech.com/video-collaboration/software/logi-tune-software.html -License: Proprietary -LicenseUrl: https://www.logitech.com/tos/software-license-agreement.html -Copyright: Copyright (c) Logitech. All rights reserved. -ShortDescription: Optimize your webcam, headset, and Logi Dock for video meetings. -Description: |- - Take charge of the video meeting experience wherever you are — at home, in the office or on the go. - Webcam and headset settings are all at your fingertips to ensure you look and sound the way you want in video meetings. - Plus, joining video meetings is easier than ever with calendar and Logi Dock integration. -Moniker: logitune -Documentations: -- DocumentLabel: Supported Products - DocumentUrl: https://prosupport.logi.com/hc/articles/360062762853 -- DocumentLabel: Setup Guide - DocumentUrl: https://prosupport.logi.com/hc/articles/360040568233-Getting-Started-Logi-Tune -- DocumentLabel: FAQs - DocumentUrl: https://prosupport.logi.com/hc/articles/360040085214 -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/l/LutzRoeder/Netron/7.4.4/LutzRoeder.Netron.installer.yaml b/manifests/l/LutzRoeder/Netron/7.4.4/LutzRoeder.Netron.installer.yaml new file mode 100644 index 0000000000000..b29d586c0546b --- /dev/null +++ b/manifests/l/LutzRoeder/Netron/7.4.4/LutzRoeder.Netron.installer.yaml @@ -0,0 +1,89 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json +PackageIdentifier: LutzRoeder.Netron +PackageVersion: 7.4.4 +Platform: +- Windows.Desktop +InstallModes: +- silent +- silentWithProgress +Installers: +- Architecture: x86 + Scope: user + InstallerType: nullsoft + InstallerUrl: https://github.com/lutzroeder/netron/releases/download/v7.4.4/Netron-Setup-7.4.4.exe + InstallerSha256: 11D3E3120DBCD67150DF4CE99FF2FB98F2C1B2D7AC0711AD3DAE0F6053AF6D82 + InstallerLocale: en-US + InstallerSwitches: + Custom: /NORESTART + UpgradeBehavior: install +- Architecture: arm64 + Scope: user + InstallerType: nullsoft + InstallerUrl: https://github.com/lutzroeder/netron/releases/download/v7.4.4/Netron-Setup-7.4.4.exe + InstallerSha256: 11D3E3120DBCD67150DF4CE99FF2FB98F2C1B2D7AC0711AD3DAE0F6053AF6D82 + InstallerLocale: en-US + InstallerSwitches: + Custom: /NORESTART + UpgradeBehavior: install +FileExtensions: +- armnn +- caffemodel +- circle +- ckpt +- cmf +- dlc +- dnn +- gguf +- h5 +- har +- hd5 +- hdf5 +- hn +- keras +- kmodel +- lite +- mar +- maxviz +- meta +- mge +- mlmodel +- mlnet +- mlpackage +- mnn +- model +- nb +- ngf +- nn +- nnp +- npy +- npz +- om +- onnx +- ort +- paddle +- param +- pb +- pbtxt +- pdiparams +- pdmodel +- pdopt +- pdparams +- pkl +- prototxt +- pt +- pt2 +- pth +- ptl +- rknn +- safetensors +- t7 +- tfl +- tflite +- tm +- tmfile +- tnnproto +- torchscript +- uff +- xmodel +ManifestType: installer +ManifestVersion: 1.2.0 diff --git a/manifests/l/LutzRoeder/Netron/7.4.4/LutzRoeder.Netron.locale.en-US.yaml b/manifests/l/LutzRoeder/Netron/7.4.4/LutzRoeder.Netron.locale.en-US.yaml new file mode 100644 index 0000000000000..7b60ea66e08f1 --- /dev/null +++ b/manifests/l/LutzRoeder/Netron/7.4.4/LutzRoeder.Netron.locale.en-US.yaml @@ -0,0 +1,22 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json +PackageIdentifier: LutzRoeder.Netron +PackageVersion: 7.4.4 +PackageName: Netron +PackageLocale: en-US +PackageUrl: https://github.com/lutzroeder/netron +Publisher: Lutz Roeder +PublisherUrl: https://github.com/lutzroeder/netron +PublisherSupportUrl: https://github.com/lutzroeder/netron/issues +Author: Lutz Roeder +License: MIT +Copyright: Copyright (c) Lutz Roeder +CopyrightUrl: https://github.com/lutzroeder/netron/blob/main/LICENSE +ShortDescription: Visualizer for neural network, deep learning, and machine learning models +Description: Visualizer for neural network, deep learning, and machine learning models +Moniker: netron +Tags: +- machine-learning +- deep-learning +- neural-network +ManifestType: defaultLocale +ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.3/FutureScholars.Paperlib.yaml b/manifests/l/LutzRoeder/Netron/7.4.4/LutzRoeder.Netron.yaml similarity index 53% rename from manifests/f/FutureScholars/Paperlib/2.1.3/FutureScholars.Paperlib.yaml rename to manifests/l/LutzRoeder/Netron/7.4.4/LutzRoeder.Netron.yaml index bd0f61457edf8..e641b76831f8b 100644 --- a/manifests/f/FutureScholars/Paperlib/2.1.3/FutureScholars.Paperlib.yaml +++ b/manifests/l/LutzRoeder/Netron/7.4.4/LutzRoeder.Netron.yaml @@ -1,8 +1,6 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.3 +PackageIdentifier: LutzRoeder.Netron +PackageVersion: 7.4.4 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.2.0 diff --git a/manifests/l/LutzRoeder/Netron/7.4.5/LutzRoeder.Netron.installer.yaml b/manifests/l/LutzRoeder/Netron/7.4.5/LutzRoeder.Netron.installer.yaml new file mode 100644 index 0000000000000..c5947aceaa235 --- /dev/null +++ b/manifests/l/LutzRoeder/Netron/7.4.5/LutzRoeder.Netron.installer.yaml @@ -0,0 +1,89 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.0.schema.json +PackageIdentifier: LutzRoeder.Netron +PackageVersion: 7.4.5 +Platform: +- Windows.Desktop +InstallModes: +- silent +- silentWithProgress +Installers: +- Architecture: x86 + Scope: user + InstallerType: nullsoft + InstallerUrl: https://github.com/lutzroeder/netron/releases/download/v7.4.5/Netron-Setup-7.4.5.exe + InstallerSha256: ADF69F8AC51BC3C2846F513F14ED982E0FED1914C2791EBC63643E5115B9A8FC + InstallerLocale: en-US + InstallerSwitches: + Custom: /NORESTART + UpgradeBehavior: install +- Architecture: arm64 + Scope: user + InstallerType: nullsoft + InstallerUrl: https://github.com/lutzroeder/netron/releases/download/v7.4.5/Netron-Setup-7.4.5.exe + InstallerSha256: ADF69F8AC51BC3C2846F513F14ED982E0FED1914C2791EBC63643E5115B9A8FC + InstallerLocale: en-US + InstallerSwitches: + Custom: /NORESTART + UpgradeBehavior: install +FileExtensions: +- armnn +- caffemodel +- circle +- ckpt +- cmf +- dlc +- dnn +- gguf +- h5 +- har +- hd5 +- hdf5 +- hn +- keras +- kmodel +- lite +- mar +- maxviz +- meta +- mge +- mlmodel +- mlnet +- mlpackage +- mnn +- model +- nb +- ngf +- nn +- nnp +- npy +- npz +- om +- onnx +- ort +- paddle +- param +- pb +- pbtxt +- pdiparams +- pdmodel +- pdopt +- pdparams +- pkl +- prototxt +- pt +- pt2 +- pth +- ptl +- rknn +- safetensors +- t7 +- tfl +- tflite +- tm +- tmfile +- tnnproto +- torchscript +- uff +- xmodel +ManifestType: installer +ManifestVersion: 1.2.0 diff --git a/manifests/l/LutzRoeder/Netron/7.4.5/LutzRoeder.Netron.locale.en-US.yaml b/manifests/l/LutzRoeder/Netron/7.4.5/LutzRoeder.Netron.locale.en-US.yaml new file mode 100644 index 0000000000000..3f5ce9a6a7882 --- /dev/null +++ b/manifests/l/LutzRoeder/Netron/7.4.5/LutzRoeder.Netron.locale.en-US.yaml @@ -0,0 +1,22 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.0.schema.json +PackageIdentifier: LutzRoeder.Netron +PackageVersion: 7.4.5 +PackageName: Netron +PackageLocale: en-US +PackageUrl: https://github.com/lutzroeder/netron +Publisher: Lutz Roeder +PublisherUrl: https://github.com/lutzroeder/netron +PublisherSupportUrl: https://github.com/lutzroeder/netron/issues +Author: Lutz Roeder +License: MIT +Copyright: Copyright (c) Lutz Roeder +CopyrightUrl: https://github.com/lutzroeder/netron/blob/main/LICENSE +ShortDescription: Visualizer for neural network, deep learning, and machine learning models +Description: Visualizer for neural network, deep learning, and machine learning models +Moniker: netron +Tags: +- machine-learning +- deep-learning +- neural-network +ManifestType: defaultLocale +ManifestVersion: 1.2.0 diff --git a/manifests/f/FutureScholars/Paperlib/2.1.4/FutureScholars.Paperlib.yaml b/manifests/l/LutzRoeder/Netron/7.4.5/LutzRoeder.Netron.yaml similarity index 53% rename from manifests/f/FutureScholars/Paperlib/2.1.4/FutureScholars.Paperlib.yaml rename to manifests/l/LutzRoeder/Netron/7.4.5/LutzRoeder.Netron.yaml index 5843e5619961f..04d381101196f 100644 --- a/manifests/f/FutureScholars/Paperlib/2.1.4/FutureScholars.Paperlib.yaml +++ b/manifests/l/LutzRoeder/Netron/7.4.5/LutzRoeder.Netron.yaml @@ -1,8 +1,6 @@ -# Created with YamlCreate.ps1 v2.2.1 $debug=QUSU.CRLF.7-3-1.Win32NT # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.0.schema.json - -PackageIdentifier: FutureScholars.Paperlib -PackageVersion: 2.1.4 +PackageIdentifier: LutzRoeder.Netron +PackageVersion: 7.4.5 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.2.0 diff --git a/manifests/m/MSI/Kombustor/4/4.1.27.0/MSI.Kombustor.4.installer.yaml b/manifests/m/MSI/Kombustor/4/4.1.27.0/MSI.Kombustor.4.installer.yaml new file mode 100644 index 0000000000000..064a74cdbf51e --- /dev/null +++ b/manifests/m/MSI/Kombustor/4/4.1.27.0/MSI.Kombustor.4.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: MSI.Kombustor.4 +PackageVersion: 4.1.27.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2023-08-27 +AppsAndFeaturesEntries: +- DisplayName: MSI Kombustor 4.1.27.0 (64-bit) +Installers: +- Architecture: x64 + InstallerUrl: https://gpuscore.top/msi/MSI_Kombustor4_Setup_v4.1.27.0_x64.exe + InstallerSha256: 2647258F0014CFF1CE3501EC037DD4782FDC4F9F7BF662E9348A16CC1B67954F +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/MSI/Kombustor/4/4.1.27.0/MSI.Kombustor.4.locale.en-US.yaml b/manifests/m/MSI/Kombustor/4/4.1.27.0/MSI.Kombustor.4.locale.en-US.yaml new file mode 100644 index 0000000000000..35cc22dda1eaf --- /dev/null +++ b/manifests/m/MSI/Kombustor/4/4.1.27.0/MSI.Kombustor.4.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: MSI.Kombustor.4 +PackageVersion: 4.1.27.0 +PackageLocale: en-US +Publisher: MSI / Geeks3D +PublisherUrl: https://www.geeks3d.com/ +PackageName: MSI Kombustor 4 +PackageUrl: https://geeks3d.com/furmark/kombustor/ +License: Freeware +Copyright: Copyright ©2016-2023 MSI / Geeks3D +ShortDescription: MSI Kombustor is MSI's exclusive burn-in benchmarking tool based on the well-known FurMark software. +Moniker: msikombustor-4 +Tags: +- benchmark +- gpu-benchmark +- stress-test +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/MSI/Kombustor/4/4.1.27.0/MSI.Kombustor.4.yaml b/manifests/m/MSI/Kombustor/4/4.1.27.0/MSI.Kombustor.4.yaml new file mode 100644 index 0000000000000..dc836750913c2 --- /dev/null +++ b/manifests/m/MSI/Kombustor/4/4.1.27.0/MSI.Kombustor.4.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.3 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: MSI.Kombustor.4 +PackageVersion: 4.1.27.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/Malwarebytes/Malwarebytes/4.6.4.286/Malwarebytes.Malwarebytes.installer.yaml b/manifests/m/Malwarebytes/Malwarebytes/4.6.4.286/Malwarebytes.Malwarebytes.installer.yaml deleted file mode 100644 index 44043fa52c392..0000000000000 --- a/manifests/m/Malwarebytes/Malwarebytes/4.6.4.286/Malwarebytes.Malwarebytes.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: Malwarebytes.Malwarebytes -PackageVersion: 4.6.4.286 -Platform: -- Windows.Desktop -InstallerType: exe -Scope: machine -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART - SilentWithProgress: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART -UpgradeBehavior: install -ProductCode: '{35065F43-4BB2-439A-BFF7-0F1014F2E0CD}_is1' -ReleaseDate: 2023-09-01 -AppsAndFeaturesEntries: -- ProductCode: '{35065F43-4BB2-439A-BFF7-0F1014F2E0CD}_is1' -Installers: -- Architecture: x64 - InstallerUrl: https://data-cdn.mbamupdates.com/web/mb4-setup-consumer/MBSetup.exe - InstallerSha256: 7C0B9BCEED390F7F28135431C09AC51469EE8E2B8095FB36A37315D811D9BA9C -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/m/Malwarebytes/Malwarebytes/4.6.4.286/Malwarebytes.Malwarebytes.locale.en-US.yaml b/manifests/m/Malwarebytes/Malwarebytes/4.6.4.286/Malwarebytes.Malwarebytes.locale.en-US.yaml deleted file mode 100644 index e71f55dd35a6e..0000000000000 --- a/manifests/m/Malwarebytes/Malwarebytes/4.6.4.286/Malwarebytes.Malwarebytes.locale.en-US.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Created with Komac v1.11.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: Malwarebytes.Malwarebytes -PackageVersion: 4.6.4.286 -PackageLocale: en-US -Publisher: Malwarebytes -PublisherUrl: https://www.malwarebytes.com -PublisherSupportUrl: https://support.malwarebytes.com -PrivacyUrl: https://www.malwarebytes.com/privacy -Author: Malwarebytes -PackageName: Malwarebytes -PackageUrl: https://www.malwarebytes.com/premium -License: Proprietary -LicenseUrl: https://www.malwarebytes.com/eula -Copyright: Copyright (c) 2023 Malwarebytes -CopyrightUrl: https://www.malwarebytes.com/eula -ShortDescription: Malwarebytes protects you against malware, ransomware, malicious websites, and other advanced online threats. -Moniker: malwarebytes -Tags: -- antimalware -- anti-malware -- antithreat -- antivirus -- anti-virus -- protection -- security -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.installer.yaml b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.installer.yaml index 2ebb045fa301f..df2a7bdd1e293 100644 --- a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.installer.yaml +++ b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Maxthon.Maxthon diff --git a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.en-US.yaml b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.en-US.yaml index b2b195a83d97b..886884f84a012 100644 --- a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.en-US.yaml +++ b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Maxthon.Maxthon diff --git a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.zh-CN.yaml b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.zh-CN.yaml index fa51d9a67c1f6..2b2854ddf315d 100644 --- a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.zh-CN.yaml +++ b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json PackageIdentifier: Maxthon.Maxthon diff --git a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.yaml b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.yaml index 94fb8ea161c62..c23fac8ee042e 100644 --- a/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.yaml +++ b/manifests/m/Maxthon/Maxthon/7.1.7.8000/Maxthon.Maxthon.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Maxthon.Maxthon diff --git a/manifests/m/Microsoft/Azure/StorageExplorer/1.32.1/Microsoft.Azure.StorageExplorer.installer.yaml b/manifests/m/Microsoft/Azure/StorageExplorer/1.32.1/Microsoft.Azure.StorageExplorer.installer.yaml new file mode 100644 index 0000000000000..5681f073da451 --- /dev/null +++ b/manifests/m/Microsoft/Azure/StorageExplorer/1.32.1/Microsoft.Azure.StorageExplorer.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Microsoft.Azure.StorageExplorer +PackageVersion: 1.32.1 +InstallerType: inno +UpgradeBehavior: install +ReleaseDate: 2023-11-16 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/microsoft/AzureStorageExplorer/releases/download/v1.32.1/StorageExplorer-windows-x64.exe + InstallerSha256: 58A1C4F853B3DBC7E03333C0B90F6642EFD1E98C7E461B6EFC548D6517441545 + InstallerSwitches: + Custom: /NORESTART /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/microsoft/AzureStorageExplorer/releases/download/v1.32.1/StorageExplorer-windows-x64.exe + InstallerSha256: 58A1C4F853B3DBC7E03333C0B90F6642EFD1E98C7E461B6EFC548D6517441545 + InstallerSwitches: + Custom: /NORESTART /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Azure/StorageExplorer/1.32.1/Microsoft.Azure.StorageExplorer.locale.en-US.yaml b/manifests/m/Microsoft/Azure/StorageExplorer/1.32.1/Microsoft.Azure.StorageExplorer.locale.en-US.yaml new file mode 100644 index 0000000000000..82c30c3e1b826 --- /dev/null +++ b/manifests/m/Microsoft/Azure/StorageExplorer/1.32.1/Microsoft.Azure.StorageExplorer.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Microsoft.Azure.StorageExplorer +PackageVersion: 1.32.1 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://opensource.microsoft.com/ +PublisherSupportUrl: https://github.com/microsoft/AzureStorageExplorer/issues +Author: Microsoft +PackageName: Microsoft Azure Storage Explorer +PackageUrl: https://azure.microsoft.com/en-us/features/storage-explorer +License: CC-BY-4.0 +LicenseUrl: https://github.com/microsoft/AzureStorageExplorer/blob/HEAD/LICENSE +ShortDescription: Free tool to easily manage your Azure cloud storage resources anywhere, from Windows, macOS, or Linux. +Moniker: storageexplorer +Tags: +- azure +- azure-storage-explorer +- explorer +- storage +- storage-explorer +ReleaseNotes: |- + November 2023 (Version 1.32.1, build 20231114.10) + Welcome to Storage Explorer version 1.32.1. This release addresses several minor issues based on user feedback and fixes a few bugs. A full list of the closed issues in this release can be found here. +ReleaseNotesUrl: https://github.com/microsoft/AzureStorageExplorer/releases/tag/v1.32.1 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/Azure/StorageExplorer/1.32.1/Microsoft.Azure.StorageExplorer.yaml b/manifests/m/Microsoft/Azure/StorageExplorer/1.32.1/Microsoft.Azure.StorageExplorer.yaml new file mode 100644 index 0000000000000..c7312f611bd30 --- /dev/null +++ b/manifests/m/Microsoft/Azure/StorageExplorer/1.32.1/Microsoft.Azure.StorageExplorer.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Microsoft.Azure.StorageExplorer +PackageVersion: 1.32.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/1.87.0/Microsoft.VisualStudioCode.Insiders.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.87.0/Microsoft.VisualStudioCode.Insiders.installer.yaml index 2ba87c85121d0..43f52be308f36 100644 --- a/manifests/m/Microsoft/VisualStudioCode/Insiders/1.87.0/Microsoft.VisualStudioCode.Insiders.installer.yaml +++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.87.0/Microsoft.VisualStudioCode.Insiders.installer.yaml @@ -7,20 +7,20 @@ Commands: InstallerType: inno Installers: - Architecture: arm64 - InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/8fa84589eef3538dbc763ff98dc7d5a8a0c56374/VSCodeSetup-arm64-1.87.0-insider.exe' - InstallerSha256: 17b7aa6ba32a961b827ea1c898845798c0912ee542569b2b9efb8a38022dc355 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/7c15c66607256592202cc051fb3e117baf54af63/VSCodeSetup-arm64-1.87.0-insider.exe' + InstallerSha256: 43d41868278f410b1b70b287db13123d02b5511cafafb1f0902a478b1bad14d6 Scope: machine - Architecture: arm64 - InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/8fa84589eef3538dbc763ff98dc7d5a8a0c56374/VSCodeUserSetup-arm64-1.87.0-insider.exe' - InstallerSha256: b7dfbacd9e9a0d77c2c1a4d278d35d88a9ccb93af232040d9459910adcff83b4 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/7c15c66607256592202cc051fb3e117baf54af63/VSCodeUserSetup-arm64-1.87.0-insider.exe' + InstallerSha256: 6018d5c038d21df6dd13ca2985b31018844d11d7957bd97d2c07cb413c4cb53f Scope: user - Architecture: x64 - InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/8fa84589eef3538dbc763ff98dc7d5a8a0c56374/VSCodeSetup-x64-1.87.0-insider.exe' - InstallerSha256: 5c2c848af33694074d3812bab35f41a7b38906b2138d38f9e324c2e0ceb2c384 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/7c15c66607256592202cc051fb3e117baf54af63/VSCodeSetup-x64-1.87.0-insider.exe' + InstallerSha256: 41de321ab0be91b0584280ebb817468cbced83417999aa3100f8b13bf4105158 Scope: machine - Architecture: x64 - InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/8fa84589eef3538dbc763ff98dc7d5a8a0c56374/VSCodeUserSetup-x64-1.87.0-insider.exe' - InstallerSha256: 870ef7ff2b69aad51823407b91a86cf5cc6480d85edc25ec92c526da9f894c7d + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/7c15c66607256592202cc051fb3e117baf54af63/VSCodeUserSetup-x64-1.87.0-insider.exe' + InstallerSha256: 23f0850b4335ce5edbe4bbc1c3d942020704305e2844e07e05f56bd54168ffdb Scope: user ManifestType: installer ManifestVersion: 1.5.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.87.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.87.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml index df0e2d4f00746..fe7bef6f64e0b 100644 --- a/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.87.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml +++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.87.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml @@ -6,11 +6,11 @@ Commands: [] InstallerType: zip Installers: - Architecture: arm64 - InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/8fa84589eef3538dbc763ff98dc7d5a8a0c56374/vscode_cli_win32_arm64_cli.zip' - InstallerSha256: 7fe777255df19af2cbdc0872b27e6afe4530335c905c723dfb7c77d6ccb04c0d + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/7c15c66607256592202cc051fb3e117baf54af63/vscode_cli_win32_arm64_cli.zip' + InstallerSha256: 2b7f3963db10535c15f1213e8a31a29f05110fb3c27c71554d9aec21fcaf93b4 - Architecture: x64 - InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/8fa84589eef3538dbc763ff98dc7d5a8a0c56374/vscode_cli_win32_x64_cli.zip' - InstallerSha256: 0addbf0cf3c0296da2b1cdfa1e9a6f658ff02bc9ccd80585656ef4078b86c114 + InstallerUrl: 'https://vscode.download.prss.microsoft.com/dbazure/download/insider/7c15c66607256592202cc051fb3e117baf54af63/vscode_cli_win32_x64_cli.zip' + InstallerSha256: d8a9078161ca236998f9d59e23053801aae08cbd3e29a57b5d4bcf31c14be019 ManifestType: installer ManifestVersion: 1.5.0 NestedInstallerType: portable diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.installer.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.installer.yaml new file mode 100644 index 0000000000000..234d4daab4843 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.installer.yaml @@ -0,0 +1,842 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.installer.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallModes: +- silentWithProgress +UpgradeBehavior: install +Commands: +- firefox +Protocols: +- http +- https +FileExtensions: +- htm +- html +- url +ReleaseDate: 2024-02-06 +Installers: +- InstallerLocale: en-US + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/en-US/Firefox%20Setup%20122.0.1.msi + InstallerSha256: BF331A407FD187CCE61D7B616AEE039084356BF60D1FECFBFF461FDE84E371C3 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 en-US) + ProductCode: Mozilla Firefox 122.0.1 (x64 en-US) +- InstallerLocale: en-US + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/en-US/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 513647A4A1D94410840B9E525B298AEFF313A2D5352DB007812C4D1643374386 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 en-US) + ProductCode: Mozilla Firefox 122.0.1 (x64 en-US) +- InstallerLocale: en-US + Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/en-US/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 513647A4A1D94410840B9E525B298AEFF313A2D5352DB007812C4D1643374386 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 en-US) + ProductCode: Mozilla Firefox 122.0.1 (x64 en-US) +- InstallerLocale: en-US + Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/en-US/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 4EA54803C85D08899C070F567142E1DAC35EFA01A83E09C4D1AAC7AECF619EEE + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 en-US) + ProductCode: Mozilla Firefox 122.0.1 (x86 en-US) +- InstallerLocale: en-US + Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/en-US/Firefox%20Setup%20122.0.1.exe + InstallerSha256: C6BA9BD63A7DD3F0F12719000B277953DBAD872677699E960E1185320052437C + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 en-US) + ProductCode: Mozilla Firefox 122.0.1 (x86 en-US) +- InstallerLocale: en-US + Architecture: x86 + InstallerType: exe + Scope: user + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/en-US/Firefox%20Setup%20122.0.1.exe + InstallerSha256: C6BA9BD63A7DD3F0F12719000B277953DBAD872677699E960E1185320052437C + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 en-US) + ProductCode: Mozilla Firefox 122.0.1 (x86 en-US) +- InstallerLocale: en-US + Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/en-US/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 5AFA1CC8DD7D07659B96F8902D36717CC994EC0785CD8B12983958A1C8938648 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 en-US) + ProductCode: Mozilla Firefox 122.0.1 (arm64 en-US) +- InstallerLocale: en-US + Architecture: arm64 + InstallerType: exe + Scope: user + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/en-US/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 5AFA1CC8DD7D07659B96F8902D36717CC994EC0785CD8B12983958A1C8938648 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 en-US) + ProductCode: Mozilla Firefox 122.0.1 (arm64 en-US) +- InstallerLocale: cs-CZ + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/cs/Firefox%20Setup%20122.0.1.msi + InstallerSha256: DC0734CE3ABCF06984286939DA5D8D7D08DA62CC1240EFE55A07DAD954893165 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 cs) + ProductCode: Mozilla Firefox 122.0.1 (x64 cs) +- InstallerLocale: cs-CZ + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/cs/Firefox%20Setup%20122.0.1.exe + InstallerSha256: CFF032072BF1367B55F33595B3E1A53418576E44DB24179CB64B334681E62CEA + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 cs) + ProductCode: Mozilla Firefox 122.0.1 (x64 cs) +- InstallerLocale: cs-CZ + Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/cs/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 3FDDC23FB5E4C2C079A8741FC90CB97B75872465FF1206EF550D5F545B464A24 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 cs) + ProductCode: Mozilla Firefox 122.0.1 (x86 cs) +- InstallerLocale: cs-CZ + Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/cs/Firefox%20Setup%20122.0.1.exe + InstallerSha256: EA2E237C7796B8A6ADF1832EB26E095134AD50BC123A9392A8F1593A3A12860D + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 cs) + ProductCode: Mozilla Firefox 122.0.1 (x86 cs) +- InstallerLocale: cs-CZ + Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/cs/Firefox%20Setup%20122.0.1.exe + InstallerSha256: ACCEB904A55F727C250ABB6D20A9623276970276E59E0C790F6A27573BC4BB6C + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 cs) + ProductCode: Mozilla Firefox 122.0.1 (arm64 cs) +- InstallerLocale: de-DE + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/de/Firefox%20Setup%20122.0.1.msi + InstallerSha256: CCA94AD1FE1D7F79F11879FDE2FECEE515647D9CC5C7A478A34D0A75C5360151 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 de) + ProductCode: Mozilla Firefox 122.0.1 (x64 de) +- InstallerLocale: de-DE + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/de/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 67DFB68B7C3A7BB10B0B7610C426530F562B3FF5647D993C5AA3DCD62CD85B40 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 de) + ProductCode: Mozilla Firefox 122.0.1 (x64 de) +- InstallerLocale: de-DE + Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/de/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 5116C4A63E15FF4913CE03F784A0BFCDB7F34440B1881910977EACB51BFD212D + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 de) + ProductCode: Mozilla Firefox 122.0.1 (x86 de) +- InstallerLocale: de-DE + Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/de/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 33924FFA5227D4EC1ADBDADAAC978ED583EC28131580E77CC13691D0D440A530 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 de) + ProductCode: Mozilla Firefox 122.0.1 (x86 de) +- InstallerLocale: de-DE + Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/de/Firefox%20Setup%20122.0.1.exe + InstallerSha256: AE2EF53143FDC34CA401173DB3E603016B8B3386814BDD094E98854FBE6ADD96 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 de) + ProductCode: Mozilla Firefox 122.0.1 (arm64 de) +- InstallerLocale: el-GR + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/el/Firefox%20Setup%20122.0.1.msi + InstallerSha256: B38D0BF2947EDD62E67371B03DDB7E79B7A503A5AF363266937D31F8A5D09F44 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 el) + ProductCode: Mozilla Firefox 122.0.1 (x64 el) +- InstallerLocale: el-GR + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/el/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 40F17926BE0A0FE2975549A0D95FD54B0987B8D3E780750CCD90B43EA833C1A7 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 el) + ProductCode: Mozilla Firefox 122.0.1 (x64 el) +- InstallerLocale: el-GR + Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/el/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 66F9E084108330F6014A2AE74D5B89F260FE6736DEAE6461188CB185B6AF74C7 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 el) + ProductCode: Mozilla Firefox 122.0.1 (x86 el) +- InstallerLocale: el-GR + Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/el/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 40E70C6CA883AE67576FD5A072F6AE9CF10AD7709EFAC91DCC0190AC2131FE33 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 el) + ProductCode: Mozilla Firefox 122.0.1 (x86 el) +- InstallerLocale: el-GR + Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/el/Firefox%20Setup%20122.0.1.exe + InstallerSha256: AD49AF2236E0775174C8C42268651CD73584C5DF428E770CBBF8D555839009C6 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 el) + ProductCode: Mozilla Firefox 122.0.1 (arm64 el) +- InstallerLocale: en-GB + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/en-GB/Firefox%20Setup%20122.0.1.msi + InstallerSha256: B486FF310D85254618860EF0F69F112AADED38B5C065DF36A242DAB277CC82D6 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 en-GB) + ProductCode: Mozilla Firefox 122.0.1 (x64 en-GB) +- InstallerLocale: en-GB + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/en-GB/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 1D4ADDE5D8D9E56EE57EB3E51D70275BFE51E06ACAC83FCD18FEF8BF8D590A75 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 en-GB) + ProductCode: Mozilla Firefox 122.0.1 (x64 en-GB) +- InstallerLocale: en-GB + Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/en-GB/Firefox%20Setup%20122.0.1.msi + InstallerSha256: E94A57CD22FF10FAC19D491CB3A5C949709E86C0828E059C2D24BEE4DDF9B654 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 en-GB) + ProductCode: Mozilla Firefox 122.0.1 (x86 en-GB) +- InstallerLocale: en-GB + Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/en-GB/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 2BD853A80E607356EE14EA29D999EC1039446E7837D3765339EB5AF0ED5D4945 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 en-GB) + ProductCode: Mozilla Firefox 122.0.1 (x86 en-GB) +- InstallerLocale: en-GB + Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/en-GB/Firefox%20Setup%20122.0.1.exe + InstallerSha256: D90C578B20825B8EABCAED74BC890228FD625DBA6A1A4A451D183E14B8E022DD + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 en-GB) + ProductCode: Mozilla Firefox 122.0.1 (arm64 en-GB) +- InstallerLocale: es-MX + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/es-MX/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 6E008A77C2EDAE350AFF2DDAB40241F0C229D4960A99FB8E5447CF9F255572B1 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 es-MX) + ProductCode: Mozilla Firefox 122.0.1 (x64 es-MX) +- InstallerLocale: es-MX + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/es-MX/Firefox%20Setup%20122.0.1.exe + InstallerSha256: ACF9FB3FE1C5490B69D10E2310EB879B3562B5CC4792658578FAC9F6D299A2A1 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 es-MX) + ProductCode: Mozilla Firefox 122.0.1 (x64 es-MX) +- InstallerLocale: es-MX + Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/es-MX/Firefox%20Setup%20122.0.1.msi + InstallerSha256: E06B52F07B6ED5815E393C154B1E953DC680474D675C960E072627C0009E6694 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 es-MX) + ProductCode: Mozilla Firefox 122.0.1 (x86 es-MX) +- InstallerLocale: es-MX + Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/es-MX/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 31315FDD25B8B87B19EA928F75942EA42A039F295CA4184C9DB2084133A7BF43 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 es-MX) + ProductCode: Mozilla Firefox 122.0.1 (x86 es-MX) +- InstallerLocale: es-MX + Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/es-MX/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 27A48B6E24DE7AB7E39A49D16616A632EFF2D5F4A142494DABE42021844843F0 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 es-MX) + ProductCode: Mozilla Firefox 122.0.1 (arm64 es-MX) +- InstallerLocale: fr-FR + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/fr/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 608AB687334E4DAA68F9766484035D38F2D1D39961316BFBF332487FA894496B + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 fr) + ProductCode: Mozilla Firefox 122.0.1 (x64 fr) +- InstallerLocale: fr-FR + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/fr/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 0F6E377CF03E61AFA9B8F09CA45005C88EAA9FCA723D3FB0A3CDE05B26112436 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 fr) + ProductCode: Mozilla Firefox 122.0.1 (x64 fr) +- InstallerLocale: fr-FR + Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/fr/Firefox%20Setup%20122.0.1.msi + InstallerSha256: B341F126C6C239CAC2C27634667F0FFDC6163A70E29738DDBB68F269371C66B4 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 fr) + ProductCode: Mozilla Firefox 122.0.1 (x86 fr) +- InstallerLocale: fr-FR + Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/fr/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 01B84E511C5E2871216690297755CA77A5A67E4441306DF95D18ABA4E70023DE + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 fr) + ProductCode: Mozilla Firefox 122.0.1 (x86 fr) +- InstallerLocale: fr-FR + Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/fr/Firefox%20Setup%20122.0.1.exe + InstallerSha256: E17D87DB3F51694B1DE7B31E1427950881C7881F8C1936EC757DA1667CED4DE8 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 fr) + ProductCode: Mozilla Firefox 122.0.1 (arm64 fr) +- InstallerLocale: hu-HU + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/hu/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 5D84FF418A5D454490C502DEB84289BB91C9481350A9437969023545DE3FFFFE + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 hu) + ProductCode: Mozilla Firefox 122.0.1 (x64 hu) +- InstallerLocale: hu-HU + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/hu/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 8BD9204378C9243771A7198D1CF2D64371E72B5D2A72205E95ACDD72017A6172 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 hu) + ProductCode: Mozilla Firefox 122.0.1 (x64 hu) +- InstallerLocale: hu-HU + Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/hu/Firefox%20Setup%20122.0.1.msi + InstallerSha256: B260F4411DA53B37214F81C6F29DF3CBA4B2EAC03895BBAF07CAD68E7A956437 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 hu) + ProductCode: Mozilla Firefox 122.0.1 (x86 hu) +- InstallerLocale: hu-HU + Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/hu/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 24C43E28B12451151EAD4AB2CB12ED452EF626F131B3A6D1A96FA76C480D19B4 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 hu) + ProductCode: Mozilla Firefox 122.0.1 (x86 hu) +- InstallerLocale: hu-HU + Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/hu/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 5F14C543EB66545AD2F59D7F49EE91FC0FC3B64E145799A2E9DF3F189B7B8909 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 hu) + ProductCode: Mozilla Firefox 122.0.1 (arm64 hu) +- InstallerLocale: ja-JP + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/ja/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 2A1CA4E16F881A5A20C8A272E4513BB877DE4E3E53A996FD528AABAE144D5EBC + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 ja) + ProductCode: Mozilla Firefox 122.0.1 (x64 ja) +- InstallerLocale: ja-JP + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/ja/Firefox%20Setup%20122.0.1.exe + InstallerSha256: B5731F6CEBCD64ECC867139587FC873BE46AF0D67C279E946F92C88519FB64B5 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 ja) + ProductCode: Mozilla Firefox 122.0.1 (x64 ja) +- InstallerLocale: ja-JP + Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/ja/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 2504D9C58BACC4ADB6D91DD0FB4FEA5478DF2EAFAC9284ABC2971ECE0B2DF48A + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 ja) + ProductCode: Mozilla Firefox 122.0.1 (x86 ja) +- InstallerLocale: ja-JP + Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/ja/Firefox%20Setup%20122.0.1.exe + InstallerSha256: ECB1178A1B9C6BB67093F6EAA5DE62B08104DA52C56F84F1C85B60E507789FEF + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 ja) + ProductCode: Mozilla Firefox 122.0.1 (x86 ja) +- InstallerLocale: ja-JP + Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/ja/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 422ABE8824BC20510A99D1596951F9038F4DA4A8F97EFF21ACC816E9593BB9FA + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 ja) + ProductCode: Mozilla Firefox 122.0.1 (arm64 ja) +- InstallerLocale: nb-NO + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/nb-NO/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 42994C127493CCE8917DE47521CD667604483AD393F3150194431AC422639918 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 nb-NO) + ProductCode: Mozilla Firefox 122.0.1 (x64 nb-NO) +- InstallerLocale: nb-NO + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/nb-NO/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 1152343B48BABBD79120905CFB801DAEA122613B3EA0D8C22F4E207019ABE734 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 nb-NO) + ProductCode: Mozilla Firefox 122.0.1 (x64 nb-NO) +- InstallerLocale: nb-NO + Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/nb-NO/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 293DE614DA9060056DF9ACD925BA10265ED695E27465B0CE4EDB67C1D14D3717 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 nb-NO) + ProductCode: Mozilla Firefox 122.0.1 (x86 nb-NO) +- InstallerLocale: nb-NO + Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/nb-NO/Firefox%20Setup%20122.0.1.exe + InstallerSha256: F6A77CEAD3A490B436F68187709300F20AAC1A2089408B8C495908F596DE6510 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 nb-NO) + ProductCode: Mozilla Firefox 122.0.1 (x86 nb-NO) +- InstallerLocale: nb-NO + Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/nb-NO/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 25DC00BA0706389FF2FCD464409A4C7F97E02DB4AA7DD8E1654733EFD8B39EF6 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 nb-NO) + ProductCode: Mozilla Firefox 122.0.1 (arm64 nb-NO) +- InstallerLocale: ru-RU + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/ru/Firefox%20Setup%20122.0.1.msi + InstallerSha256: CAE920A103AAEAED2E0795C8E1EB3B0ABF9F47A426E71ECE2D69956521193051 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 ru) + ProductCode: Mozilla Firefox 122.0.1 (x64 ru) +- InstallerLocale: ru-RU + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/ru/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 0D8C133695C29DC8F45B5AE130B15A8A0F9C4778510240B2A2A875EBCEE4F69B + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 ru) + ProductCode: Mozilla Firefox 122.0.1 (x64 ru) +- InstallerLocale: ru-RU + Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/ru/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 32085D89634B8D8EFC171182E10B544F25A73E4256EE20F050AD9A0F9E3415D9 + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 ru) + ProductCode: Mozilla Firefox 122.0.1 (x86 ru) +- InstallerLocale: ru-RU + Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/ru/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 79C7DAF743CD139D0C9774F2F3B144C646FF96ECE82752A163238F91E68F9CC9 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 ru) + ProductCode: Mozilla Firefox 122.0.1 (x86 ru) +- InstallerLocale: ru-RU + Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/ru/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 092673351A556BD66FDDA11F32B74E37E1EEA01F41AFD27E9550C76BE20F59AC + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 ru) + ProductCode: Mozilla Firefox 122.0.1 (arm64 ru) +- InstallerLocale: ta-IN + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/ta/Firefox%20Setup%20122.0.1.msi + InstallerSha256: A21F83EF24F71D31B9D7B7F5229C64638C311FCF1900D0F2C6BE60D562614CEF + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 ta) + ProductCode: Mozilla Firefox 122.0.1 (x64 ta) +- InstallerLocale: ta-IN + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/ta/Firefox%20Setup%20122.0.1.exe + InstallerSha256: BCD9BE140848488AEA17E5A1DC821BF2B886E835A2BE22ED6B85B507925E0067 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 ta) + ProductCode: Mozilla Firefox 122.0.1 (x64 ta) +- InstallerLocale: ta-IN + Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/ta/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 38733827EB6D7B34AD2E51E8FBABD509DB598251C79EDA5524FA6E6B772D073C + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 ta) + ProductCode: Mozilla Firefox 122.0.1 (x86 ta) +- InstallerLocale: ta-IN + Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/ta/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 62553D60282953070FE12C3AFB8FC8DE26D5A0A6B3B50D53FCA74A8323ECD77C + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 ta) + ProductCode: Mozilla Firefox 122.0.1 (x86 ta) +- InstallerLocale: ta-IN + Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/ta/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 1D3D73C7FA1466AC639529C6A1F9DF831C169D51D86447EB71D2EC91A1ED5AC0 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 ta) + ProductCode: Mozilla Firefox 122.0.1 (arm64 ta) +- InstallerLocale: zh-CN + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/zh-CN/Firefox%20Setup%20122.0.1.msi + InstallerSha256: F8A01FDC36AF5AEEB58585DD4D0CDA2A8246AB466BED529D7211BAD439542C4A + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 zh-CN) + ProductCode: Mozilla Firefox 122.0.1 (x64 zh-CN) +- InstallerLocale: zh-CN + Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/zh-CN/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 1A0EA9F99C778D2507A1288FDAA2570AE98CCBAF6CB67A7A437021BDCD34B58A + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x64 zh-CN) + ProductCode: Mozilla Firefox 122.0.1 (x64 zh-CN) +- InstallerLocale: zh-CN + Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/zh-CN/Firefox%20Setup%20122.0.1.msi + InstallerSha256: 705E0304032A7C456FE700FDF12EA0BE80ADFA7F49B83E4BF9EC643FB110F69F + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 zh-CN) + ProductCode: Mozilla Firefox 122.0.1 (x86 zh-CN) +- InstallerLocale: zh-CN + Architecture: x86 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/zh-CN/Firefox%20Setup%20122.0.1.exe + InstallerSha256: C5859C2A96CB659AB59E5F31320CBC9D7C25636E2E8E1B8580D5DFE2FDA51D3A + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (x86 zh-CN) + ProductCode: Mozilla Firefox 122.0.1 (x86 zh-CN) +- InstallerLocale: zh-CN + Architecture: arm64 + InstallerType: exe + Scope: machine + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64-aarch64/zh-CN/Firefox%20Setup%20122.0.1.exe + InstallerSha256: 889EB74C837833A8F0E1E6E3987A37CC2D364157323525FA8F6EBB511901A708 + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' + AppsAndFeaturesEntries: + - DisplayName: Mozilla Firefox (arm64 zh-CN) + ProductCode: Mozilla Firefox 122.0.1 (arm64 zh-CN) +- Architecture: x64 + InstallerType: msix + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win64/multi/Firefox%20Setup%20122.0.1.msix + InstallerSha256: 2AB64718607061DEDACA14543FFAB8282F2136C7ED6AFC8BD918A0CB72F57C63 + SignatureSha256: A87EA41C00C5F92287C9721EDBD2D4F8BECB38919D60A063ED231BDD00E2EEB5 + PackageFamilyName: Mozilla.MozillaFirefox_gmpnhwe7bv608 +- Architecture: x86 + InstallerType: msix + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0.1/win32/multi/Firefox%20Setup%20122.0.1.msix + InstallerSha256: 5985E24A1D84BA43F7A5E95BADA4F17DB518CD369C5A29C3BCF0D004E5C2F85B + SignatureSha256: 4E713CF0C747EE745F44378006FEDCF1B33E0D89A4DF6D8F59DFEBA4190782D7 + PackageFamilyName: Mozilla.MozillaFirefox_gmpnhwe7bv608 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..1cf4f4f4202cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.cs-CZ.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.locale.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +PackageLocale: cs-CZ +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/en-US/ +PublisherSupportUrl: https://support.mozilla.org/en-US/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox +PackageUrl: https://www.mozilla.org/en-US/firefox/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.mozilla.org/en-US/MPL/2.0 +# Copyright: +CopyrightUrl: https://www.mozilla.org/en-US/foundation/trademarks/policy +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +# Moniker: +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.de-DE.yaml new file mode 100644 index 0000000000000..2b724eaf5afe9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.de-DE.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.locale.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox +PackageUrl: https://www.mozilla.org/de/firefox/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.mozilla.org/en-US/MPL/2.0 +# Copyright: +CopyrightUrl: https://www.mozilla.org/en-US/foundation/trademarks/policy +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +# Moniker: +Tags: +- webbrowser +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.el-GR.yaml new file mode 100644 index 0000000000000..0974ce59c261e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.el-GR.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.locale.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +PackageLocale: el-GR +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/websites/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox +PackageUrl: https://www.mozilla.org/el/firefox/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.mozilla.org/en-US/MPL/2.0 +# Copyright: +CopyrightUrl: https://www.mozilla.org/en-US/foundation/trademarks/policy +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +# Description: +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.en-GB.yaml new file mode 100644 index 0000000000000..b7c00f139220c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.en-GB.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.locale.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +PackageLocale: en-GB +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/en-GB/ +PublisherSupportUrl: https://support.mozilla.org/en-GB/ +PrivacyUrl: https://www.mozilla.org/en-GB/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox +PackageUrl: https://www.mozilla.org/en-GB/firefox/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.mozilla.org/en-US/MPL/2.0 +# Copyright: +CopyrightUrl: https://www.mozilla.org/en-US/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +# Moniker: +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.en-US.yaml new file mode 100644 index 0000000000000..b89f76aceff95 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.defaultLocale.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/en-US/ +PublisherSupportUrl: https://support.mozilla.org/en-US/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox +PackageUrl: https://www.mozilla.org/en-US/firefox/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.mozilla.org/en-US/MPL/2.0 +# Copyright: +CopyrightUrl: https://www.mozilla.org/en-US/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.es-MX.yaml new file mode 100644 index 0000000000000..a8b56b79d86c0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.es-MX.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.locale.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +PackageLocale: es-MX +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es-MX/privacy/websites/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.mozilla.org/es-MX/MPL/2.0/ +# Copyright: +CopyrightUrl: https://www.mozilla.org/en-US/foundation/trademarks/policy +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +# Moniker: +Tags: +- navegador +- navegador-web +- web +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.fr-FR.yaml new file mode 100644 index 0000000000000..947e935ffd5e2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.fr-FR.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.locale.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +PackageLocale: fr-FR +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/websites/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox +PackageUrl: https://www.mozilla.org/fr/firefox/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.mozilla.org/en-US/MPL/2.0 +# Copyright: +CopyrightUrl: https://www.mozilla.org/en-US/foundation/trademarks/policy +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +# Description: +# Moniker: +Tags: +- navigateur +- navigateur-web +- web +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.hu-HU.yaml new file mode 100644 index 0000000000000..b353b0a62065d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.hu-HU.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.locale.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +PackageLocale: hu-HU +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/hu +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox +PackageUrl: https://www.mozilla.org/hu/firefox/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.mozilla.org/en-US/MPL/2.0 +# Copyright: +CopyrightUrl: https://www.mozilla.org/en-US/foundation/trademarks/policy +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +# Moniker: +Tags: +- webbrowser +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.ja-JP.yaml new file mode 100644 index 0000000000000..be348dcf40994 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.ja-JP.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.locale.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +PackageLocale: ja-JP +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/websites/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox +PackageUrl: https://www.mozilla.org/ja/firefox/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.mozilla.org/en-US/MPL/2.0 +# Copyright: +CopyrightUrl: https://www.mozilla.org/en-US/foundation/trademarks/policy +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +# Moniker: +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.nb-NO.yaml new file mode 100644 index 0000000000000..2ed4838aee2ae --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.nb-NO.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.locale.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +PackageLocale: nb-NO +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.mozilla.org/en-US/MPL/2.0 +# Copyright: +CopyrightUrl: https://www.mozilla.org/en-US/foundation/trademarks/policy +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +# Moniker: +Tags: +- nettleser +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.ru-RU.yaml new file mode 100644 index 0000000000000..b61911f4d5618 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.ru-RU.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.locale.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +PackageLocale: ru-RU +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox +PackageUrl: https://www.mozilla.org/ru/firefox/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.mozilla.org/en-US/MPL/2.0 +# Copyright: +CopyrightUrl: https://www.mozilla.org/en-US/foundation/trademarks/policy +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +# Moniker: +Tags: +- браузер +- веб-браузер +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.ta-IN.yaml new file mode 100644 index 0000000000000..622c2d46229d2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.ta-IN.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.locale.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +PackageLocale: ta-IN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/en-US/ +PublisherSupportUrl: https://support.mozilla.org/en-US/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/websites +Author: மொஸில்லா அறக்கட்டளை +PackageName: Mozilla Firefox +PackageUrl: https://www.mozilla.org/en-US/firefox/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.mozilla.org/en-US/MPL/2.0 +# Copyright: +CopyrightUrl: https://www.mozilla.org/en-US/foundation/trademarks/policy +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +# Moniker: +Tags: +- browser +- foss +- mozilla +- web +- web-browser +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b3feca4aa7eb6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.locale.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +License: Mozilla Public License Version 2.0 +LicenseUrl: https://www.mozilla.org/en-US/MPL/2.0 +# Copyright: +CopyrightUrl: https://www.mozilla.org/en-US/foundation/trademarks/policy +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +# Moniker: +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.yaml b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.yaml new file mode 100644 index 0000000000000..8a9b91d1f1857 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/122.0.1/Mozilla.Firefox.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-26052-1000.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.version.1.6.0.json + +PackageIdentifier: Mozilla.Firefox +PackageVersion: 122.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/Mozilla/Firefox/122.0/Mozilla.Firefox.installer.yaml b/manifests/m/Mozilla/Firefox/122.0/Mozilla.Firefox.installer.yaml index d558860df1eb9..4f6a1ec6ff2a3 100644 --- a/manifests/m/Mozilla/Firefox/122.0/Mozilla.Firefox.installer.yaml +++ b/manifests/m/Mozilla/Firefox/122.0/Mozilla.Firefox.installer.yaml @@ -266,7 +266,7 @@ Installers: InstallerSha256: 098DAD7B1A38952BF0B7D8EEB26946431CAC990ECF676D08A862F1ACF24EF6BC ProductCode: '{1294A4C5-9977-480F-9497-C0EA1E630130}' AppsAndFeaturesEntries: - - DisplayName: https://download-installer.cdn.mozilla.net/pub/firefox/releases/122.0/win32/el/Firefox%20Setup%20122.0.exe + - DisplayName: Mozilla Firefox (x86 el) ProductCode: Mozilla Firefox 122.0 (x86 el) - InstallerLocale: el-GR Architecture: x86 diff --git a/manifests/m/michidk/vscli/0.2.1/michidk.vscli.installer.yaml b/manifests/m/michidk/vscli/0.2.1/michidk.vscli.installer.yaml index e013564bd2248..d739055b182e0 100644 --- a/manifests/m/michidk/vscli/0.2.1/michidk.vscli.installer.yaml +++ b/manifests/m/michidk/vscli/0.2.1/michidk.vscli.installer.yaml @@ -1,4 +1,4 @@ -# Created with Komac v1.11.0 +# Created with komac v2.0.3 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: michidk.vscli diff --git a/manifests/m/michidk/vscli/0.2.1/michidk.vscli.locale.en-US.yaml b/manifests/m/michidk/vscli/0.2.1/michidk.vscli.locale.en-US.yaml index 80caa46a7b118..25ddce85cb9d9 100644 --- a/manifests/m/michidk/vscli/0.2.1/michidk.vscli.locale.en-US.yaml +++ b/manifests/m/michidk/vscli/0.2.1/michidk.vscli.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Komac v1.11.0 +# Created with komac v2.0.3 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: michidk.vscli @@ -11,14 +11,15 @@ Author: Michael Lohr PackageName: vscli PackageUrl: https://github.com/michidk/vscli License: MIT -LicenseUrl: https://github.com/michidk/vscli/blob/main/LICENSE +LicenseUrl: https://github.com/michidk/vscli/blob/HEAD/LICENSE ShortDescription: A CLI tool to launch vscode projects, which supports devcontainers. Moniker: vscli Tags: -- rust - cli -- vscode - devcontainer +- rust +- vscode +ReleaseNotes: 'Contains various bug fixes.Full Changelog:' ReleaseNotesUrl: https://github.com/michidk/vscli/releases/tag/v0.2.1 ManifestType: defaultLocale ManifestVersion: 1.5.0 diff --git a/manifests/m/michidk/vscli/0.2.1/michidk.vscli.yaml b/manifests/m/michidk/vscli/0.2.1/michidk.vscli.yaml index 31d4153f874f3..9a3111c6d2aa6 100644 --- a/manifests/m/michidk/vscli/0.2.1/michidk.vscli.yaml +++ b/manifests/m/michidk/vscli/0.2.1/michidk.vscli.yaml @@ -1,4 +1,4 @@ -# Created with Komac v1.11.0 +# Created with komac v2.0.3 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: michidk.vscli diff --git a/manifests/m/mvdan/shfmt/3.8.0/mvdan.shfmt.installer.yaml b/manifests/m/mvdan/shfmt/3.8.0/mvdan.shfmt.installer.yaml new file mode 100644 index 0000000000000..953242687498f --- /dev/null +++ b/manifests/m/mvdan/shfmt/3.8.0/mvdan.shfmt.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: mvdan.shfmt +PackageVersion: 3.8.0 +InstallerType: portable +Commands: +- shfmt +FileExtensions: +- sh +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/mvdan/sh/releases/download/v3.8.0/shfmt_v3.8.0_windows_386.exe + InstallerSha256: 7BCA75D21D99A256B79DB258C8E6411A99B6F6A990C937663621650CEC95EDE2 +- Architecture: x64 + InstallerUrl: https://github.com/mvdan/sh/releases/download/v3.8.0/shfmt_v3.8.0_windows_amd64.exe + InstallerSha256: 91230A6D2D4DBB52E9C0BB134ACBA526F7880BFD3DFD1FFDDE66E9F393D7A646 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/m/mvdan/shfmt/3.8.0/mvdan.shfmt.locale.en-US.yaml b/manifests/m/mvdan/shfmt/3.8.0/mvdan.shfmt.locale.en-US.yaml new file mode 100644 index 0000000000000..3f9681b4b0914 --- /dev/null +++ b/manifests/m/mvdan/shfmt/3.8.0/mvdan.shfmt.locale.en-US.yaml @@ -0,0 +1,51 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: mvdan.shfmt +PackageVersion: 3.8.0 +PackageLocale: en-US +Publisher: Daniel Martí +PublisherUrl: https://mvdan.cc/ +PublisherSupportUrl: https://github.com/mvdan/sh/issues +# PrivacyUrl: +Author: Daniel Martí +PackageName: shfmt +PackageUrl: https://github.com/mvdan/sh +License: BSD-3-Clause +LicenseUrl: https://github.com/mvdan/sh/blob/master/LICENSE +Copyright: Copyright (c) 2024, Daniel Martí. All rights reserved. +# CopyrightUrl: +ShortDescription: Format shell programs +# Description: +# Moniker: +Tags: +- bash +- beautify +- format +- formatter +- shell +ReleaseNotes: |- + This release drops support for Go 1.19 and 1.20 and includes many features and bugfixes, such as improving EditorConfig support in shfmt. + - cmd/shfmt + - Support EditorConfig language sections such as [[shell]] - #664 + - Add --apply-ignore for tools and editors - #1037 + - syntax + - Allow formatting redirects before all command argumetnts - #942 + - Support brace expansions with uppercase letters - #1042 + - Unescape backquotes in single quotes within backquotes - #1041 + - Better error when using function in POSIX mode - #993 + - Better column numbers for escapes inside backquotes - #1028 + - interp + - Support parentheses in classic test commands - #1036 + - Determine access to a directory via unix.Access - #1033 + - Support subshells with FuncEnviron as Env - #1043 + - Add support for fs.DirEntry via ReadDirHandler2 + - expand + - Add support for fs.DirEntry via ReadDir2 + - Support zero-padding in brace expansions - #1042 +ReleaseNotesUrl: https://github.com/mvdan/sh/releases/tag/v3.8.0 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/m/mvdan/shfmt/3.8.0/mvdan.shfmt.locale.zh-CN.yaml b/manifests/m/mvdan/shfmt/3.8.0/mvdan.shfmt.locale.zh-CN.yaml new file mode 100644 index 0000000000000..89935cfe6cc12 --- /dev/null +++ b/manifests/m/mvdan/shfmt/3.8.0/mvdan.shfmt.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: mvdan.shfmt +PackageVersion: 3.8.0 +PackageLocale: zh-CN +Publisher: Daniel Martí +PublisherUrl: https://mvdan.cc/ +PublisherSupportUrl: https://github.com/mvdan/sh/issues +# PrivacyUrl: +Author: Daniel Martí +PackageName: shfmt +PackageUrl: https://github.com/mvdan/sh +License: BSD-3-Clause +LicenseUrl: https://github.com/mvdan/sh/blob/master/LICENSE +Copyright: Copyright (c) 2024, Daniel Martí. All rights reserved. +# CopyrightUrl: +ShortDescription: 格式化 shell 程序 +# Description: +# Moniker: +Tags: +- bash +- shell +- 格式化 +- 美化 +# ReleaseNotes: +ReleaseNotesUrl: https://github.com/mvdan/sh/releases/tag/v3.8.0 +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/m/mvdan/shfmt/3.8.0/mvdan.shfmt.yaml b/manifests/m/mvdan/shfmt/3.8.0/mvdan.shfmt.yaml new file mode 100644 index 0000000000000..a31f8b2508760 --- /dev/null +++ b/manifests/m/mvdan/shfmt/3.8.0/mvdan.shfmt.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: mvdan.shfmt +PackageVersion: 3.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/n/nzbget/nzbget/23.0/nzbget.nzbget.installer.yaml b/manifests/n/nzbget/nzbget/23.0/nzbget.nzbget.installer.yaml new file mode 100644 index 0000000000000..03e0e135eb832 --- /dev/null +++ b/manifests/n/nzbget/nzbget/23.0/nzbget.nzbget.installer.yaml @@ -0,0 +1,14 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: nzbget.nzbget +PackageVersion: '23.0' +InstallerType: nullsoft +Scope: machine +ReleaseDate: 2024-02-09 +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/nzbgetcom/nzbget/releases/download/v23.0/nzbget-23.0-bin-windows-setup.exe + InstallerSha256: A8019D162378E0039CF66EA80C82CF37EC3F206106489A4F2B3EAE40CC2DDF7B +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/n/nzbget/nzbget/23.0/nzbget.nzbget.locale.en-US.yaml b/manifests/n/nzbget/nzbget/23.0/nzbget.nzbget.locale.en-US.yaml new file mode 100644 index 0000000000000..10f35035ef619 --- /dev/null +++ b/manifests/n/nzbget/nzbget/23.0/nzbget.nzbget.locale.en-US.yaml @@ -0,0 +1,66 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: nzbget.nzbget +PackageVersion: '23.0' +PackageLocale: en-US +Publisher: nzbget.net +PublisherUrl: https://github.com/nzbgetcom +PublisherSupportUrl: https://github.com/nzbgetcom/nzbget/issues +PackageName: NZBGet +PackageUrl: https://github.com/nzbgetcom/nzbget +License: GPL-2.0 +LicenseUrl: https://github.com/nzbgetcom/nzbget/blob/develop/COPYING +ShortDescription: Unsenet downloader +ReleaseNotes: |- + What's Changed + - Features:- Extension Manager #76;- The new nzbget extension system, which makes it easy to download/update/delete + extensions with backward compatibility with the old system; + - extensions master list; + - changed:- RPC request "configtemplates" - no longer returns script templates, but only the config template; + + - added:- new RPC requests:- "loadextensions" - loads all extensions from {ScriptDIR} and returns an array of structures in JSON/XML formats; + - "updateextension" - downloads by url and name and installs the extension. Returns 'true' or error response in JSON/XML formats; + - "deleteextension" - deletes extension by name. Returns 'true' or error response in JSON/XML formats; + - "downloadextension" - downloads by url and installs the extension. Returns 'true' or error response in JSON/XML formats; + - "testextension" - tries to find the right executor program for the extension, e.g. Python. + Returns 'true' or error response in JSON/XML formats; + + - "EXTENSION MANAGER" section in webui to download/delete/update extensions; + - Boost.Json library to work with JSON; + - more unit tests; + + - refactored:- replaced raw pointers with smart pointers and const refs where possible for memory safty reasons; + + - removed:- testdata_FILES from Makefile.am; + - EMail and Logger scripts; + + + - Docker support #55; + - Synology support (spk) #72; + - QNAP support #158; + - aarch64 mipseb mipsel ppc6xx ppc500 architectures to linux build #61 #146; + - article read chunk size #52;- Added ArticleReadChunkSize config option which allows to adjust + the buffer size for customization on different platforms, which can lead to increased performance; + + - increased the number of default connections to 8 #54; + - automatic search for a suitable interpreter on POSIX #74; + - certificate verification levels #150;- levels:- None: NO certificate signing check, NO certificate hostname check; + - Minimal: certificate signing check, NO certificate hostname check; + - Strict: certificate signing check, certificate hostname check; + + - tested on a mock nzbget NNTP nserv server with self-signed certificate and got expected results:- "Strict" -> test failed; + - "Minimal" -> test failed; + - "None" -> test passed"; + + + + - Bug fixies:- possible memory corruption #148; + + - For developers:- fixed unit tests (Windows only for now) and started migration to CMake #64;- We are going to completely migrate to CMake as a more universal one for cross-platform development and drop autotools and MSBuild; + + - using libxml2 on Windows and vcpkg package manager to install dependencies #70;- libxml2 library is now used on Windows to work with xml in the same way we already do on Linux and macOS; + - removed platform-dependent code for working with xml on Windows; +ReleaseNotesUrl: https://github.com/nzbgetcom/nzbget/releases/tag/v23.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/n/nzbget/nzbget/23.0/nzbget.nzbget.yaml b/manifests/n/nzbget/nzbget/23.0/nzbget.nzbget.yaml new file mode 100644 index 0000000000000..b8012aaf22eb2 --- /dev/null +++ b/manifests/n/nzbget/nzbget/23.0/nzbget.nzbget.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: nzbget.nzbget +PackageVersion: '23.0' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenMedia/4KVideoDownloaderPlus/1.4.3.0060/OpenMedia.4KVideoDownloaderPlus.installer.yaml b/manifests/o/OpenMedia/4KVideoDownloaderPlus/1.4.3.0060/OpenMedia.4KVideoDownloaderPlus.installer.yaml new file mode 100644 index 0000000000000..99db3c9cfdeea --- /dev/null +++ b/manifests/o/OpenMedia/4KVideoDownloaderPlus/1.4.3.0060/OpenMedia.4KVideoDownloaderPlus.installer.yaml @@ -0,0 +1,46 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: OpenMedia.4KVideoDownloaderPlus +PackageVersion: 1.4.3.0060 +UpgradeBehavior: install +ReleaseDate: 2024-01-31 +Installers: +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://dl.4kdownload.com/app/4kvideodownloaderplus_1.4.3_online.exe + InstallerSha256: ed15841b7e073238e895e4f82173f1b7ec0a62837ab0127ac693728cf718862a + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://dl.4kdownload.com/app/4kvideodownloaderplus_1.4.3_x64_online.exe + InstallerSha256: c25bed34c9abfb4842dd16142e516aeefd4b101d05a681d7d4fefa249a7dc58d + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: x86 + Scope: machine + InstallerType: wix + InstallerUrl: https://dl.4kdownload.com/app/4kvideodownloaderplus_1.4.3.msi + InstallerSha256: 6721EBA32FF864E738661B98C804D3128CFAFE197CD2155D83D2DBB3EC26636A + ProductCode: '{987010A5-0E88-41EB-AC59-530B8104FB38}' + AppsAndFeaturesEntries: + - UpgradeCode: '{5B6DD0A5-3535-4E25-80B2-46C406B36E88}' + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + Scope: machine + InstallerType: wix + InstallerUrl: https://dl.4kdownload.com/app/4kvideodownloaderplus_1.4.3_x64.msi + InstallerSha256: D4EB8A04B41957ABB03F3885E1BDD8E71435B4D9CD36022C1D9532FC13F7BBBB + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ProductCode: '{6B28A8C5-AA96-45C6-9AA2-E7AE5CC5077F}' + AppsAndFeaturesEntries: + - UpgradeCode: '{5B6DD0A5-3535-4E25-80B2-46C406B36E88}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenMedia/4KVideoDownloaderPlus/1.4.3.0060/OpenMedia.4KVideoDownloaderPlus.locale.en-US.yaml b/manifests/o/OpenMedia/4KVideoDownloaderPlus/1.4.3.0060/OpenMedia.4KVideoDownloaderPlus.locale.en-US.yaml new file mode 100644 index 0000000000000..5a0b3c80fae4d --- /dev/null +++ b/manifests/o/OpenMedia/4KVideoDownloaderPlus/1.4.3.0060/OpenMedia.4KVideoDownloaderPlus.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: OpenMedia.4KVideoDownloaderPlus +PackageVersion: 1.4.3.0060 +PackageLocale: en-US +Publisher: Open Media LLC +PublisherUrl: https://www.4kdownload.com/ +PublisherSupportUrl: https://4kdownload.com/help/14 +PrivacyUrl: https://4kdownload.com/privacy/1 +Author: Open Media LLC +PackageName: 4K Video Downloader+ +PackageUrl: https://www.4kdownload.com/products/videodownloader +License: Proprietary +LicenseUrl: https://www.4kdownload.com/agreement/terms-of-use +Copyright: Copyright 2023 Open Media. All rights reserved. +ShortDescription: Download videos from all popular websites in high quality. +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://4kdownload.com/help/14#faq +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenMedia/4KVideoDownloaderPlus/1.4.3.0060/OpenMedia.4KVideoDownloaderPlus.yaml b/manifests/o/OpenMedia/4KVideoDownloaderPlus/1.4.3.0060/OpenMedia.4KVideoDownloaderPlus.yaml new file mode 100644 index 0000000000000..8fa1f7d4a400a --- /dev/null +++ b/manifests/o/OpenMedia/4KVideoDownloaderPlus/1.4.3.0060/OpenMedia.4KVideoDownloaderPlus.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.2 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: OpenMedia.4KVideoDownloaderPlus +PackageVersion: 1.4.3.0060 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenVPNTechnologies/OpenVPN/2.6.901/OpenVPNTechnologies.OpenVPN.installer.yaml b/manifests/o/OpenVPNTechnologies/OpenVPN/2.6.901/OpenVPNTechnologies.OpenVPN.installer.yaml new file mode 100644 index 0000000000000..ddfd17ee744e4 --- /dev/null +++ b/manifests/o/OpenVPNTechnologies/OpenVPN/2.6.901/OpenVPNTechnologies.OpenVPN.installer.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: OpenVPNTechnologies.OpenVPN +PackageVersion: 2.6.901 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- openvpn.exe +ProductCode: '{F8F0FB6A-DC3A-45C3-9A5E-88BCCDA5DF71}' +Installers: +- Architecture: x64 + InstallerUrl: https://swupdate.openvpn.org/community/releases/OpenVPN-2.6.9-I001-amd64.msi + InstallerSha256: 0B1DDA1AABA754467A6D7AC4E64E178E783AEC5E7FD717882CF5B296A40320AB +- Architecture: x86 + InstallerUrl: https://swupdate.openvpn.org/community/releases/OpenVPN-2.6.9-I001-x86.msi + InstallerSha256: 02EF80DEDB34805ACADCC5CF09B29D077A166FBD3770293F0C9732E7743D97ED +- Architecture: arm64 + InstallerUrl: https://swupdate.openvpn.org/community/releases/OpenVPN-2.6.9-I001-arm64.msi + InstallerSha256: 400ED4516EE6512815879A646BD684EC9496AD76B62C39F8AD98128121E7D9F7 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenVPNTechnologies/OpenVPN/2.6.901/OpenVPNTechnologies.OpenVPN.locale.en-US.yaml b/manifests/o/OpenVPNTechnologies/OpenVPN/2.6.901/OpenVPNTechnologies.OpenVPN.locale.en-US.yaml new file mode 100644 index 0000000000000..b39ece3b32dbb --- /dev/null +++ b/manifests/o/OpenVPNTechnologies/OpenVPN/2.6.901/OpenVPNTechnologies.OpenVPN.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: OpenVPNTechnologies.OpenVPN +PackageVersion: 2.6.901 +PackageLocale: en-US +Publisher: OpenVPN, Inc. +PublisherUrl: https://openvpn.net +PublisherSupportUrl: https://forums.openvpn.net +PrivacyUrl: https://openvpn.net/privacy-policy/ +Author: Open VPN Technologies +PackageName: OpenVPN +PackageUrl: https://openvpn.net +License: GNU GPLv2 +LicenseUrl: https://github.com/OpenVPN/openvpn/blob/master/COPYING +Copyright: Copyright © 2021 OpenVPN Inc +CopyrightUrl: https://openvpn.net/license/ +ShortDescription: Create secure VPN connections over the internet with this VPN-software +Description: OpenVPN provides flexible VPN solutions to secure your data communications, whether its for Internet privacy, remote access for employees, securing IoT, or for networking Cloud data centers. +Moniker: openvpn +Tags: +- community +- connection +- foss +- network +- open-source +- privacy +- private +- private-connection +- private-network +- security +- ssl +- tunnel +- virtual-private-connection +- vpn +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenVPNTechnologies/OpenVPN/2.6.901/OpenVPNTechnologies.OpenVPN.yaml b/manifests/o/OpenVPNTechnologies/OpenVPN/2.6.901/OpenVPNTechnologies.OpenVPN.yaml new file mode 100644 index 0000000000000..8b372bf6f1b65 --- /dev/null +++ b/manifests/o/OpenVPNTechnologies/OpenVPN/2.6.901/OpenVPNTechnologies.OpenVPN.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: OpenVPNTechnologies.OpenVPN +PackageVersion: 2.6.901 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenVPNTechnologies/OpenVPNConnect/3.4.4/OpenVPNTechnologies.OpenVPNConnect.installer.yaml b/manifests/o/OpenVPNTechnologies/OpenVPNConnect/3.4.4/OpenVPNTechnologies.OpenVPNConnect.installer.yaml new file mode 100644 index 0000000000000..43ba62823e380 --- /dev/null +++ b/manifests/o/OpenVPNTechnologies/OpenVPNConnect/3.4.4/OpenVPNTechnologies.OpenVPNConnect.installer.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: OpenVPNTechnologies.OpenVPNConnect +PackageVersion: 3.4.4 +InstallerLocale: en-US +InstallerType: wix +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Protocols: +- openvpn +FileExtensions: +- ovpn +AppsAndFeaturesEntries: +- UpgradeCode: '{7A36BDBE-2D2D-4771-A8F9-0F28AF7F8A2D}' +Installers: +- Architecture: x86 + InstallerUrl: https://swupdate.openvpn.net/downloads/connect/openvpn-connect-3.4.4.3412_signed_x86.msi + InstallerSha256: FB4EFCCA3894B13AA7E786E08206C0E1E26C25C538DCE9DB49E9E609D7D5DB1A + ProductCode: '{2F936353-F9C7-4030-BB85-48B203066487}' +- Architecture: x64 + InstallerUrl: https://swupdate.openvpn.net/downloads/connect/openvpn-connect-3.4.4.3412_signed.msi + InstallerSha256: 3372A2872BF5609B2FD6ECA832090AEB91AA1507276F39839789D7851A657636 + ProductCode: '{D31E8657-7903-46FA-A297-8D11E16D6A83}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenVPNTechnologies/OpenVPNConnect/3.4.4/OpenVPNTechnologies.OpenVPNConnect.locale.en-US.yaml b/manifests/o/OpenVPNTechnologies/OpenVPNConnect/3.4.4/OpenVPNTechnologies.OpenVPNConnect.locale.en-US.yaml new file mode 100644 index 0000000000000..37252fa4bf060 --- /dev/null +++ b/manifests/o/OpenVPNTechnologies/OpenVPNConnect/3.4.4/OpenVPNTechnologies.OpenVPNConnect.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: OpenVPNTechnologies.OpenVPNConnect +PackageVersion: 3.4.4 +PackageLocale: en-US +Publisher: OpenVPN Technologies +PublisherUrl: https://openvpn.net +PublisherSupportUrl: https://openvpn.net/community +PrivacyUrl: https://openvpn.net/privacy-policy +Author: OpenVPN Technologies +PackageName: OpenVPN Connect +PackageUrl: https://openvpn.net/client/client-connect-vpn-for-windows +License: GPL license version 2 +LicenseUrl: https://openvpn.net/license +Copyright: Copyright (c) 2009-2021 OpenVPN Inc. All rights reserved. +CopyrightUrl: https://openvpn.net/license +ShortDescription: The official OpenVPN Connect client software developed and maintained by OpenVPN Inc. +Moniker: openvpn-connect +Tags: +- connection +- foss +- network +- open-source +- openvpn +- privacy +- private +- private-connection +- private-network +- security +- ssl +- tunnel +- virtual-private-connection +- vpn +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/OpenVPNTechnologies/OpenVPNConnect/3.4.4/OpenVPNTechnologies.OpenVPNConnect.yaml b/manifests/o/OpenVPNTechnologies/OpenVPNConnect/3.4.4/OpenVPNTechnologies.OpenVPNConnect.yaml new file mode 100644 index 0000000000000..cea2cf0ab676a --- /dev/null +++ b/manifests/o/OpenVPNTechnologies/OpenVPNConnect/3.4.4/OpenVPNTechnologies.OpenVPNConnect.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: OpenVPNTechnologies.OpenVPNConnect +PackageVersion: 3.4.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/o/OxygenCloud/odrive/1.0.7244/OxygenCloud.odrive.installer.yaml b/manifests/o/OxygenCloud/odrive/1.0.7244/OxygenCloud.odrive.installer.yaml new file mode 100644 index 0000000000000..4f7fc52ea7721 --- /dev/null +++ b/manifests/o/OxygenCloud/odrive/1.0.7244/OxygenCloud.odrive.installer.yaml @@ -0,0 +1,21 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: OxygenCloud.odrive +PackageVersion: 1.0.7244 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: burn +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://www.odrive.com/downloaddesktop?platform=win + InstallerSha256: A9811A95E81D431A71D247299E7F1F4323C91CBCF539FA186A46711127373E77 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/o/OxygenCloud/odrive/1.0.7244/OxygenCloud.odrive.locale.en-US.yaml b/manifests/o/OxygenCloud/odrive/1.0.7244/OxygenCloud.odrive.locale.en-US.yaml new file mode 100644 index 0000000000000..7b7cb18b8666e --- /dev/null +++ b/manifests/o/OxygenCloud/odrive/1.0.7244/OxygenCloud.odrive.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: OxygenCloud.odrive +PackageVersion: 1.0.7244 +PackageLocale: en-US +Publisher: Oxygen Cloud, Inc. +PublisherUrl: https://odrive.com +PublisherSupportUrl: https://odrive.com/faq +PrivacyUrl: https://docs.odrive.com/docs/odrive-terms-of-service#15-privacy-policy +Author: Oxygen Cloud, Inc. +PackageName: odrive +PackageUrl: https://odrive.com +License: Proprietary +LicenseUrl: https://docs.odrive.com/docs/odrive-terms-of-service#8-license-from-odrive +Copyright: Copyright (C) 2021 Oxygen Cloud, Inc. +CopyrightUrl: https://docs.odrive.com/docs/odrive-terms-of-service#17-copyright-infringement-policy +ShortDescription: universal sync client. It makes any cloud storage unified, synchronized, shareable, and encrypted. +Moniker: odrive +Tags: +- cloud +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/o/OxygenCloud/odrive/1.0.7244/OxygenCloud.odrive.yaml b/manifests/o/OxygenCloud/odrive/1.0.7244/OxygenCloud.odrive.yaml new file mode 100644 index 0000000000000..8e1b1a2e7fc75 --- /dev/null +++ b/manifests/o/OxygenCloud/odrive/1.0.7244/OxygenCloud.odrive.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: OxygenCloud.odrive +PackageVersion: 1.0.7244 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/p/PRQL/prqlc/0.11.3/PRQL.prqlc.installer.yaml b/manifests/p/PRQL/prqlc/0.11.3/PRQL.prqlc.installer.yaml new file mode 100644 index 0000000000000..fcb5f8b7e9aef --- /dev/null +++ b/manifests/p/PRQL/prqlc/0.11.3/PRQL.prqlc.installer.yaml @@ -0,0 +1,18 @@ +# 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: PRQL.prqlc +PackageVersion: 0.11.3 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: prqlc.exe +Scope: user +UpgradeBehavior: install +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/PRQL/prql/releases/download/0.11.3/prqlc-v0.11.3-x86_64-pc-windows-msvc.zip + InstallerSha256: ECA5EAA417E98492E6DF001A834BBE843F1D3C49653C044817C369964A039CDE +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/p/PRQL/prqlc/0.11.3/PRQL.prqlc.locale.en-US.yaml b/manifests/p/PRQL/prqlc/0.11.3/PRQL.prqlc.locale.en-US.yaml new file mode 100644 index 0000000000000..13f819113be57 --- /dev/null +++ b/manifests/p/PRQL/prqlc/0.11.3/PRQL.prqlc.locale.en-US.yaml @@ -0,0 +1,18 @@ +# 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: PRQL.prqlc +PackageVersion: 0.11.3 +PackageLocale: en-US +Publisher: PRQL Developers +PublisherUrl: https://prql-lang.org +PublisherSupportUrl: https://github.com/PRQL/prql/issues +PackageName: PRQL compiler CLI - prqlc +PackageUrl: https://github.com/PRQL/prql +License: APACHE-2.0 +LicenseUrl: https://github.com/PRQL/prql/blob/main/LICENSE +ShortDescription: prqlc serves as a CLI for the PRQL compiler. +Moniker: prqlc +ReleaseNotesUrl: https://github.com/PRQL/prql/releases/tag/0.11.3 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/p/PRQL/prqlc/0.11.3/PRQL.prqlc.yaml b/manifests/p/PRQL/prqlc/0.11.3/PRQL.prqlc.yaml new file mode 100644 index 0000000000000..db883aad047b6 --- /dev/null +++ b/manifests/p/PRQL/prqlc/0.11.3/PRQL.prqlc.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: PRQL.prqlc +PackageVersion: 0.11.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/p/PTRTECH/UVtools/4.2.1/PTRTECH.UVtools.installer.yaml b/manifests/p/PTRTECH/UVtools/4.2.1/PTRTECH.UVtools.installer.yaml new file mode 100644 index 0000000000000..07a67d03dba0c --- /dev/null +++ b/manifests/p/PTRTECH/UVtools/4.2.1/PTRTECH.UVtools.installer.yaml @@ -0,0 +1,80 @@ +# 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: PTRTECH.UVtools +PackageVersion: 4.2.1 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /qn + SilentWithProgress: /qb +UpgradeBehavior: install +FileExtensions: +- sl1 +- sl1s +- zip +- photon +- cbddlp +- ctb +- photons +- phz +- pws +- pw0 +- pwx +- dlp +- dl2p +- pwmx +- pmx2 +- pwmb +- pwmo +- pwms +- pwma +- pmsq +- pm3 +- pm3m +- pm3r +- pwc +- cws +- lgs +- lgs30 +- lgs120 +- lgs4k +- vdt +- cxdlp +- goo +- fdg +- zcode +- jxs +- zcodex +- mdlp +- gr1 +- svgx +- osla +- osf +- uvj +- png +- jpg +- jpeg +- jp2 +- tif +- tiff +- bmp +- pbm +- pgm +- sr +- ras +ProductCode: '{28767349-0772-464D-85B2-53C7E5D7BF1F}' +ReleaseDate: 2024-02-10 +AppsAndFeaturesEntries: +- UpgradeCode: '{1EA6D212-15C0-425E-B2EC-4B6C60817552}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/sn4k3/UVtools/releases/download/v4.2.1/UVtools_win-x64_v4.2.1.msi + InstallerSha256: 6A6EDA95541AF38815FD59CF608A64A77D7A1464793008300364A5FB65351493 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/p/PTRTECH/UVtools/4.2.1/PTRTECH.UVtools.locale.en-US.yaml b/manifests/p/PTRTECH/UVtools/4.2.1/PTRTECH.UVtools.locale.en-US.yaml new file mode 100644 index 0000000000000..25ad24200040c --- /dev/null +++ b/manifests/p/PTRTECH/UVtools/4.2.1/PTRTECH.UVtools.locale.en-US.yaml @@ -0,0 +1,50 @@ +# 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: PTRTECH.UVtools +PackageVersion: 4.2.1 +PackageLocale: en-US +Publisher: PTRTECH +PublisherUrl: https://github.com/sn4k3 +PublisherSupportUrl: https://github.com/sn4k3/UVtools/discussions +Author: Tiago Conceição +PackageName: UVtools +PackageUrl: https://github.com/sn4k3/UVtools +License: AGPL-3.0 License +LicenseUrl: https://github.com/sn4k3/UVtools/blob/master/LICENSE +Copyright: Copyright © 2020 PTRTECH +ShortDescription: MSLA/DLP, file analysis, calibration, repair, conversion and manipulation +Moniker: UVtools +Tags: +- msla +- sla +- dlp +- slicer +- 3d print +- resin print +- image analysis +ReleaseNotes: |- + - UI: + - Pixel editor: + - (Add) Shortcut: Ctrl/⌘+E to de/activate pixel editor + - (Add) Profiles (#604, #831) + - (Improvement) Use DataGrid row header to show the operation count instead of process and store indexes for the objects + - (Fix) Drawings and Text controls are not stretched to fill the available space to the right + - (Improvement) macOS: Shortcuts Ctrl+0, Ctrl+R, Ctrl+F changed to use command key(⌘) instead of control key + - (Improvement) Dynamic layer height, Lithophane, PCB exposure and Phased exposure: Use better performant HasNonZero instead of CountNonZero to check if there are any pixels to process + - (Improvement) Update demo file with the newest version of the format and use SL1S printer instead + - (Change) Extract file contents shortcut: From Ctrl+E to Ctrl+Shift+E + - (Fix) Files with different resolution information from empty layers were generating wrong image creation for such layers (#833) + - (Fix) Possible throw an exception about invalid roi when using Roi and/or masks under some tools + - (Fix) Skeletonize memory leak + - (Fix) System. + NullReferenceException when accessing reallocated layers (#835) + - (Fix) Unable to save profiles for "Light bleed compensation", "Phased exposure" + - (Fix) PrusaSlicer printer "UVtools Prusa SL1S SPEED": Fix the display width and height, they were flipped + - (Upgrade) AvaloniaUI from 11.0.7 to 11.0.9 +ReleaseNotesUrl: https://github.com/sn4k3/UVtools/releases/tag/v4.2.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/sn4k3/UVtools/wiki +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/p/PTRTECH/UVtools/4.2.1/PTRTECH.UVtools.yaml b/manifests/p/PTRTECH/UVtools/4.2.1/PTRTECH.UVtools.yaml new file mode 100644 index 0000000000000..47ebd72f35564 --- /dev/null +++ b/manifests/p/PTRTECH/UVtools/4.2.1/PTRTECH.UVtools.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: PTRTECH.UVtools +PackageVersion: 4.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/p/PostgreSQL/pgAdmin/8.3/PostgreSQL.pgAdmin.installer.yaml b/manifests/p/PostgreSQL/pgAdmin/8.3/PostgreSQL.pgAdmin.installer.yaml new file mode 100644 index 0000000000000..9e53c961a8599 --- /dev/null +++ b/manifests/p/PostgreSQL/pgAdmin/8.3/PostgreSQL.pgAdmin.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: PostgreSQL.pgAdmin +PackageVersion: "8.3" +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v8.3/windows/pgadmin4-8.3-x64.exe + InstallerSha256: 67EFA01319606DBFBFE4DFC69EB3C419445D9255CBAA2B8FFB43D892604C42F2 + InstallerSwitches: + Custom: /CURRENTUSER /SUPPRESSMSGBOXES +- Architecture: x64 + Scope: machine + InstallerUrl: https://ftp.postgresql.org/pub/pgadmin/pgadmin4/v8.3/windows/pgadmin4-8.3-x64.exe + InstallerSha256: 67EFA01319606DBFBFE4DFC69EB3C419445D9255CBAA2B8FFB43D892604C42F2 + InstallerSwitches: + Custom: /ALLUSERS /SUPPRESSMSGBOXES +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/p/PostgreSQL/pgAdmin/8.3/PostgreSQL.pgAdmin.locale.en-US.yaml b/manifests/p/PostgreSQL/pgAdmin/8.3/PostgreSQL.pgAdmin.locale.en-US.yaml new file mode 100644 index 0000000000000..de12860670347 --- /dev/null +++ b/manifests/p/PostgreSQL/pgAdmin/8.3/PostgreSQL.pgAdmin.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: PostgreSQL.pgAdmin +PackageVersion: "8.3" +PackageLocale: en-US +Publisher: The pgAdmin Development Team +PublisherUrl: https://www.postgresql.org +PublisherSupportUrl: https://www.postgresql.org/support +PrivacyUrl: https://www.postgresql.org/about/policies/privacy +Author: The pgAdmin Development Team +PackageName: pgAdmin 4 +PackageUrl: https://www.pgadmin.org +License: The PostgreSQL Licence +LicenseUrl: https://www.pgadmin.org/licence +Copyright: Copyright © 1996-2023 The PostgreSQL Global Development Group +CopyrightUrl: https://www.postgresql.org/about/policies/trademarks +ShortDescription: Open Source administration and development platform for PostgreSQL +Description: |- + pgAdmin is designed to answer the needs of all users, from writing simple SQL queries to developing complex databases. + The graphical interface supports all PostgreSQL features and makes administration easy. + The application also includes a syntax highlighting SQL editor, a server-side code editor, an SQL/batch/shell job scheduling agent, support for the Slony-I replication engine and much more. + Server connection may be made using TCP/IP or Unix Domain Sockets (on *nix platforms), and may be SSL encrypted for security. + No additional drivers are required to communicate with the database server. +Moniker: pgadmin +Tags: +- pgsql +- postgres +- sql +ReleaseNotesUrl: https://www.pgadmin.org/docs/pgadmin4/8.3/release_notes_8_3.html +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://www.pgadmin.org/docs/pgadmin4/8.3/index.html +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/p/PostgreSQL/pgAdmin/8.3/PostgreSQL.pgAdmin.yaml b/manifests/p/PostgreSQL/pgAdmin/8.3/PostgreSQL.pgAdmin.yaml new file mode 100644 index 0000000000000..fbeba1502ab93 --- /dev/null +++ b/manifests/p/PostgreSQL/pgAdmin/8.3/PostgreSQL.pgAdmin.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: PostgreSQL.pgAdmin +PackageVersion: "8.3" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/p/pnpm/pnpm/8.13.1/pnpm.pnpm.installer.yaml b/manifests/p/pnpm/pnpm/8.13.1/pnpm.pnpm.installer.yaml index 1c02cef6db2d9..5155a5c4e366e 100644 --- a/manifests/p/pnpm/pnpm/8.13.1/pnpm.pnpm.installer.yaml +++ b/manifests/p/pnpm/pnpm/8.13.1/pnpm.pnpm.installer.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 +# Created with komac v2.0.4 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: pnpm.pnpm diff --git a/manifests/p/pnpm/pnpm/8.13.1/pnpm.pnpm.locale.en-US.yaml b/manifests/p/pnpm/pnpm/8.13.1/pnpm.pnpm.locale.en-US.yaml index fd11cfc0bcae9..8b8028a14421f 100644 --- a/manifests/p/pnpm/pnpm/8.13.1/pnpm.pnpm.locale.en-US.yaml +++ b/manifests/p/pnpm/pnpm/8.13.1/pnpm.pnpm.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 +# Created with komac v2.0.4 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: pnpm.pnpm @@ -9,9 +9,9 @@ PublisherUrl: https://github.com/pnpm/pnpm PublisherSupportUrl: https://github.com/pnpm/pnpm/issues Author: pnpm contributors PackageName: pnpm -PackageUrl: https://pnpm.io +PackageUrl: https://pnpm.io/ License: MIT -LicenseUrl: https://github.com/pnpm/pnpm/blob/main/LICENSE +LicenseUrl: https://github.com/pnpm/pnpm/blob/HEAD/LICENSE Copyright: Copyright (c) Zoltan Kochan and other contributors CopyrightUrl: https://github.com/pnpm/pnpm/blob/main/LICENSE ShortDescription: Fast, disk space efficient package manager. @@ -27,13 +27,22 @@ Tags: - package-manager ReleaseNotes: |- Minor Changes - - New commands added for inspecting the store: - - pnpm cat-index: Prints the index file of a specific package in the store. - The package is specified by its name and version: pnpm cat-index @ - - pnpm cat-file: Prints the contents of a file based on the hash value stored in the index file. - For example: - - pnpm find-hash: Lists the packages that include the file with the specified hash. - For example: + - New commands added for inspecting the store:- pnpm cat-index: Prints the index file of a specific package in the store. The package is specified by its name and version: + + pnpm cat-index @ + + + - pnpm cat-file: Prints the contents of a file based on the hash value stored in the index file. For example: + + pnpm cat-file sha512-mvavhfVcEREI7d8dfvfvIkuBLnx7+rrkHHnPi8mpEDUlNpY4CUY+CvJ5mrrLl18iQYo1odFwBV7z/cOypG7xxQ== + + + - (EXPERIMENTAL) pnpm find-hash: Lists the packages that include the file with the specified hash. For example: + + pnpm find-hash sha512-mvavhfVcEREI7d8dfvfvIkuBLnx7+rrkHHnPi8mpEDUlNpY4CUY+CvJ5mrrLl18iQYo1odFwBV7z/cOypG7xxQ== + + This command is experimental. We might change how it behaves. + Related issue: #7413. - A new setting added for symlinking injected dependencies from the workspace, if their dependencies use the same peer dependencies as the dependent package. The setting is called dedupe-injected-deps #7416. - Use --fail-if-no-match if you want the CLI fail if no packages were matched by the command #7403. Patch Changes @@ -42,8 +51,9 @@ ReleaseNotes: |- - Better support for light themed terminals by the pnpm update --interactive command #7439. - Fix EPERM error that occasionally happened on Windows during renames in the store #7213. - Fix error as in update -i -r with Git specifiers #7415. - - Added support for boolean values in 'bundleDependencies' package.json fields when installing a dependency. - Fix to properly handle 'bundledDependencies' alias #7411. + - Added support for boolean values in 'bundleDependencies' package.json fields when installing a dependency. Fix to properly handle 'bundledDependencies' alias #7411. + Our Gold Sponsors + Our Silver Sponsors ReleaseNotesUrl: https://github.com/pnpm/pnpm/releases/tag/v8.13.1 Documentations: - DocumentLabel: Docs diff --git a/manifests/p/pnpm/pnpm/8.13.1/pnpm.pnpm.yaml b/manifests/p/pnpm/pnpm/8.13.1/pnpm.pnpm.yaml index 890f3246503eb..8a5ad5adf24d5 100644 --- a/manifests/p/pnpm/pnpm/8.13.1/pnpm.pnpm.yaml +++ b/manifests/p/pnpm/pnpm/8.13.1/pnpm.pnpm.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Releaser v2 using Komac v1.11.0 +# Created with komac v2.0.4 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: pnpm.pnpm diff --git a/manifests/p/pnpm/pnpm/preview/9.0.0-alpha.4/pnpm.pnpm.preview.installer.yaml b/manifests/p/pnpm/pnpm/preview/9.0.0-alpha.4/pnpm.pnpm.preview.installer.yaml new file mode 100644 index 0000000000000..bfaf4c66ee18d --- /dev/null +++ b/manifests/p/pnpm/pnpm/preview/9.0.0-alpha.4/pnpm.pnpm.preview.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: pnpm.pnpm.preview +PackageVersion: 9.0.0-alpha.4 +InstallerType: portable +Commands: +- pnpm +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/pnpm/pnpm/releases/download/v9.0.0-alpha.4/pnpm-win-x64.exe + InstallerSha256: 2D215AFFB401E9D4A4BB0F529DFAA04BC80C2908FDBDDCE161DBEC93191297DE +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/p/pnpm/pnpm/preview/9.0.0-alpha.4/pnpm.pnpm.preview.locale.en-US.yaml b/manifests/p/pnpm/pnpm/preview/9.0.0-alpha.4/pnpm.pnpm.preview.locale.en-US.yaml new file mode 100644 index 0000000000000..37abd63e87d8f --- /dev/null +++ b/manifests/p/pnpm/pnpm/preview/9.0.0-alpha.4/pnpm.pnpm.preview.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: pnpm.pnpm.preview +PackageVersion: 9.0.0-alpha.4 +PackageLocale: en-US +Publisher: pnpm +PublisherUrl: https://github.com/pnpm/pnpm +PublisherSupportUrl: https://github.com/pnpm/pnpm/issues +Author: pnpm contributors +PackageName: pnpm +PackageUrl: https://pnpm.io/ +License: MIT +LicenseUrl: https://github.com/pnpm/pnpm/blob/main/LICENSE +Copyright: Copyright (c) Zoltan Kochan and other contributors +CopyrightUrl: https://github.com/pnpm/pnpm/blob/main/LICENSE +ShortDescription: Fast, disk space efficient package manager. +Moniker: pnpm +Tags: +- dependency-manager +- install +- javascript +- modules +- node +- nodejs +- npm +- package-manager +ReleaseNotesUrl: https://github.com/pnpm/pnpm/releases/tag/v6.12.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://pnpm.io/motivation +- DocumentLabel: FAQ + DocumentUrl: https://pnpm.io/faq +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/p/pnpm/pnpm/preview/9.0.0-alpha.4/pnpm.pnpm.preview.yaml b/manifests/p/pnpm/pnpm/preview/9.0.0-alpha.4/pnpm.pnpm.preview.yaml new file mode 100644 index 0000000000000..a7e4c208470f6 --- /dev/null +++ b/manifests/p/pnpm/pnpm/preview/9.0.0-alpha.4/pnpm.pnpm.preview.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: pnpm.pnpm.preview +PackageVersion: 9.0.0-alpha.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Racket/Racket/8.12/Racket.Racket.installer.yaml b/manifests/r/Racket/Racket/8.12/Racket.Racket.installer.yaml new file mode 100644 index 0000000000000..137a338ad0b43 --- /dev/null +++ b/manifests/r/Racket/Racket/8.12/Racket.Racket.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Racket.Racket +PackageVersion: "8.12" +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://download.racket-lang.org/releases/8.12/installers/racket-8.12-i386-win32-bc.exe + InstallerSha256: ffe25be6960907b809d8ba333d354b8f340e854d8e4a7d72d10811177c565402 +- Architecture: x64 + InstallerUrl: https://download.racket-lang.org/releases/8.12/installers/racket-8.12-x86_64-win32-cs.exe + InstallerSha256: c2c594e8d3f81db4b6a9340d5cb1903b2c9e622179ae4955d353bd54c5e3af9c +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/r/Racket/Racket/8.12/Racket.Racket.locale.en-US.yaml b/manifests/r/Racket/Racket/8.12/Racket.Racket.locale.en-US.yaml new file mode 100644 index 0000000000000..35b6f6932dfe6 --- /dev/null +++ b/manifests/r/Racket/Racket/8.12/Racket.Racket.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Racket.Racket +PackageVersion: "8.12" +PackageLocale: en-US +Publisher: Racket +PublisherUrl: https://racket-lang.org +PublisherSupportUrl: https://racket-lang.org/help.html +PackageName: Racket +PackageUrl: https://racket-lang.org +License: MIT & Apache version 2.0 +LicenseUrl: https://docs.racket-lang.org/license/index.html +ShortDescription: Racket is a general-purpose, multi-paradigm programming language. +Moniker: racket +Tags: +- programming-language +- racket +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/r/Racket/Racket/8.12/Racket.Racket.yaml b/manifests/r/Racket/Racket/8.12/Racket.Racket.yaml new file mode 100644 index 0000000000000..b42bf928de241 --- /dev/null +++ b/manifests/r/Racket/Racket/8.12/Racket.Racket.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Racket.Racket +PackageVersion: "8.12" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/r/RandyHollines/Objeck/2024.2.0/RandyHollines.Objeck.installer.yaml b/manifests/r/RandyHollines/Objeck/2024.2.0/RandyHollines.Objeck.installer.yaml new file mode 100644 index 0000000000000..26fbf91f42b1d --- /dev/null +++ b/manifests/r/RandyHollines/Objeck/2024.2.0/RandyHollines.Objeck.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: RandyHollines.Objeck +PackageVersion: 2024.2.0 +InstallerLocale: en-US +InstallerType: msi +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{B78B29EB-67CC-42A2-875A-CAC3E351FCA4}' +ReleaseDate: 2024-02-11 +AppsAndFeaturesEntries: +- DisplayVersion: 24.2.0 + UpgradeCode: '{FAD125F6-CB1B-46F7-91EB-429682D927CB}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/objeck/objeck-lang/releases/download/v2024.2.0/objeck-windows-x64_2024.2.0.msi + InstallerSha256: F79B92BC7A669C78002DAC5F7AF0645D974018A363FE3692F3177639092841A5 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/RandyHollines/Objeck/2024.2.0/RandyHollines.Objeck.locale.en-US.yaml b/manifests/r/RandyHollines/Objeck/2024.2.0/RandyHollines.Objeck.locale.en-US.yaml new file mode 100644 index 0000000000000..953f63525494c --- /dev/null +++ b/manifests/r/RandyHollines/Objeck/2024.2.0/RandyHollines.Objeck.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: RandyHollines.Objeck +PackageVersion: 2024.2.0 +PackageLocale: en-US +Publisher: Randy Hollines +PublisherUrl: https://github.com/objeck +PublisherSupportUrl: https://github.com/objeck/objeck-lang/issues +Author: Randy Hollines +PackageName: Objeck +PackageUrl: https://github.com/objeck/objeck-lang +License: Self-designed License +LicenseUrl: https://github.com/objeck/objeck-lang/blob/HEAD/LICENSE +Copyright: © 2024 Randy Hollines. All Rights Reserved. +ShortDescription: Objeck is a 64-bit object-oriented and functional programming language designed to be fast, intuitive, and lightweight. +Moniker: objeck +Tags: +- arm64 +- assembly-language +- c +- compiler +- cplusplus +- debuggers +- documentation +- examples +- linux +- lsp-server +- macos +- memory-management +- programming-language +- runtime-system +- windows +- x64 +ReleaseNotes: |- + New features and minor bug fixesv2024.2.0- Added new JsonStreamParser class for processing large JSON files + - Support for ranges using the CharRange, IntRange, and FloatRange classes + - Created tuple classes Pair, Triplet, and Quartet + - Updates to the Windows installer + v2023.12.0- Added a LinearSolver class to the ML bundle + - Improved performance of ML libraries + - JSON parser tweaked to process large files better + v2023.11.2- Added support to the System.ML bundle for the K-Means clustering + - REPL shell and command line debugger run in Efficiency Mode on Windows 10/11 +ReleaseNotesUrl: https://github.com/objeck/objeck-lang/releases/tag/v2024.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/RandyHollines/Objeck/2024.2.0/RandyHollines.Objeck.yaml b/manifests/r/RandyHollines/Objeck/2024.2.0/RandyHollines.Objeck.yaml new file mode 100644 index 0000000000000..20768bfd7633f --- /dev/null +++ b/manifests/r/RandyHollines/Objeck/2024.2.0/RandyHollines.Objeck.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: RandyHollines.Objeck +PackageVersion: 2024.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Readdle/Spark/3.13.4/Readdle.Spark.installer.yaml b/manifests/r/Readdle/Spark/3.13.4/Readdle.Spark.installer.yaml new file mode 100644 index 0000000000000..d3f33e5f2ef6f --- /dev/null +++ b/manifests/r/Readdle/Spark/3.13.4/Readdle.Spark.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Readdle.Spark +PackageVersion: 3.13.4 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ReleaseDate: 2024-02-12 +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.sparkmailapp.com/Spark3/win/dist/3.13.4.66391/Spark.exe + InstallerSha256: AB6910886AD06CBC5499A1B7BE24E160B0F48167B34B687BD1E6DA0324E76E45 + ProductCode: 09e2d43b-2e9a-5a23-a54c-87838a95fcb3 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Readdle/Spark/3.13.4/Readdle.Spark.locale.en-US.yaml b/manifests/r/Readdle/Spark/3.13.4/Readdle.Spark.locale.en-US.yaml new file mode 100644 index 0000000000000..7a92738dd73fd --- /dev/null +++ b/manifests/r/Readdle/Spark/3.13.4/Readdle.Spark.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Readdle.Spark +PackageVersion: 3.13.4 +PackageLocale: en-US +Publisher: Spark Mail Limited +PublisherUrl: https://readdle.com/ +PublisherSupportUrl: https://sparkmailapp.com/help +PrivacyUrl: https://sparkmailapp.com/legal/privacy-app +Author: Readdle Limited +PackageName: Spark Desktop +PackageUrl: https://sparkmailapp.com/ +License: Proprietary +LicenseUrl: https://sparkmailapp.com/legal/terms +Copyright: Copyright © 2024 Readdle +# CopyrightUrl: +ShortDescription: Smart. Focused. Email. +Description: Fast, cross-platform email designed to filter out the noise - so you can focus on what's important. +# Moniker: +Tags: +- email +- mail +ReleaseNotes: |- + Hello everyone! + + - Fixed an issue with the Deep Link Email Sharing. + - Other bugs and issues. + + Install the update and share your feedback at support@sparkmailapp.com. + + Thank you for being an essential part of our community! +ReleaseNotesUrl: https://sparkmailapp.com/spark3/win/changelog +PurchaseUrl: https://sparkmailapp.com/pricing +# InstallationNotes: +Documentations: +- DocumentLabel: How to + DocumentUrl: https://sparkmailapp.com/how-to +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Readdle/Spark/3.13.4/Readdle.Spark.locale.zh-CN.yaml b/manifests/r/Readdle/Spark/3.13.4/Readdle.Spark.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1e7a37daca38d --- /dev/null +++ b/manifests/r/Readdle/Spark/3.13.4/Readdle.Spark.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Readdle.Spark +PackageVersion: 3.13.4 +PackageLocale: zh-CN +Publisher: Spark Mail Limited +PublisherUrl: https://readdle.com/zh +PublisherSupportUrl: https://sparkmailapp.com/help +PrivacyUrl: https://sparkmailapp.com/zh/legal/privacy-app +Author: Readdle Limited +PackageName: Spark Desktop +PackageUrl: https://sparkmailapp.com/zh +License: 专有软件 +LicenseUrl: https://sparkmailapp.com/zh/legal/terms +Copyright: Copyright © 2024 Readdle +# CopyrightUrl: +ShortDescription: 智能、聚焦、邮件。 +Description: 超高效兼跨平台:专为静忧收件设计,专心聚焦重要事项。 +# Moniker: +Tags: +- 电子邮件 +- 邮件 +# ReleaseNotes: +ReleaseNotesUrl: https://sparkmailapp.com/spark3/win/changelog +PurchaseUrl: https://sparkmailapp.com/zh/pricing +# InstallationNotes: +Documentations: +- DocumentLabel: 教程 + DocumentUrl: https://sparkmailapp.com/zh/how-to +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Readdle/Spark/3.13.4/Readdle.Spark.yaml b/manifests/r/Readdle/Spark/3.13.4/Readdle.Spark.yaml new file mode 100644 index 0000000000000..09509906c3dd3 --- /dev/null +++ b/manifests/r/Readdle/Spark/3.13.4/Readdle.Spark.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Readdle.Spark +PackageVersion: 3.13.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/RocketChat/RocketChat/3.9.13/RocketChat.RocketChat.installer.yaml b/manifests/r/RocketChat/RocketChat/3.9.13/RocketChat.RocketChat.installer.yaml new file mode 100644 index 0000000000000..11a7eee2e6d8c --- /dev/null +++ b/manifests/r/RocketChat/RocketChat/3.9.13/RocketChat.RocketChat.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: RocketChat.RocketChat +PackageVersion: 3.9.13 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{2E15EA62-A027-4ABF-9955-0C8F15F548D1}' +ReleaseDate: 2024-02-12 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/3.9.13/rocketchat-3.9.13-win-x64.exe + InstallerSha256: 40DA75988EC220AAC6009E306354C08B8C7BC8F726E893ECF02112EC7673B06D + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/3.9.13/rocketchat-3.9.13-win-x64.exe + InstallerSha256: 40DA75988EC220AAC6009E306354C08B8C7BC8F726E893ECF02112EC7673B06D + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/RocketChat/RocketChat/3.9.13/RocketChat.RocketChat.locale.en-US.yaml b/manifests/r/RocketChat/RocketChat/3.9.13/RocketChat.RocketChat.locale.en-US.yaml new file mode 100644 index 0000000000000..09602e59e8e65 --- /dev/null +++ b/manifests/r/RocketChat/RocketChat/3.9.13/RocketChat.RocketChat.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: RocketChat.RocketChat +PackageVersion: 3.9.13 +PackageLocale: en-US +Publisher: Rocket.Chat Support +PublisherUrl: https://rocket.chat/ +PublisherSupportUrl: https://github.com/RocketChat/Rocket.Chat.Electron/issues +PrivacyUrl: https://docs.rocket.chat/legal/privacy +Author: Rocket.Chat +PackageName: Rocket.Chat +PackageUrl: https://rocket.chat/ +License: MIT +LicenseUrl: https://github.com/RocketChat/Rocket.Chat.Electron/blob/HEAD/LICENSE +Copyright: Copyright (c) 2015-2020 Rocket.Chat Technologies Corp. +CopyrightUrl: https://github.com/RocketChat/Rocket.Chat.Electron/blob/master/LICENSE +ShortDescription: Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. +Tags: +- chat +- file-uploads +- foss +- live-chat +- open-source +- rocket +- rocket-chat +- screensharing +- video-conference +ReleaseNotes: |- + What's Changed + - Language update from LingoHub 🤖 on 2024-02-05Z by @lingohub in #2826 + - chore: Add PDF viewer by @jeanfbrito in #2796 + Full Changelog: +ReleaseNotesUrl: https://github.com/RocketChat/Rocket.Chat.Electron/releases/tag/3.9.13 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/RocketChat/RocketChat/3.9.13/RocketChat.RocketChat.yaml b/manifests/r/RocketChat/RocketChat/3.9.13/RocketChat.RocketChat.yaml new file mode 100644 index 0000000000000..9d52e57b5fa66 --- /dev/null +++ b/manifests/r/RocketChat/RocketChat/3.9.13/RocketChat.RocketChat.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: RocketChat.RocketChat +PackageVersion: 3.9.13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ruben2776/PicView/2.2.2/Ruben2776.PicView.installer.yaml b/manifests/r/Ruben2776/PicView/2.2.2/Ruben2776.PicView.installer.yaml new file mode 100644 index 0000000000000..8d7a4a65e703c --- /dev/null +++ b/manifests/r/Ruben2776/PicView/2.2.2/Ruben2776.PicView.installer.yaml @@ -0,0 +1,67 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ruben2776.PicView +PackageVersion: 2.2.2 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- 3fr +- arw +- bmp +- cr2 +- crw +- cut +- dcr +- dds +- dib +- dng +- emf +- erf +- exr +- gif +- hdr +- heic +- ico +- jfif +- jpe +- jpeg +- jpg +- kdc +- mdc +- mef +- mos +- mrw +- nef +- nrw +- orf +- pcx +- pef +- pgm +- png +- psb +- psd +- raf +- raw +- rw2 +- srf +- svg +- tga +- tif +- tiff +- wbmp +- webp +- wmf +- wpg +- x3f +- xbm +- xcf +- xpm +ProductCode: '{F102E394-0FA6-4AEA-826D-9FE699115BAB}_is1' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ruben2776/PicView/releases/download/2.2.2/PicView-2.2.2.exe + InstallerSha256: 7F6AF2BAEB0314B92DDCDC5BBC0FA38263FCC47C39C84159292EB3252B8F050F +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ruben2776/PicView/2.2.2/Ruben2776.PicView.locale.en-US.yaml b/manifests/r/Ruben2776/PicView/2.2.2/Ruben2776.PicView.locale.en-US.yaml new file mode 100644 index 0000000000000..26dd225b276ab --- /dev/null +++ b/manifests/r/Ruben2776/PicView/2.2.2/Ruben2776.PicView.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ruben2776.PicView +PackageVersion: 2.2.2 +PackageLocale: en-US +Publisher: PicView +PublisherUrl: https://github.com/Ruben2776 +PublisherSupportUrl: https://github.com/Ruben2776/PicView/issues +Author: Ruben Hyldgaard Negendahl +PackageName: PicView +PackageUrl: https://picview.org +License: GPL-3.0 +LicenseUrl: https://github.com/Ruben2776/PicView/blob/dev/LICENSE.txt +Copyright: 2017 - 2023 © Ruben Hyldgaard Negendahl +ShortDescription: 100% free and open source picture viewer +Description: |- + PicView is a fast Picture Viewer with compact UI, that can be hidden. + Features image effects, galleries, light & dark theme, image info and more. + The app can automatically adjusts itself to your screen. +Tags: +- archive +- comic +- image +- photo +- picture +- reader +- viewer +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ruben2776/PicView/2.2.2/Ruben2776.PicView.locale.zh-CN.yaml b/manifests/r/Ruben2776/PicView/2.2.2/Ruben2776.PicView.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d765e60a7ddfb --- /dev/null +++ b/manifests/r/Ruben2776/PicView/2.2.2/Ruben2776.PicView.locale.zh-CN.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Ruben2776.PicView +PackageVersion: 2.2.2 +PackageLocale: zh-CN +Publisher: PicView +PublisherUrl: https://github.com/Ruben2776 +PublisherSupportUrl: https://github.com/Ruben2776/PicView/issues +Author: Ruben Hyldgaard Negendahl +PackageName: PicView +PackageUrl: https://picview.org +License: GPL-3.0 +LicenseUrl: https://github.com/Ruben2776/PicView/blob/dev/LICENSE.txt +Copyright: 2017 - 2023 © Ruben Hyldgaard Negendahl +ShortDescription: 100% 免费和开源的图片浏览器 +Description: PicView 是一个快速的图片浏览器,具有可以隐藏的紧凑界面,提供图像特效、画廊、明暗主题、图像信息等功能,并可以根据屏幕自动调整。 +Tags: +- 压缩包 +- 图像 +- 图片 +- 归档 +- 查看器 +- 漫画 +- 照片 +- 阅读器 +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ruben2776/PicView/2.2.2/Ruben2776.PicView.yaml b/manifests/r/Ruben2776/PicView/2.2.2/Ruben2776.PicView.yaml new file mode 100644 index 0000000000000..e31d243167e5b --- /dev/null +++ b/manifests/r/Ruben2776/PicView/2.2.2/Ruben2776.PicView.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ruben2776.PicView +PackageVersion: 2.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1174/Ryujinx.Ryujinx.installer.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1174/Ryujinx.Ryujinx.installer.yaml new file mode 100644 index 0000000000000..01e956b1f2ef8 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1174/Ryujinx.Ryujinx.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1174 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.exe +ReleaseDate: 2024-02-10 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1174/ryujinx-1.1.1174-win_x64.zip + InstallerSha256: 15613ABF9D40D4FEE9F7E1D84F656FA7080B254279166F777F9C9919CF08A02B +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1174/Ryujinx.Ryujinx.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1174/Ryujinx.Ryujinx.locale.en-US.yaml new file mode 100644 index 0000000000000..51acb0c21409e --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1174/Ryujinx.Ryujinx.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1174 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT license +ShortDescription: Experimental Nintendo Switch Emulator written in C# +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1174 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1174/Ryujinx.Ryujinx.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1174/Ryujinx.Ryujinx.yaml new file mode 100644 index 0000000000000..9ada8277b6d69 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1174/Ryujinx.Ryujinx.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1174 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1179/Ryujinx.Ryujinx.installer.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1179/Ryujinx.Ryujinx.installer.yaml new file mode 100644 index 0000000000000..a1776cbf0150c --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1179/Ryujinx.Ryujinx.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1179 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.exe +ReleaseDate: 2024-02-10 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1179/ryujinx-1.1.1179-win_x64.zip + InstallerSha256: 56388CCBBEA4FA82CBA7200359E97C80D75CAB6BA1CE3008C02FA161D61AB9A9 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1179/Ryujinx.Ryujinx.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1179/Ryujinx.Ryujinx.locale.en-US.yaml new file mode 100644 index 0000000000000..8e14d82b727f7 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1179/Ryujinx.Ryujinx.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1179 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT license +ShortDescription: Experimental Nintendo Switch Emulator written in C# +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1179 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1179/Ryujinx.Ryujinx.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1179/Ryujinx.Ryujinx.yaml new file mode 100644 index 0000000000000..1659a0682e109 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1179/Ryujinx.Ryujinx.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1179 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1186/Ryujinx.Ryujinx.installer.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1186/Ryujinx.Ryujinx.installer.yaml new file mode 100644 index 0000000000000..7c71dde004ae4 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1186/Ryujinx.Ryujinx.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1186 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.exe +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1186/ryujinx-1.1.1186-win_x64.zip + InstallerSha256: F0661B488F7CD282B3D6B1819E3F04E7AFD89B107F291CA6B0FE26F2BF945321 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1186/Ryujinx.Ryujinx.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1186/Ryujinx.Ryujinx.locale.en-US.yaml new file mode 100644 index 0000000000000..9e696a06de704 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1186/Ryujinx.Ryujinx.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1186 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT license +ShortDescription: Experimental Nintendo Switch Emulator written in C# +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1186 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1186/Ryujinx.Ryujinx.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1186/Ryujinx.Ryujinx.yaml new file mode 100644 index 0000000000000..6b3e228d608f4 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1186/Ryujinx.Ryujinx.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1186 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1188/Ryujinx.Ryujinx.installer.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1188/Ryujinx.Ryujinx.installer.yaml new file mode 100644 index 0000000000000..8834f91b01fdc --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1188/Ryujinx.Ryujinx.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1188 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.exe +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1188/ryujinx-1.1.1188-win_x64.zip + InstallerSha256: 9EC21372F878F7420BC726C3D03BE8487550BD4B8F192F0CBA5F4F52DC4DC045 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1188/Ryujinx.Ryujinx.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1188/Ryujinx.Ryujinx.locale.en-US.yaml new file mode 100644 index 0000000000000..67508d9a3a2ba --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1188/Ryujinx.Ryujinx.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1188 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT license +ShortDescription: Experimental Nintendo Switch Emulator written in C# +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1188 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1188/Ryujinx.Ryujinx.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1188/Ryujinx.Ryujinx.yaml new file mode 100644 index 0000000000000..e3b12001d8788 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1188/Ryujinx.Ryujinx.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1188 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1189/Ryujinx.Ryujinx.installer.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1189/Ryujinx.Ryujinx.installer.yaml new file mode 100644 index 0000000000000..82f66699069a2 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1189/Ryujinx.Ryujinx.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1189 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.exe +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1189/ryujinx-1.1.1189-win_x64.zip + InstallerSha256: F8C66A2650F447425497E2300ACED129D980F7F1077246FC3878E8C9E205EB2D +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1189/Ryujinx.Ryujinx.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1189/Ryujinx.Ryujinx.locale.en-US.yaml new file mode 100644 index 0000000000000..013c78819a961 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1189/Ryujinx.Ryujinx.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1189 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT license +ShortDescription: Experimental Nintendo Switch Emulator written in C# +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1189 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1189/Ryujinx.Ryujinx.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1189/Ryujinx.Ryujinx.yaml new file mode 100644 index 0000000000000..616089d636192 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1189/Ryujinx.Ryujinx.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1189 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1191/Ryujinx.Ryujinx.installer.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1191/Ryujinx.Ryujinx.installer.yaml new file mode 100644 index 0000000000000..f0259264aa63e --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1191/Ryujinx.Ryujinx.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1191 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.exe +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1191/ryujinx-1.1.1191-win_x64.zip + InstallerSha256: 4DBCBE1FCC7485A5657552F8F0CC1B54F1B5BCECE1E16F9A3059026F6B5F9BC9 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1191/Ryujinx.Ryujinx.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1191/Ryujinx.Ryujinx.locale.en-US.yaml new file mode 100644 index 0000000000000..3024c7af166d2 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1191/Ryujinx.Ryujinx.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1191 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT license +ShortDescription: Experimental Nintendo Switch Emulator written in C# +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1191 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1191/Ryujinx.Ryujinx.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1191/Ryujinx.Ryujinx.yaml new file mode 100644 index 0000000000000..bfa1839316f2f --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1191/Ryujinx.Ryujinx.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1191 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1192/Ryujinx.Ryujinx.installer.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1192/Ryujinx.Ryujinx.installer.yaml new file mode 100644 index 0000000000000..ba15e15b2ef70 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1192/Ryujinx.Ryujinx.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1192 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.exe +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1192/ryujinx-1.1.1192-win_x64.zip + InstallerSha256: 34C6CCA7DD91C15F26E94137058425650ADEA26927EABEB84F02A469008C7FF1 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1192/Ryujinx.Ryujinx.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1192/Ryujinx.Ryujinx.locale.en-US.yaml new file mode 100644 index 0000000000000..ed7388a7b3f8e --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1192/Ryujinx.Ryujinx.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1192 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT license +ShortDescription: Experimental Nintendo Switch Emulator written in C# +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1192 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/1.1.1192/Ryujinx.Ryujinx.yaml b/manifests/r/Ryujinx/Ryujinx/1.1.1192/Ryujinx.Ryujinx.yaml new file mode 100644 index 0000000000000..0875531bde82e --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/1.1.1192/Ryujinx.Ryujinx.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx +PackageVersion: 1.1.1192 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1174/Ryujinx.Ryujinx.Ava.installer.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1174/Ryujinx.Ryujinx.Ava.installer.yaml new file mode 100644 index 0000000000000..da1898a20ef59 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1174/Ryujinx.Ryujinx.Ava.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1174 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.Ava.exe + PortableCommandAlias: Ryujinx.Ava +ReleaseDate: 2024-02-10 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1174/test-ava-ryujinx-1.1.1174-win_x64.zip + InstallerSha256: F95C34E595FA71EDC780B5AB4B26E50C02815244DA425670792EBFF719867FB2 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1174/Ryujinx.Ryujinx.Ava.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1174/Ryujinx.Ryujinx.Ava.locale.en-US.yaml new file mode 100644 index 0000000000000..031acb04f734d --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1174/Ryujinx.Ryujinx.Ava.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1174 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx Emulator +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT License +LicenseUrl: https://github.com/Ryujinx/Ryujinx/blob/master/LICENSE.txt +ShortDescription: Experimental Nintendo Switch Emulator written in C# +Tags: +- switch +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1174 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1174/Ryujinx.Ryujinx.Ava.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1174/Ryujinx.Ryujinx.Ava.yaml new file mode 100644 index 0000000000000..c6deccfd43c2d --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1174/Ryujinx.Ryujinx.Ava.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1174 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1179/Ryujinx.Ryujinx.Ava.installer.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1179/Ryujinx.Ryujinx.Ava.installer.yaml new file mode 100644 index 0000000000000..27437d5e967aa --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1179/Ryujinx.Ryujinx.Ava.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1179 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.Ava.exe + PortableCommandAlias: Ryujinx.Ava +ReleaseDate: 2024-02-10 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1179/test-ava-ryujinx-1.1.1179-win_x64.zip + InstallerSha256: F4212B09FF1B818933728925BF72CD0CEC094DF5CB3189925D96BBAE32C4AA1D +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1179/Ryujinx.Ryujinx.Ava.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1179/Ryujinx.Ryujinx.Ava.locale.en-US.yaml new file mode 100644 index 0000000000000..153707691f038 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1179/Ryujinx.Ryujinx.Ava.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1179 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx Emulator +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT License +LicenseUrl: https://github.com/Ryujinx/Ryujinx/blob/master/LICENSE.txt +ShortDescription: Experimental Nintendo Switch Emulator written in C# +Tags: +- switch +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1179 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1179/Ryujinx.Ryujinx.Ava.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1179/Ryujinx.Ryujinx.Ava.yaml new file mode 100644 index 0000000000000..c6e00933512ae --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1179/Ryujinx.Ryujinx.Ava.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1179 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1186/Ryujinx.Ryujinx.Ava.installer.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1186/Ryujinx.Ryujinx.Ava.installer.yaml new file mode 100644 index 0000000000000..cea896db6bbfe --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1186/Ryujinx.Ryujinx.Ava.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1186 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.Ava.exe + PortableCommandAlias: Ryujinx.Ava +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1186/test-ava-ryujinx-1.1.1186-win_x64.zip + InstallerSha256: DCA6109039C8BC7ACAE4F22608A2178C3DE23B969B6B341FCDC1AC65F70AAEFC +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1186/Ryujinx.Ryujinx.Ava.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1186/Ryujinx.Ryujinx.Ava.locale.en-US.yaml new file mode 100644 index 0000000000000..a1c256c12479f --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1186/Ryujinx.Ryujinx.Ava.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1186 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx Emulator +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT License +LicenseUrl: https://github.com/Ryujinx/Ryujinx/blob/master/LICENSE.txt +ShortDescription: Experimental Nintendo Switch Emulator written in C# +Tags: +- switch +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1186 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1186/Ryujinx.Ryujinx.Ava.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1186/Ryujinx.Ryujinx.Ava.yaml new file mode 100644 index 0000000000000..3e1e11a1aeb79 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1186/Ryujinx.Ryujinx.Ava.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1186 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1188/Ryujinx.Ryujinx.Ava.installer.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1188/Ryujinx.Ryujinx.Ava.installer.yaml new file mode 100644 index 0000000000000..2acf4f930cfd1 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1188/Ryujinx.Ryujinx.Ava.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1188 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.Ava.exe + PortableCommandAlias: Ryujinx.Ava +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1188/test-ava-ryujinx-1.1.1188-win_x64.zip + InstallerSha256: 0D0AEA8311B8CFC77616E4D93A2720D8F52C4818CD0DDCBDA9DDDC44CBBCCD12 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1188/Ryujinx.Ryujinx.Ava.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1188/Ryujinx.Ryujinx.Ava.locale.en-US.yaml new file mode 100644 index 0000000000000..d5a11c659556a --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1188/Ryujinx.Ryujinx.Ava.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1188 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx Emulator +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT License +LicenseUrl: https://github.com/Ryujinx/Ryujinx/blob/master/LICENSE.txt +ShortDescription: Experimental Nintendo Switch Emulator written in C# +Tags: +- switch +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1188 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1188/Ryujinx.Ryujinx.Ava.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1188/Ryujinx.Ryujinx.Ava.yaml new file mode 100644 index 0000000000000..acb07a7495a0c --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1188/Ryujinx.Ryujinx.Ava.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1188 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1189/Ryujinx.Ryujinx.Ava.installer.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1189/Ryujinx.Ryujinx.Ava.installer.yaml new file mode 100644 index 0000000000000..d8774dba05c51 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1189/Ryujinx.Ryujinx.Ava.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1189 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.Ava.exe + PortableCommandAlias: Ryujinx.Ava +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1189/test-ava-ryujinx-1.1.1189-win_x64.zip + InstallerSha256: 970C12A1B0292483C0C0F2CF61C82B7DC758FA7A51B42102B5F670A345315CF4 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1189/Ryujinx.Ryujinx.Ava.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1189/Ryujinx.Ryujinx.Ava.locale.en-US.yaml new file mode 100644 index 0000000000000..05013b6486ece --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1189/Ryujinx.Ryujinx.Ava.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1189 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx Emulator +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT License +LicenseUrl: https://github.com/Ryujinx/Ryujinx/blob/master/LICENSE.txt +ShortDescription: Experimental Nintendo Switch Emulator written in C# +Tags: +- switch +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1189 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1189/Ryujinx.Ryujinx.Ava.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1189/Ryujinx.Ryujinx.Ava.yaml new file mode 100644 index 0000000000000..70bc104929559 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1189/Ryujinx.Ryujinx.Ava.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1189 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1191/Ryujinx.Ryujinx.Ava.installer.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1191/Ryujinx.Ryujinx.Ava.installer.yaml new file mode 100644 index 0000000000000..008f91ba6ac69 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1191/Ryujinx.Ryujinx.Ava.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1191 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.Ava.exe + PortableCommandAlias: Ryujinx.Ava +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1191/test-ava-ryujinx-1.1.1191-win_x64.zip + InstallerSha256: 50E3504764821B008526E95A5C824F7C55CB731BFED7D4201726EFFCD039366B +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1191/Ryujinx.Ryujinx.Ava.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1191/Ryujinx.Ryujinx.Ava.locale.en-US.yaml new file mode 100644 index 0000000000000..331077acb64f4 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1191/Ryujinx.Ryujinx.Ava.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1191 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx Emulator +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT License +LicenseUrl: https://github.com/Ryujinx/Ryujinx/blob/master/LICENSE.txt +ShortDescription: Experimental Nintendo Switch Emulator written in C# +Tags: +- switch +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1191 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1191/Ryujinx.Ryujinx.Ava.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1191/Ryujinx.Ryujinx.Ava.yaml new file mode 100644 index 0000000000000..f6ebf9fb4bd37 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1191/Ryujinx.Ryujinx.Ava.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1191 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1192/Ryujinx.Ryujinx.Ava.installer.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1192/Ryujinx.Ryujinx.Ava.installer.yaml new file mode 100644 index 0000000000000..4ee11e4463d92 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1192/Ryujinx.Ryujinx.Ava.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1192 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: publish\Ryujinx.Ava.exe + PortableCommandAlias: Ryujinx.Ava +ReleaseDate: 2024-02-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Ryujinx/release-channel-master/releases/download/1.1.1192/test-ava-ryujinx-1.1.1192-win_x64.zip + InstallerSha256: F1F03CF67092FCDF851AA977AFEEDB2D253A648C337F5758E4417CA792A52D18 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1192/Ryujinx.Ryujinx.Ava.locale.en-US.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1192/Ryujinx.Ryujinx.Ava.locale.en-US.yaml new file mode 100644 index 0000000000000..eb6ad26b26602 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1192/Ryujinx.Ryujinx.Ava.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1192 +PackageLocale: en-US +Publisher: Ryujinx +PublisherUrl: https://ryujinx.org/ +PackageName: Ryujinx Emulator +PackageUrl: https://github.com/Ryujinx/release-channel-master +License: MIT License +LicenseUrl: https://github.com/Ryujinx/Ryujinx/blob/master/LICENSE.txt +ShortDescription: Experimental Nintendo Switch Emulator written in C# +Tags: +- switch +ReleaseNotes: For more information about this release please check out the official Changelog. +ReleaseNotesUrl: https://github.com/Ryujinx/release-channel-master/releases/tag/1.1.1192 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1192/Ryujinx.Ryujinx.Ava.yaml b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1192/Ryujinx.Ryujinx.Ava.yaml new file mode 100644 index 0000000000000..e31376ae9d653 --- /dev/null +++ b/manifests/r/Ryujinx/Ryujinx/Ava/1.1.1192/Ryujinx.Ryujinx.Ava.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Ryujinx.Ryujinx.Ava +PackageVersion: 1.1.1192 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/Schlaubi/Tonbrett/1.18.14/Schlaubi.Tonbrett.installer.yaml b/manifests/s/Schlaubi/Tonbrett/1.18.14/Schlaubi.Tonbrett.installer.yaml new file mode 100644 index 0000000000000..9c82b65ad8c49 --- /dev/null +++ b/manifests/s/Schlaubi/Tonbrett/1.18.14/Schlaubi.Tonbrett.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Schlaubi.Tonbrett +PackageVersion: 1.18.14 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.19044.0 +InstallerType: msix +PackageFamilyName: dev.schlaubi.Tonbrett_gad2k16r2kp42 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DRSchlaubi/tonbrett/releases/download/1.18.14/Tonbrett.msix + InstallerSha256: 216D7EF112B32003376C341AD9C8422EFB6623F448B754EF581B03A76527DCEC + SignatureSha256: 3B19EE2D4C0F765457D938796A5340CA8504F150114320CA6D49C3CF675BA2A0 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/Schlaubi/Tonbrett/1.18.14/Schlaubi.Tonbrett.locale.en-US.yaml b/manifests/s/Schlaubi/Tonbrett/1.18.14/Schlaubi.Tonbrett.locale.en-US.yaml new file mode 100644 index 0000000000000..9ca233408abf1 --- /dev/null +++ b/manifests/s/Schlaubi/Tonbrett/1.18.14/Schlaubi.Tonbrett.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Schlaubi.Tonbrett +PackageVersion: 1.18.14 +PackageLocale: en-US +Publisher: Schlaubi +PackageName: Tonbrett +License: MIT-License +ShortDescription: Companion app for the Tonbrett Discord Soundboard +Moniker: tonbrett +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/Schlaubi/Tonbrett/1.18.14/Schlaubi.Tonbrett.yaml b/manifests/s/Schlaubi/Tonbrett/1.18.14/Schlaubi.Tonbrett.yaml new file mode 100644 index 0000000000000..dc10ef7fe973b --- /dev/null +++ b/manifests/s/Schlaubi/Tonbrett/1.18.14/Schlaubi.Tonbrett.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Schlaubi.Tonbrett +PackageVersion: 1.18.14 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/SequencePublishing/TheSageDictionary/7.58.2812/SequencePublishing.TheSageDictionary.installer.yaml b/manifests/s/SequencePublishing/TheSageDictionary/7.58.2812/SequencePublishing.TheSageDictionary.installer.yaml new file mode 100644 index 0000000000000..c9e5b930a80b7 --- /dev/null +++ b/manifests/s/SequencePublishing/TheSageDictionary/7.58.2812/SequencePublishing.TheSageDictionary.installer.yaml @@ -0,0 +1,14 @@ +# Automatically updated by the winget bot at 2024/Feb/11 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: SequencePublishing.TheSageDictionary +PackageVersion: 7.58.2812 +InstallerType: nullsoft +InstallModes: +- silent +Installers: +- Architecture: x86 + InstallerUrl: https://www.sequencepublishing.com/cgi-bin/download.cgi?thesage + InstallerSha256: CEFB47552BC3EB58EB80F920507656F1177DE96C6DDD8C8A28202DF8E62EEB8F +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/SequencePublishing/TheSageDictionary/7.58.2812/SequencePublishing.TheSageDictionary.locale.en-US.yaml b/manifests/s/SequencePublishing/TheSageDictionary/7.58.2812/SequencePublishing.TheSageDictionary.locale.en-US.yaml new file mode 100644 index 0000000000000..7ebe258ddff9f --- /dev/null +++ b/manifests/s/SequencePublishing/TheSageDictionary/7.58.2812/SequencePublishing.TheSageDictionary.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2024/Feb/11 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: SequencePublishing.TheSageDictionary +PackageVersion: 7.58.2812 +PackageLocale: en-US +Publisher: Sequence Publishing +PackageName: The Sage Dictionary +License: Free for personal use +Copyright: Copyright (C) 2001 - 2023 by Sequence Publishing +ShortDescription: International English dictionary and thesaurus with entries from all the World English varieties. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/SequencePublishing/TheSageDictionary/7.58.2812/SequencePublishing.TheSageDictionary.yaml b/manifests/s/SequencePublishing/TheSageDictionary/7.58.2812/SequencePublishing.TheSageDictionary.yaml new file mode 100644 index 0000000000000..e3e6dd5439e23 --- /dev/null +++ b/manifests/s/SequencePublishing/TheSageDictionary/7.58.2812/SequencePublishing.TheSageDictionary.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2024/Feb/11 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: SequencePublishing.TheSageDictionary +PackageVersion: 7.58.2812 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/Slonopotamus/Stevedore/1.2.0/Slonopotamus.Stevedore.installer.yaml b/manifests/s/Slonopotamus/Stevedore/1.2.0/Slonopotamus.Stevedore.installer.yaml new file mode 100644 index 0000000000000..c7be88532e0a7 --- /dev/null +++ b/manifests/s/Slonopotamus/Stevedore/1.2.0/Slonopotamus.Stevedore.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Slonopotamus.Stevedore +PackageVersion: 1.2.0 +InstallerLocale: en-US +InstallerType: wix +InstallerSwitches: + Upgrade: /norestart + Custom: /norestart +InstallerSuccessCodes: +- 3010 +ProductCode: '{78EDCCFA-92E2-4B71-AB4B-1C155B257067}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/slonopotamus/stevedore/releases/download/1.2.0/stevedore-1.2.0-x86_64.msi + InstallerSha256: 47916FD949A18B13D54BD42404746E5D30EA0D2112643AD30F9FC3AE24995254 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/Slonopotamus/Stevedore/1.2.0/Slonopotamus.Stevedore.locale.en-US.yaml b/manifests/s/Slonopotamus/Stevedore/1.2.0/Slonopotamus.Stevedore.locale.en-US.yaml new file mode 100644 index 0000000000000..cff8db00e8d0c --- /dev/null +++ b/manifests/s/Slonopotamus/Stevedore/1.2.0/Slonopotamus.Stevedore.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Slonopotamus.Stevedore +PackageVersion: 1.2.0 +PackageLocale: en-US +Publisher: Marat Radchenko +PackageName: Stevedore +License: Apache-2.0 +ShortDescription: Docker distribution for Windows that Just Works +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/Slonopotamus/Stevedore/1.2.0/Slonopotamus.Stevedore.yaml b/manifests/s/Slonopotamus/Stevedore/1.2.0/Slonopotamus.Stevedore.yaml new file mode 100644 index 0000000000000..fa15f93c415d4 --- /dev/null +++ b/manifests/s/Slonopotamus/Stevedore/1.2.0/Slonopotamus.Stevedore.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Slonopotamus.Stevedore +PackageVersion: 1.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/SonicWALL/NetExtender/10.2.339/SonicWALL.NetExtender.installer.yaml b/manifests/s/SonicWALL/NetExtender/10.2.339/SonicWALL.NetExtender.installer.yaml new file mode 100644 index 0000000000000..49ec586830d87 --- /dev/null +++ b/manifests/s/SonicWALL/NetExtender/10.2.339/SonicWALL.NetExtender.installer.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: SonicWALL.NetExtender +PackageVersion: 10.2.339 +InstallerLocale: en-US +InstallerType: msi +InstallerSwitches: + Silent: /quiet /norestart + SilentWithProgress: /passive /norestart +InstallerSuccessCodes: +- 3010 +AppsAndFeaturesEntries: +- UpgradeCode: '{D6EDAB36-5705-4A5E-A125-2243F8330BB0}' +Installers: +- Architecture: x86 + InstallerUrl: https://software.sonicwall.com/NetExtender/NetExtender-x86-10.2.339.msi + InstallerSha256: 23ED2A56FD7E0846C1B26628CFBD11BCA946B87E90797A6DD81D8E391E33FC64 + ProductCode: '{D7F7B500-198C-4631-A67B-3F322ADB6BF6}' +- Architecture: x64 + InstallerUrl: https://software.sonicwall.com/NetExtender/NetExtender-x64-10.2.339.msi + InstallerSha256: 8AC08C5147F05DC70B47C5C2617CBCFF0FCE114F8627F0C038B37370EDF2C8D4 + ProductCode: '{16AB78A8-DE0A-4FB0-A4A9-86D21F8AAC59}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/SonicWALL/NetExtender/10.2.339/SonicWALL.NetExtender.locale.en-US.yaml b/manifests/s/SonicWALL/NetExtender/10.2.339/SonicWALL.NetExtender.locale.en-US.yaml new file mode 100644 index 0000000000000..d8783a54b58f9 --- /dev/null +++ b/manifests/s/SonicWALL/NetExtender/10.2.339/SonicWALL.NetExtender.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: SonicWALL.NetExtender +PackageVersion: 10.2.339 +PackageLocale: en-US +Publisher: SonicWall Inc. +PublisherUrl: https://www.sonicwall.com +PublisherSupportUrl: https://www.sonicwall.com/support +PrivacyUrl: https://www.sonicwall.com/legal/privacy-statement +PackageName: SonicWall NetExtender +PackageUrl: https://www.sonicwall.com/products/remote-access/vpn-clients +License: SonicWall General Product Agreement +LicenseUrl: https://www.sonicwall.com/legal/general-product-agreement +Copyright: 2022 SonicWall Inc. +CopyrightUrl: https://www.sonicwall.com/legal/copyrights +ShortDescription: SonicWall SSL VPN Client +Tags: +- vpn +- vpnclient +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/SonicWALL/NetExtender/10.2.339/SonicWALL.NetExtender.yaml b/manifests/s/SonicWALL/NetExtender/10.2.339/SonicWALL.NetExtender.yaml new file mode 100644 index 0000000000000..a37fd76737aca --- /dev/null +++ b/manifests/s/SonicWALL/NetExtender/10.2.339/SonicWALL.NetExtender.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: SonicWALL.NetExtender +PackageVersion: 10.2.339 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/Spicetify/Spicetify/2.31.2/Spicetify.Spicetify.installer.yaml b/manifests/s/Spicetify/Spicetify/2.31.2/Spicetify.Spicetify.installer.yaml new file mode 100644 index 0000000000000..20a2cef578a3b --- /dev/null +++ b/manifests/s/Spicetify/Spicetify/2.31.2/Spicetify.Spicetify.installer.yaml @@ -0,0 +1,19 @@ +# 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: Spicetify.Spicetify +PackageVersion: 2.31.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: spicetify.exe +ReleaseDate: 2024-02-10 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/spicetify/spicetify-cli/releases/download/v2.31.2/spicetify-2.31.2-windows-x32.zip + InstallerSha256: 51429F2AAF6EB0ECB785F0D4C1B9FA8BDC4C471389D28C66B251D0B1F8E7AA00 +- Architecture: x64 + InstallerUrl: https://github.com/spicetify/spicetify-cli/releases/download/v2.31.2/spicetify-2.31.2-windows-x64.zip + InstallerSha256: 345B87E45BF0AC44089E45A5087941F16B341935C528B0AB05C8F1C2856BF516 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/Spicetify/Spicetify/2.31.2/Spicetify.Spicetify.locale.en-US.yaml b/manifests/s/Spicetify/Spicetify/2.31.2/Spicetify.Spicetify.locale.en-US.yaml new file mode 100644 index 0000000000000..ada2fda4aabc4 --- /dev/null +++ b/manifests/s/Spicetify/Spicetify/2.31.2/Spicetify.Spicetify.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Spicetify.Spicetify +PackageVersion: 2.31.2 +PackageLocale: en-US +Publisher: Spicetify +PublisherUrl: https://spicetify.app +PublisherSupportUrl: https://github.com/spicetify/spicetify-cli/issues +PackageName: Spicetify +PackageUrl: https://spicetify.app +License: LGPL-2.1 +LicenseUrl: https://github.com/spicetify/spicetify-cli/blob/master/LICENSE +Copyright: Copyright © 2023 Spicetify +ShortDescription: A command-line tool to customize the official Spotify client. +Moniker: spicetify-cli +Tags: +- cli +- extensions +- spotify +- theme +ReleaseNotes: |- + What's Changed + - chore(deps): bump golang.org/x/net from 0.20.0 to 0.21.0 by @dependabot in #2809 + - fix(wrapper): fix ContextMenu regex for v1.2.13 by @Delusoire in #2810 + - fix(wrapper): accommodate different profile menu containers by @Delusoire in #2812 + Compatibility + - Spotify for macOS: 1.2.0 -> 1.2.30 + - Spotify for Linux: 1.2.8 -> up to 1.2.30 (if it ever releases) + - Spotify for Windows/Microsoft Store: 1.2.0 -> 1.2.30 + - Spicetify may not work properly with Microsoft Store version + - You may need to apply spicetify every time you close Spotify in Microsoft Store version +ReleaseNotesUrl: https://github.com/spicetify/spicetify-cli/releases/tag/v2.31.2 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/Spicetify/Spicetify/2.31.2/Spicetify.Spicetify.yaml b/manifests/s/Spicetify/Spicetify/2.31.2/Spicetify.Spicetify.yaml new file mode 100644 index 0000000000000..09feb270cf896 --- /dev/null +++ b/manifests/s/Spicetify/Spicetify/2.31.2/Spicetify.Spicetify.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser v2 using Komac v1.11.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Spicetify.Spicetify +PackageVersion: 2.31.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/s/Spotify/Spotify/1.2.31.1205.g4d59ad7c/Spotify.Spotify.installer.yaml b/manifests/s/Spotify/Spotify/1.2.31.1205.g4d59ad7c/Spotify.Spotify.installer.yaml new file mode 100644 index 0000000000000..caf1ae93b8df6 --- /dev/null +++ b/manifests/s/Spotify/Spotify/1.2.31.1205.g4d59ad7c/Spotify.Spotify.installer.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Spotify.Spotify +PackageVersion: 1.2.31.1205.g4d59ad7c +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent + Log: /log-file "" +UpgradeBehavior: install +ElevationRequirement: elevationProhibited +Installers: +- Architecture: x86 + InstallerUrl: https://upgrade.scdn.co/upgrade/client/win32-x86/spotify_installer-1.2.31.1205.g4d59ad7c-1561.exe + InstallerSha256: 768924D1612BEBE4521D8FFB0BED265321341A33DBFE592F3AB6AAA2674152E4 + ProductCode: Spotify +- Architecture: x64 + InstallerUrl: https://upgrade.scdn.co/upgrade/client/win32-x86_64/spotify_installer-1.2.31.1205.g4d59ad7c-1562.exe + InstallerSha256: 1E6B951AEE1D5DBD195F0284384817B4124A2CDF458FCA2B9287B645477CE226 + ProductCode: Spotify +- Architecture: arm64 + InstallerUrl: https://upgrade.scdn.co/upgrade/client/win32-arm64/spotify_installer-1.2.31.1205.g4d59ad7c-1527.exe + InstallerSha256: 0EBCEC1787832538CEDBF479742F0FC36D14DAEBA85B813728D330F4DBCEEB49 + ProductCode: Spotify +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/s/Spotify/Spotify/1.2.31.1205.g4d59ad7c/Spotify.Spotify.locale.en-US.yaml b/manifests/s/Spotify/Spotify/1.2.31.1205.g4d59ad7c/Spotify.Spotify.locale.en-US.yaml new file mode 100644 index 0000000000000..629341d1ad27d --- /dev/null +++ b/manifests/s/Spotify/Spotify/1.2.31.1205.g4d59ad7c/Spotify.Spotify.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Spotify.Spotify +PackageVersion: 1.2.31.1205.g4d59ad7c +PackageLocale: en-US +Publisher: Spotify AB +PublisherUrl: https://www.spotify.com/ +PublisherSupportUrl: https://support.spotify.com/ +PrivacyUrl: https://www.spotify.com/legal/privacy-policy/ +Author: Spotify AB +PackageName: Spotify +PackageUrl: https://www.spotify.com/download/windows/ +License: Proprietary +LicenseUrl: https://www.spotify.com/legal/end-user-agreement/ +Copyright: Copyright © 2024 Spotify AB. +# CopyrightUrl: +ShortDescription: Spotify is all the music you’ll ever need. +Description: |- + With Spotify, it’s easy to find the right music or podcast for every moment – on your phone, your computer, your tablet and more. + There are millions of tracks and episodes on Spotify. So whether you’re behind the wheel, working out, partying or relaxing, the right music or podcast is always at your fingertips. Choose what you want to listen to, or let Spotify surprise you. + You can also browse through the collections of friends, artists, and celebrities, or create a radio station and just sit back. +# Moniker: +Tags: +- album +- artist +- audio +- episode +- music +- playlist +- podcast +- radio +- song +- sound +- streaming +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://www.spotify.com/premium/ +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/s/Spotify/Spotify/1.2.31.1205.g4d59ad7c/Spotify.Spotify.locale.zh-CN.yaml b/manifests/s/Spotify/Spotify/1.2.31.1205.g4d59ad7c/Spotify.Spotify.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b1736a4cd46d8 --- /dev/null +++ b/manifests/s/Spotify/Spotify/1.2.31.1205.g4d59ad7c/Spotify.Spotify.locale.zh-CN.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Spotify.Spotify +PackageVersion: 1.2.31.1205.g4d59ad7c +PackageLocale: zh-CN +Publisher: Spotify AB +PublisherUrl: https://www.spotify.com/ +PublisherSupportUrl: https://support.spotify.com/ +PrivacyUrl: https://www.spotify.com/legal/privacy-policy/ +Author: Spotify AB +PackageName: Spotify +PackageUrl: https://www.spotify.com/download/windows/ +License: 专有软件 +LicenseUrl: https://www.spotify.com/legal/end-user-agreement/ +Copyright: 版权所有 © 2024 Spotify AB。 +# CopyrightUrl: +ShortDescription: 你喜欢的音乐都在 Spotify。 +Description: |- + 无论你是使用手机、电脑、平板电脑还是其他设备,Spotify 都可助你轻松找到各种应景的音乐或播客。 + Spotify 汇集数百万曲目和单集。因此,无论你是开车、锻炼、聚会还是放松,合你口味的音乐或播客始终触手可及。你可以选择中意的音乐,也可以让 Spotify 为你播放精选内容。 + 你还可以浏览好友、艺人和明星的收藏,或创建广播电台,然后轻松惬意地聆听。 +# Moniker: +Tags: +- 专辑 +- 广播 +- 播客 +- 歌单 +- 歌手 +- 歌曲 +- 流媒体 +- 艺人 +- 节目 +- 音乐 +- 音频 +# ReleaseNotes: +# ReleaseNotesUrl: +PurchaseUrl: https://www.spotify.com/premium/ +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/s/Spotify/Spotify/1.2.31.1205.g4d59ad7c/Spotify.Spotify.yaml b/manifests/s/Spotify/Spotify/1.2.31.1205.g4d59ad7c/Spotify.Spotify.yaml new file mode 100644 index 0000000000000..e0ff349fc3ec0 --- /dev/null +++ b/manifests/s/Spotify/Spotify/1.2.31.1205.g4d59ad7c/Spotify.Spotify.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Spotify.Spotify +PackageVersion: 1.2.31.1205.g4d59ad7c +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/TeamProwlarr/Prowlarr/1.13.3/TeamProwlarr.Prowlarr.installer.yaml b/manifests/t/TeamProwlarr/Prowlarr/1.13.3/TeamProwlarr.Prowlarr.installer.yaml new file mode 100644 index 0000000000000..c692918dbc13d --- /dev/null +++ b/manifests/t/TeamProwlarr/Prowlarr/1.13.3/TeamProwlarr.Prowlarr.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: TeamProwlarr.Prowlarr +PackageVersion: 1.13.3 +Platform: +- Windows.Desktop +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Prowlarr/Prowlarr/releases/download/v1.13.3.4273/Prowlarr.master.1.13.3.4273.windows-core-x86-installer.exe + InstallerSha256: 3A7EFB1D4A7195A92A6CCCA720D02A7218B4E256EBD2043EE8A9BE5C3897906D +- Architecture: x64 + InstallerUrl: https://github.com/Prowlarr/Prowlarr/releases/download/v1.13.3.4273/Prowlarr.master.1.13.3.4273.windows-core-x64-installer.exe + InstallerSha256: 70D677F4C25CEC1B4E4D6399E334E4B5FABC4CA5A56EBA7EAA62964E21C40D75 +ManifestType: installer +ManifestVersion: 1.5.0 +ReleaseDate: 2024-02-11 diff --git a/manifests/t/TeamProwlarr/Prowlarr/1.13.3/TeamProwlarr.Prowlarr.locale.en-US.yaml b/manifests/t/TeamProwlarr/Prowlarr/1.13.3/TeamProwlarr.Prowlarr.locale.en-US.yaml new file mode 100644 index 0000000000000..ee03437600d25 --- /dev/null +++ b/manifests/t/TeamProwlarr/Prowlarr/1.13.3/TeamProwlarr.Prowlarr.locale.en-US.yaml @@ -0,0 +1,73 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: TeamProwlarr.Prowlarr +PackageVersion: 1.13.3 +PackageLocale: en-US +Publisher: Team Prowlarr +PublisherUrl: https://prowlarr.com/#home +PublisherSupportUrl: https://github.com/Prowlarr/Prowlarr/issues +Author: Team Prowlarr +PackageName: Prowlarr +PackageUrl: https://github.com/Prowlarr/Prowlarr/releases/tag/v1.13.3.4273 +License: GPL-3.0 +LicenseUrl: https://raw.githubusercontent.com/Prowlarr/Prowlarr/develop/LICENSE +Copyright: Copyright (C) 2007 Free Software Foundation, Inc. +CopyrightUrl: https://raw.githubusercontent.com/Prowlarr/Prowlarr/develop/LICENSE +ShortDescription: Prowlarr is an indexer manager/proxy built on the popular *arr .net/reactjs base stack to integrate with your various PVR apps. +Description: |- + Prowlarr supports management of both Torrent Trackers and Usenet Indexers. + It integrates seamlessly with Lidarr, Mylar3, Radarr, Readarr, and Sonarr offering complete management of your indexers with no per app Indexer setup required. +Moniker: prowlarr +Tags: +- indexer +- sonarr +- radarr +- torrent +- nzb +ReleaseNotes: |- + Changes: + - 02bc40b Translations for indexer settings + - 83e7e30 Multiple Translations updated by Weblate + - ae870fd Improve HDBits Settings Helptext + - 33b7ba8 Multiple Translations updated by Weblate + - dd2567a Fixed: Refresh tags state to clear removed tags by housekeeping + - 264ff8f Revert "Enable browser navigation buttons for PWA" + - 629c6a8 Fixed: Redirecting after login with urlbase + - 0ce2f96 New: Log database engine version on startup + - cd7d157 Fixed: Don't use sub folder to check for free disk space for update + - 4558f55 Hints for week column and short dates in UI settings + - 21589fd Bump version to 1.13.3 + - 3496263 Multiple Translations updated by Weblate + - 1bb1ec6 Fixed: (IPTorrents) Include episodes in season search + - 2bfb838 Bind shortcut for pending changes confirmation only when it's shown + - 9eb291f Fixed: Avoid trailing slash in Proxy Url sent to FlareSolverr + - 8cf8921 Automated API Docs update + - 47fb886 Don't clone indexer API Key + - 5034a21 New: Don't return API Keys and Passwords via the API + - ed1364b Update magnet trackers + - 71e18b6 Bump version to 1.13.2 + - f7bf21d Update help text for Tags usage in Applications + - d764e34 New: (Torznab) Internal and Scene tags + - 16baceb New: Option to disable Email encryption + - 5d2b80d Fixed: (SubsPlease) Parse release size from magnet links + - a20a81f New: Category filter for Indexers + - ebb66e9 Update database migration version translation token + - cb87976 Fixed: Sorting by name in Manage Applications and Download Client modals + - 255c633 New: Add sorting to Manage Applications and Download Client modals + - 155cd53 Fix translations for manage applications and download clients + - ae70a96 Multiple Translations updated by Weblate + - 16c0daf Fix value types for EnhancedSelectInputConnector + - 34c78c5 Fixed: (BTN) Disable ID-based searches for episodes with absolute episode number + - dd5b108 Fixed: (BTN) Allow ID-based with text search query + - 0b83986 Automated API Docs update + - 2bd25fb Reorder sync fields for App Profiles + - 0f5eb5d Bump version to 1.13.1 + - c9434c6 Transpile logical assignment operators with babel + - ee969b7 New: Log warning if less than 1 GB free space during update + - cfdf88a Add exceptions to logs for indexers and apps + - 70a5dae Fixed: Don't lowercase UrlBase in ConfigFileProvider + - b53f8d4 Bump version to 1.13.0 +ReleaseNotesUrl: https://github.com/Prowlarr/Prowlarr/releases/tag/v1.13.3.4273 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/TeamProwlarr/Prowlarr/1.13.3/TeamProwlarr.Prowlarr.yaml b/manifests/t/TeamProwlarr/Prowlarr/1.13.3/TeamProwlarr.Prowlarr.yaml new file mode 100644 index 0000000000000..8a81a4a156458 --- /dev/null +++ b/manifests/t/TeamProwlarr/Prowlarr/1.13.3/TeamProwlarr.Prowlarr.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: TeamProwlarr.Prowlarr +PackageVersion: 1.13.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.installer.yaml b/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.installer.yaml deleted file mode 100644 index 4c7b69ac7de47..0000000000000 --- a/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.installer.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Created using wingetcreate 1.5.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: TeamViewer.TeamViewer -PackageVersion: 15.48.5 -Platform: -- Windows.Desktop -Scope: machine -InstallModes: -- interactive -- silent -UpgradeBehavior: install -Installers: -- Architecture: x86 - InstallerType: nullsoft - InstallerUrl: https://download.teamviewer.com/download/TeamViewer_Setup.exe - InstallerSha256: B484EF6EE314BC9ECE91D509661B194D9070CEDB911878B9778AE815A93AF5B0 -- Architecture: x64 - InstallerType: nullsoft - InstallerUrl: https://download.teamviewer.com/download/TeamViewer_Setup_x64.exe - InstallerSha256: EE54976B75381F8649987E4BD09DD586A4F7C4937AAF845C5DFE306DA5A482E4 -- Architecture: x64 - InstallerType: zip - NestedInstallerType: wix - NestedInstallerFiles: - - RelativeFilePath: Full\TeamViewer_Full.msi - InstallerUrl: https://download.teamviewer.com/download/version_15x/TeamViewer_MSI64.zip - InstallerSha256: 825EE0CFA37B289C4F69335EA20A6B26D39F31F95E537AD3F7720B20A95313F1 - ProductCode: '{9EF493A4-FD97-4F4A-8346-F36C9E1290A7}' -- Architecture: x86 - InstallerType: zip - NestedInstallerType: wix - NestedInstallerFiles: - - RelativeFilePath: Full\TeamViewer_Full.msi - InstallerUrl: https://download.teamviewer.com/download/version_15x/TeamViewer_MSI32.zip - InstallerSha256: 4BC3E1EC86FB5204DCD451F5CE7459EC54E55CAA5644F322D0C8B374E074465C - ProductCode: '{5B0B434B-F8B7-46F9-A0BE-CE0DF460E7E2}' -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.locale.de-DE.yaml b/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.locale.de-DE.yaml deleted file mode 100644 index 9a6673481dab7..0000000000000 --- a/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.locale.de-DE.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Created using wingetcreate 1.5.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json - -PackageIdentifier: TeamViewer.TeamViewer -PackageVersion: 15.48.5 -PackageLocale: de-DE -Publisher: TeamViewer -PublisherUrl: https://www.teamviewer.com/de -PublisherSupportUrl: https://www.teamviewer.com/de/kundenservice -PrivacyUrl: https://www.teamviewer.com/de/datenschutzerklaerung -Author: TeamViewer AG -PackageName: TeamViewer -PackageUrl: https://www.teamviewer.com/de -License: Kostenlos für private, nicht-kommerzielle Nutzung. -LicenseUrl: https://www.teamviewer.com/de/eula -Copyright: Copyright (c) Teamviewer -CopyrightUrl: https://www.teamviewer.com/de/eula -ShortDescription: TeamViewer verbindet Menschen, Orte und Dinge auf der ganzen Welt über verschiedenste Plattformen und Technologien. -Description: |- - TeamViewer ist eine umfassende Lösung für Fernzugriff, Fernsteuerung und Fernsupport, die mit fast jeder Desktop- und Mobilplattform funktioniert, einschließlich Windows, macOS, Android und iOS. - - Mit TeamViewer können Sie sich per Fernzugriff auf Computer oder mobile Geräte an jedem Ort der Welt einwählen und sie so nutzen, als wären Sie vor Ort. -Tags: -- fernsteuerung -- fernzugriff -- konferenzen -- remote-control -- remote-desktop -- webkonferenz -ManifestType: locale -ManifestVersion: 1.5.0 diff --git a/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.locale.en-US.yaml b/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.locale.en-US.yaml deleted file mode 100644 index 46a8ef609ef51..0000000000000 --- a/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created using wingetcreate 1.5.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: TeamViewer.TeamViewer -PackageVersion: 15.48.5 -PackageLocale: en-US -Publisher: TeamViewer -PublisherUrl: https://www.teamviewer.com -PublisherSupportUrl: https://www.teamviewer.com/en/customer-support -PrivacyUrl: https://www.teamviewer.com/en/privacy-policy -Author: TeamViewer AG -PackageName: TeamViewer -PackageUrl: https://www.teamviewer.com -License: Free For Private, Non-Commercial Use. -LicenseUrl: https://www.teamviewer.com/en/eula -Copyright: Copyright Teamviewer -CopyrightUrl: https://www.teamviewer.com/en/eula -ShortDescription: TeamViewer connects people, places and things around the world on the widest array of platforms and technologies. -Description: |- - TeamViewer is a comprehensive, remote access, remote control and remote support solution that works with almost every desktop and mobile platform, including Windows, macOS, Android, and iOS. - - TeamViewer lets you remote in to computers or mobile devices located anywhere in the world and use them as though you were there. -Moniker: teamviewer -Tags: -- conferencing -- control -- remote -- remote-access -- remote-control -- remote-desktop -- web-conferencing -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.locale.zh-CN.yaml b/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.locale.zh-CN.yaml deleted file mode 100644 index 94f1a9ebb0b03..0000000000000 --- a/manifests/t/TeamViewer/TeamViewer/15.48.5/TeamViewer.TeamViewer.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created using wingetcreate 1.5.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json - -PackageIdentifier: TeamViewer.TeamViewer -PackageVersion: 15.48.5 -PackageLocale: zh-CN -Publisher: TeamViewer -PublisherUrl: https://www.teamviewer.com -PublisherSupportUrl: https://www.teamviewer.cn/cn/support -PrivacyUrl: https://www.teamviewer.com/en/privacy-policy -Author: TeamViewer AG -PackageName: TeamViewer -PackageUrl: https://www.teamviewer.cn/cn -License: 个人使用免费,只能用于非商业用途 -LicenseUrl: https://www.teamviewer.com/en/eula -Copyright: Copyrighter @ 2022 TeamViewer Germany GmbH -ShortDescription: 远程连接控制软件 -Description: TeamViewer远程连接控制软件是一款随时随地连接到远程桌面电脑、移动设备及Iot,让远程连接过程更加的快速和安全,轻松实现对文件、网络及程序的实时支持或访问。 -Tags: -- 视频会议 -- 远程控制 -- 远程桌面 -- 远程连接 -ManifestType: locale -ManifestVersion: 1.5.0 diff --git a/manifests/t/TeamViewer/TeamViewer/Host/15.48.5/TeamViewer.TeamViewer.Host.installer.yaml b/manifests/t/TeamViewer/TeamViewer/Host/15.48.5/TeamViewer.TeamViewer.Host.installer.yaml deleted file mode 100644 index ec35b350bf87e..0000000000000 --- a/manifests/t/TeamViewer/TeamViewer/Host/15.48.5/TeamViewer.TeamViewer.Host.installer.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created using wingetcreate 1.5.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: TeamViewer.TeamViewer.Host -PackageVersion: 15.48.5 -Platform: -- Windows.Desktop -Scope: machine -InstallModes: -- interactive -- silent -UpgradeBehavior: install -Installers: -- Architecture: x86 - InstallerType: nullsoft - InstallerUrl: https://dl.teamviewer.com/download/version_15x/TeamViewer_Host_Setup.exe - InstallerSha256: B4FA5FCF51CEF886667F5DCA32CB316A2957ECB30FF3AFFE463B4912A458CA77 -- Architecture: x86 - InstallerType: zip - NestedInstallerType: wix - NestedInstallerFiles: - - RelativeFilePath: Host\TeamViewer_Host.msi - InstallerUrl: https://download.teamviewer.com/download/version_15x/TeamViewer_MSI32.zip - InstallerSha256: 4BC3E1EC86FB5204DCD451F5CE7459EC54E55CAA5644F322D0C8B374E074465C - ProductCode: '{CBBE5BD3-B53C-4690-9BBD-10B9A5300198}' -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/t/TeamViewer/TeamViewer/Host/15.48.5/TeamViewer.TeamViewer.Host.locale.en-US.yaml b/manifests/t/TeamViewer/TeamViewer/Host/15.48.5/TeamViewer.TeamViewer.Host.locale.en-US.yaml deleted file mode 100644 index 95047e0a21a35..0000000000000 --- a/manifests/t/TeamViewer/TeamViewer/Host/15.48.5/TeamViewer.TeamViewer.Host.locale.en-US.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Created using wingetcreate 1.5.7.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: TeamViewer.TeamViewer.Host -PackageVersion: 15.48.5 -PackageLocale: en-US -Publisher: TeamViewer -PublisherUrl: https://www.teamviewer.com -PublisherSupportUrl: https://www.teamviewer.com/en/customer-support -PrivacyUrl: https://www.teamviewer.com/en/privacy-policy -Author: TeamViewer AG -PackageName: TeamViewer Host -PackageUrl: https://www.teamviewer.com -License: Free For Private, Non-Commercial Use. -LicenseUrl: https://www.teamviewer.com/en/eula -Copyright: Copyright Teamviewer -CopyrightUrl: https://www.teamviewer.com/en/eula -ShortDescription: TeamViewer connects people, places and things around the world on the widest array of platforms and technologies. -Description: |- - TeamViewer is a comprehensive, remote access, remote control and remote support solution that works with almost every desktop and mobile platform, including Windows, macOS, Android, and iOS. - TeamViewer lets you remote in to computers or mobile devices located anywhere in the world and use them as though you were there. -Moniker: teamviewer-host -Tags: -- control -- cross-platform -- remote -- remote-access -- remote-control -- remote-desktop -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.installer.yaml b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.installer.yaml index 35d271edd2ed5..c3a9151123249 100644 --- a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.installer.yaml +++ b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Tencent.ArtHub diff --git a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.en-US.yaml b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.en-US.yaml index 8062c94706bad..a1e6a70b1c721 100644 --- a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.en-US.yaml +++ b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Tencent.ArtHub diff --git a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.zh-CN.yaml b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.zh-CN.yaml index 616b0c02d14ec..293fe3ecd8043 100644 --- a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.zh-CN.yaml +++ b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json PackageIdentifier: Tencent.ArtHub diff --git a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.yaml b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.yaml index e67dd46a42339..c94f7ea09b95c 100644 --- a/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.yaml +++ b/manifests/t/Tencent/ArtHub/1.15.0/Tencent.ArtHub.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Tencent.ArtHub diff --git a/manifests/t/Tencent/QQ/NT/9.9.7.21484/Tencent.QQ.NT.installer.yaml b/manifests/t/Tencent/QQ/NT/9.9.7.21484/Tencent.QQ.NT.installer.yaml new file mode 100644 index 0000000000000..0787454d805ba --- /dev/null +++ b/manifests/t/Tencent/QQ/NT/9.9.7.21484/Tencent.QQ.NT.installer.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Tencent.QQ.NT +PackageVersion: 9.9.7.21484 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /s + SilentWithProgress: /s +UpgradeBehavior: install +Protocols: +- ntqq-notification +- tencent +ReleaseDate: 2024-02-10 +Installers: +- Architecture: x86 + InstallerUrl: https://dldir1v6.qq.com/qqfile/qq/QQNT/340572d2/QQ9.9.7.21484_x86.exe + InstallerSha256: FCA60B9B6E813C5F266CC6B6E076465702D1352DE17CFB765C618BBAB29366E1 + ProductCode: QQ +- Architecture: x64 + InstallerUrl: https://dldir1v6.qq.com/qqfile/qq/QQNT/897bf087/QQ9.9.7.21484_x64.exe + InstallerSha256: 97FF95D3FF4055449912F4702F283C079EFB4DF872C2AD288A1993E4A661BFF9 + ProductCode: QQ +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tencent/QQ/NT/9.9.7.21484/Tencent.QQ.NT.locale.en-US.yaml b/manifests/t/Tencent/QQ/NT/9.9.7.21484/Tencent.QQ.NT.locale.en-US.yaml new file mode 100644 index 0000000000000..e2f51e7f121db --- /dev/null +++ b/manifests/t/Tencent/QQ/NT/9.9.7.21484/Tencent.QQ.NT.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Tencent.QQ.NT +PackageVersion: 9.9.7.21484 +PackageLocale: en-US +Publisher: Tencent +PublisherUrl: https://im.qq.com/ +PublisherSupportUrl: https://support.qq.com/products/36086 +PrivacyUrl: https://docs.qq.com/doc/p/74d994d528f8255e6c8e39d10932aaa7cf7cb467?dver=2.1.27262305 +Author: Shenzhen Tencent Computer Systems Company Limited +PackageName: QQ +PackageUrl: https://im.qq.com/pcqq/index.shtml +License: Proprietary +LicenseUrl: https://rule.tencent.com/rule/46a15f24-e42c-4cb6-a308-2347139b1201 +Copyright: Copyright © 1999-2024 Tencent. All Rights Reserved. +CopyrightUrl: https://www.tencent.com/en-us/statement.html +ShortDescription: An instant messaging tool that gives you the best way to keep in touch with your friends and family +Description: Tencent QQ is an instant messaging software used by 800 million people. You can not only chat and make friends through QQ on various devices, but also make free video and voice calls, and send and receive important files anytime, anywhere. +Moniker: qqnt +Tags: +- call +- chat +- friends +- im +- instant-messaging +- message +- send +- share +- talk +- voice +# ReleaseNotes: +ReleaseNotesUrl: https://im.qq.com/pcqq/support.html +PurchaseUrl: https://vip.qq.com/ +# InstallationNotes: +Documentations: +- DocumentLabel: Help + DocumentUrl: https://kf.qq.com/product/QQ.html +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tencent/QQ/NT/9.9.7.21484/Tencent.QQ.NT.locale.zh-CN.yaml b/manifests/t/Tencent/QQ/NT/9.9.7.21484/Tencent.QQ.NT.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9679338cb88d2 --- /dev/null +++ b/manifests/t/Tencent/QQ/NT/9.9.7.21484/Tencent.QQ.NT.locale.zh-CN.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json + +PackageIdentifier: Tencent.QQ.NT +PackageVersion: 9.9.7.21484 +PackageLocale: zh-CN +Publisher: Tencent +PublisherUrl: https://im.qq.com/ +PublisherSupportUrl: https://support.qq.com/products/36086 +PrivacyUrl: https://docs.qq.com/doc/p/74d994d528f8255e6c8e39d10932aaa7cf7cb467?dver=2.1.27262305 +Author: 深圳市腾讯计算机系统有限公司 +PackageName: QQ +PackageUrl: https://im.qq.com/pcqq/index.shtml +License: 专有软件 +LicenseUrl: https://rule.tencent.com/rule/46a15f24-e42c-4cb6-a308-2347139b1201 +Copyright: Copyright © 1999-2024 Tencent. All Rights Reserved. +CopyrightUrl: https://www.tencent.com/zh-cn/statement.html +ShortDescription: 一款能让你与你的朋友和家人保持联系的即时通讯工具 +Description: 腾讯 QQ,8 亿人在用的即时通讯软件。你不仅可以在各类通讯终端上通过 QQ 聊天交友,还能进行免费的视频、语音通话,或者随时随地收发重要文件。 +# Moniker: +Tags: +- 信息 +- 共享 +- 分享 +- 发送 +- 好友 +- 朋友 +- 消息 +- 电话 +- 聊天 +- 语音 +- 通话 +# ReleaseNotes: +ReleaseNotesUrl: https://im.qq.com/pcqq/support.html +PurchaseUrl: https://vip.qq.com +# InstallationNotes: +Documentations: +- DocumentLabel: 使用帮助 + DocumentUrl: https://kf.qq.com/product/QQ.html +ManifestType: locale +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tencent/QQ/NT/9.9.7.21484/Tencent.QQ.NT.yaml b/manifests/t/Tencent/QQ/NT/9.9.7.21484/Tencent.QQ.NT.yaml new file mode 100644 index 0000000000000..e972331041880 --- /dev/null +++ b/manifests/t/Tencent/QQ/NT/9.9.7.21484/Tencent.QQ.NT.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.1 Dumplings Mod $debug=QUSU.CRLF.7-4-1.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Tencent.QQ.NT +PackageVersion: 9.9.7.21484 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/TopalaSoftwareSolutions/SIW/2024.02.11.0/TopalaSoftwareSolutions.SIW.installer.yaml b/manifests/t/TopalaSoftwareSolutions/SIW/2024.02.11.0/TopalaSoftwareSolutions.SIW.installer.yaml new file mode 100644 index 0000000000000..c6747eb9bc8c5 --- /dev/null +++ b/manifests/t/TopalaSoftwareSolutions/SIW/2024.02.11.0/TopalaSoftwareSolutions.SIW.installer.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: TopalaSoftwareSolutions.SIW +PackageVersion: 2024.02.11.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 6.1.0.0 +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{3B9704C8-1286-4a17-9EA8-F63004FC74A1}' +Installers: +- Architecture: x86 + Scope: machine + InstallerUrl: https://www.gtopala.com/download/20240211/siwtrial-setup.exe + InstallerSha256: C6A18724DB885B27E7FBF72E3B4047267EB51E20A18E88ABA9DB1FF0E9DD2A7E +- Architecture: x64 + Scope: machine + InstallerUrl: https://www.gtopala.com/download/20240211/siwtrial-setup.exe + InstallerSha256: C6A18724DB885B27E7FBF72E3B4047267EB51E20A18E88ABA9DB1FF0E9DD2A7E +- Architecture: arm64 + Scope: machine + InstallerUrl: https://www.gtopala.com/download/20240211/siwtrial-setup.exe + InstallerSha256: C6A18724DB885B27E7FBF72E3B4047267EB51E20A18E88ABA9DB1FF0E9DD2A7E +ManifestType: installer +ManifestVersion: 1.5.0 +ReleaseDate: 2024-02-11 diff --git a/manifests/t/TopalaSoftwareSolutions/SIW/2024.02.11.0/TopalaSoftwareSolutions.SIW.locale.en-US.yaml b/manifests/t/TopalaSoftwareSolutions/SIW/2024.02.11.0/TopalaSoftwareSolutions.SIW.locale.en-US.yaml new file mode 100644 index 0000000000000..47863e9243593 --- /dev/null +++ b/manifests/t/TopalaSoftwareSolutions/SIW/2024.02.11.0/TopalaSoftwareSolutions.SIW.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: TopalaSoftwareSolutions.SIW +PackageVersion: 2024.02.11.0 +PackageLocale: en-US +Publisher: Topala Software Solutions +PublisherUrl: https://www.gtopala.com/ +PublisherSupportUrl: https://www.gtopala.com/forum/ +PrivacyUrl: https://www.gtopala.com/tss/privacy-policy.php +Author: Gabriel Topala +PackageName: SIW +PackageUrl: https://www.gtopala.com/ +License: Commercial +LicenseUrl: https://www.gtopala.com/agreement/ +Copyright: Copyright © 2005-2024 Topala Software Solutions +CopyrightUrl: https://www.gtopala.com/agreement/ +ShortDescription: System Information for Windows - Everything you want to know about your computer +Description: SIW is an advanced System Information for Windows tool that analyzes your computer and gathers detailed information about system properties and settings (Software Information, Hardware Information, and Network Information). It displays it in a highly comprehensible manner. +Moniker: siw +Tags: +- amd +- cpu +- hardware +- intel +- memory +- motherboard +- network +- processor +- software +- system +- system-information +- system-utility +- utility +ReleaseNotesUrl: https://www.gtopala.com/siw/changelog.php +PurchaseUrl: https://www.gtopala.com/buy/ +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/TopalaSoftwareSolutions/SIW/2024.02.11.0/TopalaSoftwareSolutions.SIW.yaml b/manifests/t/TopalaSoftwareSolutions/SIW/2024.02.11.0/TopalaSoftwareSolutions.SIW.yaml new file mode 100644 index 0000000000000..74a84c2d2497a --- /dev/null +++ b/manifests/t/TopalaSoftwareSolutions/SIW/2024.02.11.0/TopalaSoftwareSolutions.SIW.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: TopalaSoftwareSolutions.SIW +PackageVersion: 2024.02.11.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/TrackerSoftware/PDF-XChangeEditor/10.2.1.385/TrackerSoftware.PDF-XChangeEditor.installer.yaml b/manifests/t/TrackerSoftware/PDF-XChangeEditor/10.2.1.385/TrackerSoftware.PDF-XChangeEditor.installer.yaml new file mode 100644 index 0000000000000..d2f5e0d0323f1 --- /dev/null +++ b/manifests/t/TrackerSoftware/PDF-XChangeEditor/10.2.1.385/TrackerSoftware.PDF-XChangeEditor.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: TrackerSoftware.PDF-XChangeEditor +PackageVersion: 10.2.1.385 +InstallerLocale: en-US +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +UpgradeBehavior: install +FileExtensions: +- pdf +Installers: +- Architecture: x86 + InstallerUrl: https://downloads.pdf-xchange.com/EditorV10.x86.msi + InstallerSha256: 99575D900892C905EB3E98C40A94D28B81537795400BD916A6F86D7234A1D60B + ProductCode: '{36796317-0E4D-4A48-973B-133F6841CBFD}' +- Architecture: x64 + InstallerUrl: https://downloads.pdf-xchange.com/EditorV10.x64.msi + InstallerSha256: ACF1306E841B4890C7522D978C2D9CDB381256D42417711E3463732C53ADC1F8 + ProductCode: '{EED4E4CA-E7A8-4162-9B0D-F046272B5FD9}' +- Architecture: arm64 + InstallerUrl: https://downloads.pdf-xchange.com/EditorV10.ARM64.msi + InstallerSha256: 61350E6F63CCD7082DF24ACD8EC6CD2838A784C1A1E923E3829CD48DC579DAF0 + ProductCode: '{DED65460-89DF-4C59-BC3B-5027C2BD59BC}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/TrackerSoftware/PDF-XChangeEditor/10.2.1.385/TrackerSoftware.PDF-XChangeEditor.locale.en-US.yaml b/manifests/t/TrackerSoftware/PDF-XChangeEditor/10.2.1.385/TrackerSoftware.PDF-XChangeEditor.locale.en-US.yaml new file mode 100644 index 0000000000000..6c3c0edc8d2cf --- /dev/null +++ b/manifests/t/TrackerSoftware/PDF-XChangeEditor/10.2.1.385/TrackerSoftware.PDF-XChangeEditor.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: TrackerSoftware.PDF-XChangeEditor +PackageVersion: 10.2.1.385 +PackageLocale: en-US +Publisher: Tracker Software Products (Canada) Ltd. +PublisherUrl: https://www.tracker-software.com/ +PublisherSupportUrl: https://www.tracker-software.com/support +PrivacyUrl: https://www.tracker-software.com/privacy-policy +PackageName: PDF-XChange Editor +PackageUrl: https://www.tracker-software.com/product/pdf-xchange-editor +License: Copyright (c) Tracker Software Products (Canada) Ltd. +ShortDescription: The smallest, fastest and most feature-rich free PDF viewer/editor on the market. +Tags: +- pdf-editor +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/TrackerSoftware/PDF-XChangeEditor/10.2.1.385/TrackerSoftware.PDF-XChangeEditor.yaml b/manifests/t/TrackerSoftware/PDF-XChangeEditor/10.2.1.385/TrackerSoftware.PDF-XChangeEditor.yaml new file mode 100644 index 0000000000000..1edb931c58dd2 --- /dev/null +++ b/manifests/t/TrackerSoftware/PDF-XChangeEditor/10.2.1.385/TrackerSoftware.PDF-XChangeEditor.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: TrackerSoftware.PDF-XChangeEditor +PackageVersion: 10.2.1.385 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tutanota/Tutanota/3.122.3/Tutanota.Tutanota.installer.yaml b/manifests/t/Tutanota/Tutanota/3.122.3/Tutanota.Tutanota.installer.yaml new file mode 100644 index 0000000000000..f24d7f90d7792 --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/3.122.3/Tutanota.Tutanota.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 3.122.3 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ReleaseDate: 2024-02-08 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-3.122.3/tutanota-desktop-win.exe + InstallerSha256: A565D0B2330DFD066366911A7253AF950B71B96DB4C9A53926DE20EC41374021 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-3.122.3/tutanota-desktop-win.exe + InstallerSha256: A565D0B2330DFD066366911A7253AF950B71B96DB4C9A53926DE20EC41374021 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tutanota/Tutanota/3.122.3/Tutanota.Tutanota.locale.en-US.yaml b/manifests/t/Tutanota/Tutanota/3.122.3/Tutanota.Tutanota.locale.en-US.yaml new file mode 100644 index 0000000000000..8900c630a69f1 --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/3.122.3/Tutanota.Tutanota.locale.en-US.yaml @@ -0,0 +1,55 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 3.122.3 +PackageLocale: en-US +Publisher: Tutao GmbH +PublisherUrl: https://tuta.com/ +PublisherSupportUrl: https://github.com/tutao/tutanota/issues +Author: Tutao GmbH +PackageName: Tutanota Desktop +PackageUrl: https://github.com/tutao/tutanota +License: GPL-3.0 +LicenseUrl: https://github.com/tutao/tutanota/blob/HEAD/LICENSE.txt +Copyright: Copyright © 2022 Tutao GmbH +ShortDescription: Tutanota is an email client with a strong focus on security and privacy that lets you encrypt emails on all your devices. +Description: |- + Tutanota is the worlds most secure email service, easy to use and private by design. + With end-to-end encryption and 2FA, your emails have never been more secure. + The built-in encryption guarantees that your mailbox belongs to you. + Nobody can decrypt or read your data. +Moniker: tutanota +Tags: +- calendar +- email +- email-client +- encryption +- end-to-end-encryption +- privacy +- private +- secure +ReleaseNotes: |- + Bugfixes + - Long events in the next month aren't displayed #6365 + - Event editor inputs do not visually appear disabled #6356 + - Mini calendar week indicator has invalid width at some sizes #6328 + - Did not pass session key when decrypting encrypted instance of type #6275 + - when writing a reply the editor does not automatically change direction for RTL languages #6220 + - Creating a template list causes SessionKeyNotFoundError #6205 + - Uncaught NotAuthorizedError when updating calendar #5793 + - Cannot scroll the help page with keyboard #3190 + - Mails disappear from search view when moved #1732 + Milestone + Asset Checksums (SHA256) + tutanota-desktop-linux.AppImage: + 7b202668501bf191778a322a5251d38f09a92303dacab13b94c32a5075e442e0tutanota-desktop-win.exe: + a565d0b2330dfd066366911a7253af950b71b96db4c9a53926de20ec41374021tutanota-desktop-mac.dmg: + 333926a9f293e425924b9e4ece446aef3f38bc6ca158a640f2c0d9cc2aa1d7b6 +ReleaseNotesUrl: https://github.com/tutao/tutanota/releases/tag/tutanota-desktop-release-3.122.3 +PurchaseUrl: https://tutanota.com/pricing +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://tutanota.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/Tutanota/Tutanota/3.122.3/Tutanota.Tutanota.yaml b/manifests/t/Tutanota/Tutanota/3.122.3/Tutanota.Tutanota.yaml new file mode 100644 index 0000000000000..f80f043d79199 --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/3.122.3/Tutanota.Tutanota.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 3.122.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/taers232c/GAMADV-XTD3/6.68.05/taers232c.GAMADV-XTD3.installer.yaml b/manifests/t/taers232c/GAMADV-XTD3/6.68.05/taers232c.GAMADV-XTD3.installer.yaml new file mode 100644 index 0000000000000..b78f8eadfae58 --- /dev/null +++ b/manifests/t/taers232c/GAMADV-XTD3/6.68.05/taers232c.GAMADV-XTD3.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: taers232c.GAMADV-XTD3 +PackageVersion: 6.68.05 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallerSwitches: + Custom: /norestart +UpgradeBehavior: install +ProductCode: '{61A54BA2-483D-4033-86FD-98AADE511CDF}' +ReleaseDate: 2024-02-12 +AppsAndFeaturesEntries: +- UpgradeCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/taers232c/GAMADV-XTD3/releases/download/v6.68.05/gamadv-xtd3-6.68.05-windows-x86_64.msi + InstallerSha256: 2A156EE0585F1B407A39F2271779332E218120E0BFA57DAE514938F1C7CC6E17 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/taers232c/GAMADV-XTD3/6.68.05/taers232c.GAMADV-XTD3.locale.en-US.yaml b/manifests/t/taers232c/GAMADV-XTD3/6.68.05/taers232c.GAMADV-XTD3.locale.en-US.yaml new file mode 100644 index 0000000000000..bd144ab525871 --- /dev/null +++ b/manifests/t/taers232c/GAMADV-XTD3/6.68.05/taers232c.GAMADV-XTD3.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: taers232c.GAMADV-XTD3 +PackageVersion: 6.68.05 +PackageLocale: en-US +Publisher: Ross Scroggs - ross.scroggs@gmail.com +PublisherUrl: https://github.com/taers232c +PublisherSupportUrl: https://github.com/taers232c/GAMADV-XTD3/issues +Author: taers232c +PackageName: GAMADV-XTD3 +PackageUrl: https://github.com/taers232c/GAMADV-XTD3 +License: Apache-2.0 +ShortDescription: GAMADV-XTD3 is a free, open source command line tool for Google Workspace (formerly G Suite) Administrators to manage domain and user settings quickly and easily. +Moniker: GAMADV +ReleaseNotes: "Scroll to bottom of page for installation/downloads\nLatest updates\n6.68.05Updated gam print groups ... ciallfields|(cifields ) to account for an\nAPI shortcoming that failed to get all of the Cloud Identity fields.6.68.04Added option skiprows to gam csv|loop that causes GAM to skip processing the first filtered rows.- See: \n6.68.03Fixed bug in gam create drivefileacl that caused a trap.6.68.02Upgraded to Python 3.12.2 where possible.Added options restricted|(audience ) to gam create|update chatspace that\nsets the access options for the chat space. These options are in Developer Preview and will not be generally available.6.68.01Fixed bug for real.6.68.00Fixed bug introduced in 6.67.35 that caused a command error like the following or would\nnot properly match type|nottype and role|notrole .\n\nERROR: permission attribute allowfilediscovery/withlink not allowed with type {'a', 'y', 'e', 'o', 'n'}\n\nMy sincere apologies.6.67.39Added option wait to gam create datatransfer that causes GAM to wait\nfor the transfer to complete. The first must be in the range 5-60 and is the number\nof seconds between checks to see if the transfer has completed. The second is the maximum\nnumber of checks to perform. By default, GAM does not wait for the transfer to complete.6.67.38Added option tdnotify [] to that causes GAM to send notification\nemails to all tdshare users when the file is uploaded/updated.6.67.37Fixed bug in gam show messages ... showattachments to avoid a trap when text/plain attachments\nin character sets other than UTF-8 are displayed.6.67.36Updated gam batch and gam tbatch commands to accept lines with the following form:\n\nsleep \n\nBatch processing will suspend for seconds before the next command line is processed.6.67.35Added the following options to that allow more powerful matching.\n\nnottype \ntypelist \nnottypelist \nrolelist \nnotrolelist \n\n- See: \n6.67.34Added option movetoorgunitdelay to gam create shareddrive ... ou|org|orgunit .\nGAM creates the Shared Drive, verifies that it has been created and then tries to move it to . Google seems to\nrequire a delay or the following error is generated.\n\nERROR: 409: 409 - The operation was aborted.\n\nmovetoorgunitdelay defaults to 20 seconds which seems to work; can range from 0 to 60.6.67.33Upgraded to OpenSSL 3.2.1 where possible.Fixed bug in gam print shareddrives where role was improperly displayed as fileOrganizer\nrather than writer.Added option guiroles [] to gam info|print|show shareddrive that maps\nthe Drive API role names to the Google Drive GUI role names.\n\nAPI: GUI\ncommenter: Commenter\nfileOrganizer: Content manager\norganizer: Manager\nreader: Viewer\nwriter: Contributor\n\n6.67.32Updated to allow multiple tdshare commenter|reader|writer options.Fixed bug in gam print shareddrives where role was improperly displayed as unknown\nrather than reader when Allow viewers and commenters to download, print, and copy files was unchecked for the Shared Drive.6.67.31Updated gam claim|transfer ownership to properly\nhandle the case where referencess a Drive shortcut.6.67.30Fixed bug where the fullpath option in various commands was not converting the generic shared drive name Drive to the drive's actual name.6.67.29Added optional argument owneraccess to gam courses remove teachers|students [owneracccess] remove teacher|student [owneraccess] in order to test a possible API change.Updated code to avoid a trap when gam config auto_batch_min 1 csv file.csv gam ... was entered.\nThe config auto_batch_min 1 is not appropriate in this context and will be ignored.6.67.28Improved handling of Bad Request error in gam collect orphans.6.67.27Updated gam collect orphans to handle the following error:\n\nERROR: 400: badRequest - Bad Request\n\n6.67.26Fixed bug in gam print vaultexports ... formatjson that caused a trap.6.67.25Added option owneraccess to gam info courses and gam info course in order\nto test a possible API change.6.67.24Fixed bug that caused HTML password notification email messages to be displayed in raw form.6.67.23Use local copy of googleapiclient to remove static discovery documents to improve performance.6.67.22Added permissionidlist to that allows matching any permission ID in a list.Added option exportlinkeddrivefiles to gam create vaultexport that is used with corpus mail.6.67.21Updated gam remove aliases user|group to give a more informative\nerror message when the target/alias combination does not exist.\n\nOld: User: testsimple@rdschool.org, User Alias: tsalias@rdschool.org, Remove Failed: Invalid Input: resource_id\nNew: User: testsimple@rdschool.org, User Alias: tsalias@rdschool.org, Remove Failed: Does not exist\n\nInstallation\nIf you are a first time Gam user:If you are updating your GAMADV-XTD3 version:If you are upgrading from standard GamIf you are upgrading from GAMADV-X or GAMADV-XTDsha256 hashes\n\n\n8cd57f2b9eb7dade4cb853b065d16e7416f545026c00fa57805945379f8a1437 gamadv-xtd3-6.68.05-linux-arm64-glibc2.23.tar.xz\neb62bd9eb14e7f702fa7f3a2eba4487be2cd0e827c4047b42684e12eee3c389a gamadv-xtd3-6.68.05-linux-arm64-glibc2.27.tar.xz\n2d5eed91e2fcc165291ef43eb3cf91bf8fb8ed6aaaef4dee1329937a3605bd5a gamadv-xtd3-6.68.05-linux-arm64-glibc2.31.tar.xz\nfc8ee88a4c9d198c48294fef1b428e2acbe29ce92ea4ddd02a25209ffd151c75 gamadv-xtd3-6.68.05-linux-x86_64-glibc2.35.tar.xz\n989683134c8cfb9d07f704ee391823399d722c941839f1917dd524c5439be245 gamadv-xtd3-6.68.05-linux-x86_64-glibc2.19.tar.xz\n9cd8ab43180cda0ebde6574e9b23c85a34429731196a552cf964456dc4656495 gamadv-xtd3-6.68.05-linux-x86_64-glibc2.23.tar.xz\nd9411078f99c608ab55011f8a12a0afa7368953e9b272abcdca12dbd91cf257f gamadv-xtd3-6.68.05-linux-x86_64-glibc2.27.tar.xz\n9fa155ca3902eadd3e16f88ec1428fbdf72119ed239a969d4fbb69e7293f7ee9 gamadv-xtd3-6.68.05-linux-x86_64-glibc2.31.tar.xz\nbda91b27b18cee8f6c60c7315759b5f3276a37dd29661a0fd586c4191e038e24 gamadv-xtd3-6.68.05-linux-x86_64-legacy.tar.xz\n47ad3b19b373e8bb5f8e6756e26ba0582bb5207fef477648784f539d9b257216 gamadv-xtd3-6.68.05-macos-arm64.tar.xz\nbd250d0ca47fdee7da6273c64bddbf759d1d9d600f208b9e358152f21555c415 gamadv-xtd3-6.68.05-macos-x86_64.tar.xz\n2a156ee0585f1b407a39f2271779332e218120e0bfa57dae514938f1c7cc6e17 gamadv-xtd3-6.68.05-windows-x86_64.msi\n51f081bd88ca3ce1cf8cace1badd1c1698c47922e62380afea1610653c083c20 gamadv-xtd3-6.68.05-windows-x86_64.zip" +ReleaseNotesUrl: https://github.com/taers232c/GAMADV-XTD3/releases/tag/v6.68.05 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/taers232c/GAMADV-XTD3/6.68.05/taers232c.GAMADV-XTD3.yaml b/manifests/t/taers232c/GAMADV-XTD3/6.68.05/taers232c.GAMADV-XTD3.yaml new file mode 100644 index 0000000000000..cb9c60d97889c --- /dev/null +++ b/manifests/t/taers232c/GAMADV-XTD3/6.68.05/taers232c.GAMADV-XTD3.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: taers232c.GAMADV-XTD3 +PackageVersion: 6.68.05 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/t/the-sz/Carroll/1.31/the-sz.Carroll.installer.yaml b/manifests/t/the-sz/Carroll/1.31/the-sz.Carroll.installer.yaml new file mode 100644 index 0000000000000..0b9edce8b1aee --- /dev/null +++ b/manifests/t/the-sz/Carroll/1.31/the-sz.Carroll.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: the-sz.Carroll +PackageVersion: "1.31" +InstallerType: zip +Installers: +- Architecture: x86 + NestedInstallerType: inno + NestedInstallerFiles: + - RelativeFilePath: ./Setup.exe + PortableCommandAlias: Setup.exe + InstallerUrl: https://the-sz.com/common/get.php?product=carroll + InstallerSha256: b9e175c21fccd643064785b5c25185e393aa08799ad44d9ef13411d4889fd4f8 +ManifestType: installer +ManifestVersion: 1.4.0 diff --git a/manifests/t/the-sz/Carroll/1.31/the-sz.Carroll.locale.en-US.yaml b/manifests/t/the-sz/Carroll/1.31/the-sz.Carroll.locale.en-US.yaml new file mode 100644 index 0000000000000..98ae0714827f3 --- /dev/null +++ b/manifests/t/the-sz/Carroll/1.31/the-sz.Carroll.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: the-sz.Carroll +PackageVersion: "1.31" +PackageLocale: en-US +Publisher: the sz development +PublisherUrl: https://the-sz.com/ +PrivacyUrl: https://the-sz.com/products/privacy.php +Author: the sz development +PackageName: Carroll +PackageUrl: https://the-sz.com/products/carroll/ +License: Proprietary +LicenseUrl: https://the-sz.com/products/license.php +Copyright: Copyright (c) the-sz.com +ShortDescription: Set for every user a different screen resolution +Description: Set for every user a different screen resolution. After logon the screen resolution will be changed to the stored setting. +Moniker: carroll +ReleaseNotesUrl: https://the-sz.com/common/history.php?product=carroll +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/t/the-sz/Carroll/1.31/the-sz.Carroll.yaml b/manifests/t/the-sz/Carroll/1.31/the-sz.Carroll.yaml new file mode 100644 index 0000000000000..528d3cb6413fa --- /dev/null +++ b/manifests/t/the-sz/Carroll/1.31/the-sz.Carroll.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: the-sz.Carroll +PackageVersion: "1.31" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/t/the-sz/Howard/2.05/the-sz.Howard.installer.yaml b/manifests/t/the-sz/Howard/2.05/the-sz.Howard.installer.yaml new file mode 100644 index 0000000000000..9a22a446a9a23 --- /dev/null +++ b/manifests/t/the-sz/Howard/2.05/the-sz.Howard.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: the-sz.Howard +PackageVersion: "2.05" +InstallerType: zip +Installers: +- Architecture: x86 + NestedInstallerType: inno + NestedInstallerFiles: + - RelativeFilePath: ./HowardSetup.exe + PortableCommandAlias: HowardSetup.exe + InstallerUrl: https://the-sz.com/common/get.php?product=howard + InstallerSha256: 036afe516f1403fcbc9750d165aab1795b6d98b78214650aa84d8354f38823b3 +ManifestType: installer +ManifestVersion: 1.4.0 diff --git a/manifests/t/the-sz/Howard/2.05/the-sz.Howard.locale.en-US.yaml b/manifests/t/the-sz/Howard/2.05/the-sz.Howard.locale.en-US.yaml new file mode 100644 index 0000000000000..41c8403546d22 --- /dev/null +++ b/manifests/t/the-sz/Howard/2.05/the-sz.Howard.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: the-sz.Howard +PackageVersion: "2.05" +PackageLocale: en-US +Publisher: the sz development +PublisherUrl: https://the-sz.com/ +PrivacyUrl: https://the-sz.com/products/privacy.php +Author: the sz development +PackageName: Howard E-Mail Notifier +PackageUrl: https://the-sz.com/products/howard/ +License: Proprietary +LicenseUrl: https://the-sz.com/products/license.php +Copyright: Copyright (c) the-sz.com +ShortDescription: Outlook.com / GMail / Yahoo / IMAP Email Notifier +Description: Get notified about new mails in your outlook.com, live.com, hotmail.com, mail.google.com, mail.yahoo.com, facebook.com, X.com, e.mail.ru, orange.fr and www.zoho.com inbox. +Moniker: howard +ReleaseNotesUrl: https://the-sz.com/common/history.php?product=howard +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/t/the-sz/Howard/2.05/the-sz.Howard.yaml b/manifests/t/the-sz/Howard/2.05/the-sz.Howard.yaml new file mode 100644 index 0000000000000..4850cdbc23cd4 --- /dev/null +++ b/manifests/t/the-sz/Howard/2.05/the-sz.Howard.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: the-sz.Howard +PackageVersion: "2.05" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/t/the-sz/Trion/1.19/the-sz.Trion.installer.yaml b/manifests/t/the-sz/Trion/1.19/the-sz.Trion.installer.yaml new file mode 100644 index 0000000000000..1437d703999fb --- /dev/null +++ b/manifests/t/the-sz/Trion/1.19/the-sz.Trion.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json + +PackageIdentifier: the-sz.Trion +PackageVersion: "1.19" +InstallerType: zip +Installers: +- Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ./Trion.exe + PortableCommandAlias: Trion.exe + InstallerUrl: https://the-sz.com/common/get.php?product=trion + InstallerSha256: 5040f0ecd7c42584b7218a8f360745700fe96be89d0588ce2cc1100519f1462b +ManifestType: installer +ManifestVersion: 1.4.0 diff --git a/manifests/t/the-sz/Trion/1.19/the-sz.Trion.locale.en-US.yaml b/manifests/t/the-sz/Trion/1.19/the-sz.Trion.locale.en-US.yaml new file mode 100644 index 0000000000000..fbab3ac853c64 --- /dev/null +++ b/manifests/t/the-sz/Trion/1.19/the-sz.Trion.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json + +PackageIdentifier: the-sz.Trion +PackageVersion: "1.19" +PackageLocale: en-US +Publisher: the sz development +PublisherUrl: https://the-sz.com/ +PrivacyUrl: https://the-sz.com/products/privacy.php +Author: the sz development +PackageName: Trion +PackageUrl: https://the-sz.com/products/trion/ +License: Proprietary +LicenseUrl: https://the-sz.com/products/license.php +Copyright: Copyright (c) the-sz.com +ShortDescription: Serial port monitor which supports ANSI colors, save received data and logging to a text file +Description: This serial port terminal application supports ANSI colors, save received data and logging to a text file. +Moniker: trion +ReleaseNotesUrl: https://the-sz.com/common/history.php?product=trion +ManifestType: defaultLocale +ManifestVersion: 1.4.0 diff --git a/manifests/t/the-sz/Trion/1.19/the-sz.Trion.yaml b/manifests/t/the-sz/Trion/1.19/the-sz.Trion.yaml new file mode 100644 index 0000000000000..a0b83b58376e7 --- /dev/null +++ b/manifests/t/the-sz/Trion/1.19/the-sz.Trion.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.5.7.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json + +PackageIdentifier: the-sz.Trion +PackageVersion: "1.19" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.4.0 diff --git a/manifests/t/twpayne/chezmoi/2.46.1/twpayne.chezmoi.installer.yaml b/manifests/t/twpayne/chezmoi/2.46.1/twpayne.chezmoi.installer.yaml new file mode 100644 index 0000000000000..d28ccf2a909b5 --- /dev/null +++ b/manifests/t/twpayne/chezmoi/2.46.1/twpayne.chezmoi.installer.yaml @@ -0,0 +1,34 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json +PackageIdentifier: twpayne.chezmoi +PackageVersion: 2.46.1 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2024-02-11" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: chezmoi.exe + PortableCommandAlias: chezmoi + InstallerUrl: https://github.com/twpayne/chezmoi/releases/download/v2.46.1/chezmoi_2.46.1_windows_arm64.zip + InstallerSha256: 3048e9baa6f03ec9c26894d25ea792d40db60bcab58041474b44263ed2d1dd0d + UpgradeBehavior: uninstallPrevious + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: chezmoi.exe + PortableCommandAlias: chezmoi + InstallerUrl: https://github.com/twpayne/chezmoi/releases/download/v2.46.1/chezmoi_2.46.1_windows_i386.zip + InstallerSha256: 951799610eb41db7f6fa2e93158e5dae6f22b23c390a37568a10ab27bda23fdb + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: chezmoi.exe + PortableCommandAlias: chezmoi + InstallerUrl: https://github.com/twpayne/chezmoi/releases/download/v2.46.1/chezmoi_2.46.1_windows_amd64.zip + InstallerSha256: d9152e6135557b012fbe16dd4804e7c4ac1670a1feb2aa64caf18ecf8314b733 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/t/twpayne/chezmoi/2.46.1/twpayne.chezmoi.locale.en-US.yaml b/manifests/t/twpayne/chezmoi/2.46.1/twpayne.chezmoi.locale.en-US.yaml new file mode 100644 index 0000000000000..05df7445e2a0b --- /dev/null +++ b/manifests/t/twpayne/chezmoi/2.46.1/twpayne.chezmoi.locale.en-US.yaml @@ -0,0 +1,38 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json +PackageIdentifier: twpayne.chezmoi +PackageVersion: 2.46.1 +PackageLocale: en-US +Publisher: twpayne +PublisherUrl: https://github.com/twpayne +PublisherSupportUrl: https://github.com/twpayne/chezmoi/issues +Author: Tom Payne +PackageName: chezmoi +PackageUrl: https://chezmoi.io +License: MIT +LicenseUrl: https://github.com/twpayne/chezmoi/blob/master/LICENSE +Copyright: Copyright (c) 2018-2023 Tom Payne +ShortDescription: Manage your dotfiles across multiple diverse machines, securely. +Moniker: chezmoi +Tags: + - cli + - configuration + - dotbot + - dotfile + - dotfiles + - stow + - yadm +ReleaseNotes: | + ## Changelog + ### Features + * 8a20f91af feat: Add update.apply configuration variable + * 431ec39b1 feat: Set CHEZMOI_SOURCE_FILE env var for scripts + ### Fixes + * 0eb98a936 fix: Fix age/rage check in doctor command + ### Documentation updates + * baeaf6b22 docs: typo + ### Other + * deb5adfa5 chore(deps-dev): bump ruff from 0.1.9 to 0.1.15 in /assets +ReleaseNotesUrl: https://github.com/twpayne/chezmoi/releases/tag/v2.46.1 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/t/twpayne/chezmoi/2.46.1/twpayne.chezmoi.yaml b/manifests/t/twpayne/chezmoi/2.46.1/twpayne.chezmoi.yaml new file mode 100644 index 0000000000000..0ce79a51ae4fb --- /dev/null +++ b/manifests/t/twpayne/chezmoi/2.46.1/twpayne.chezmoi.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json +PackageIdentifier: twpayne.chezmoi +PackageVersion: 2.46.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/v/Viber/Viber/22.0.1.0/Viber.Viber.installer.yaml b/manifests/v/Viber/Viber/22.0.1.0/Viber.Viber.installer.yaml new file mode 100644 index 0000000000000..2c7b5b836bb45 --- /dev/null +++ b/manifests/v/Viber/Viber/22.0.1.0/Viber.Viber.installer.yaml @@ -0,0 +1,20 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: Viber.Viber +PackageVersion: 22.0.1.0 +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerType: wix + InstallerUrl: https://download.cdn.viber.com/desktop/windows/ViberSetup.msi + InstallerSha256: 72972C2300CE2A0AD9C740167E4BA33953F8A365E6C164865217634D838FC112 + ProductCode: '{2E38B293-4323-477B-87DE-734E74E8F8EE}' +- Architecture: x64 + InstallerType: burn + Scope: user + InstallerUrl: https://download.cdn.viber.com/desktop/windows/ViberSetup.exe + InstallerSha256: A0C6BB8BF1524DF61574F910C456953D05B74FE790B4D3310BD04F7CF18EF230 + ProductCode: '{b376dacb-d76a-4c5d-baea-05e9c1ef5200}' +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/v/Viber/Viber/22.0.1.0/Viber.Viber.locale.en-US.yaml b/manifests/v/Viber/Viber/22.0.1.0/Viber.Viber.locale.en-US.yaml new file mode 100644 index 0000000000000..0fb58aebaa9f5 --- /dev/null +++ b/manifests/v/Viber/Viber/22.0.1.0/Viber.Viber.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: Viber.Viber +PackageVersion: 22.0.1.0 +PackageLocale: en-US +Publisher: 2010-2023 Viber Media S.a.r.l +PublisherUrl: https://www.viber.com/en/ +PrivacyUrl: https://www.viber.com/en/terms/viber-privacy-policy/ +Author: Viber Media Inc. +PackageName: Viber +PackageUrl: https://www.viber.com/en/ +License: Proprietary +LicenseUrl: https://www.viber.com/en/terms/viber-terms-use/ +Copyright: Copyright Viber Media Inc. +CopyrightUrl: https://www.viber.com/en/terms/viber-terms-use/ +ShortDescription: Viber is a mobile application that lets you make free phone calls and send text messages to anyone who also has the application installed. +Description: Viber is a mobile application that lets you make free phone calls and send text messages to anyone who also has the application installed. You can call or text any Viber user, anywhere in the world, for free. +Moniker: viber +Tags: +- chat +- group-chat +- messaging +- phone +- text-messaging +- voice +- voice-chat +- voip +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/v/Viber/Viber/22.0.1.0/Viber.Viber.yaml b/manifests/v/Viber/Viber/22.0.1.0/Viber.Viber.yaml new file mode 100644 index 0000000000000..6f2eddbff34e8 --- /dev/null +++ b/manifests/v/Viber/Viber/22.0.1.0/Viber.Viber.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2024/Feb/10 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: Viber.Viber +PackageVersion: 22.0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/w/WHONET/2023/23.14.1/WHONET.2023.installer.yaml b/manifests/w/WHONET/2023/23.14.1/WHONET.2023.installer.yaml index e407aa6c373b7..25de239653478 100644 --- a/manifests/w/WHONET/2023/23.14.1/WHONET.2023.installer.yaml +++ b/manifests/w/WHONET/2023/23.14.1/WHONET.2023.installer.yaml @@ -3,12 +3,21 @@ PackageIdentifier: WHONET.2023 PackageVersion: 23.14.1 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 InstallerType: burn -UpgradeBehavior: install -ElevationRequirement: elevatesSelf +Scope: machine InstallerSwitches: Silent: /quiet SilentWithProgress: /passive +UpgradeBehavior: install +InstallModes: + - interactive + - silent + - silentWithProgress +ElevationRequirement: elevatesSelf +ReleaseDate: 2023-02-01 Installers: - Architecture: x86 InstallerUrl: https://whonet.org/WHONET2023-Setup-x86.exe diff --git a/manifests/w/WHONET/2023/23.14.1/WHONET.2023.locale.en-US.yaml b/manifests/w/WHONET/2023/23.14.1/WHONET.2023.locale.en-US.yaml index a4d14f32e468d..68c45e6f4abc5 100644 --- a/manifests/w/WHONET/2023/23.14.1/WHONET.2023.locale.en-US.yaml +++ b/manifests/w/WHONET/2023/23.14.1/WHONET.2023.locale.en-US.yaml @@ -17,9 +17,7 @@ Description: |- WHONET is a free desktop Windows application for the management and analysis of microbiology laboratory data with a particular focus on antimicrobial resistance surveillance developed and supported by the WHO Collaborating Centre for Surveillance of Antimicrobial Resistance at the Brigham and Women's Hospital in Boston, Massachusetts. WHONET, available in 44 languages, supports local, national, regional, and global surveillance efforts in over 2,300 hospital, public health, animal health, and food laboratories in over 130 countries worldwide. WHONET 2023 is a modernized and expanded version of WHONET 5.6. This version supports 44 languages and includes new features for exporting to the WHO GLASS data structure. - It includes support for CLSI 2023 M100, M45, M60, M61, as well as EUCAST 2023 bacterial breakpoints. - Also included are the most recent CLSI VET01, VET03/04, and VET06 breakpoints. -Moniker: WHONET + It includes support for CLSI 2023 M100, M45, M60, M61, as well as EUCAST 2023 bacterial breakpoints. Also included are the most recent CLSI VET01, VET03/04, and VET06 breakpoints. Tags: - AMR - Antibiotics diff --git a/manifests/w/WatchGuardTechnologies/WatchGuardSystemManager/12.10.2/WatchGuardTechnologies.WatchGuardSystemManager.installer.yaml b/manifests/w/WatchGuardTechnologies/WatchGuardSystemManager/12.10.2/WatchGuardTechnologies.WatchGuardSystemManager.installer.yaml new file mode 100644 index 0000000000000..b60c6ca096ffc --- /dev/null +++ b/manifests/w/WatchGuardTechnologies/WatchGuardSystemManager/12.10.2/WatchGuardTechnologies.WatchGuardSystemManager.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.installer.1.6.0.json + +PackageIdentifier: WatchGuardTechnologies.WatchGuardSystemManager +PackageVersion: 12.10.2 +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x86 + InstallerUrl: https://cdn.watchguard.com/SoftwareCenter/Files/WSM/12_10_2/WSM_12_10_2.exe + InstallerSha256: 519DCF570908191563C121995D487A5BA258F35A275DC84EA5C7F78FC35D8A64 + ProductCode: WatchGuard System Manager 12.8_is1 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/w/WatchGuardTechnologies/WatchGuardSystemManager/12.10.2/WatchGuardTechnologies.WatchGuardSystemManager.locale.en-US.yaml b/manifests/w/WatchGuardTechnologies/WatchGuardSystemManager/12.10.2/WatchGuardTechnologies.WatchGuardSystemManager.locale.en-US.yaml new file mode 100644 index 0000000000000..95260fa15cca3 --- /dev/null +++ b/manifests/w/WatchGuardTechnologies/WatchGuardSystemManager/12.10.2/WatchGuardTechnologies.WatchGuardSystemManager.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.defaultLocale.1.6.0.json + +PackageIdentifier: WatchGuardTechnologies.WatchGuardSystemManager +PackageVersion: 12.10.2 +PackageLocale: en-US +Publisher: WatchGuard Technologies, Inc. +PublisherUrl: https://www.watchguard.com/ +PublisherSupportUrl: https://www.watchguard.com/wgrd-support/overview +PrivacyUrl: https://www.watchguard.com/wgrd-about/privacy-policy +# Author: +PackageName: WatchGuard System Manager +PackageUrl: https://www.watchguard.com/wgrd-products/network-security/management-wsm +License: Proprietary +# LicenseUrl: +Copyright: (c) 2008-2018 WatchGuard Technologies, Inc. +# CopyrightUrl: +ShortDescription: Platform for managing all Firebox appliances on a network +Description: WatchGuard System Manager (WSM) is an out-of-the-box platform that enables you to centrally manage all the Firebox appliances in your network using one easy-to-use console. +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/w/WatchGuardTechnologies/WatchGuardSystemManager/12.10.2/WatchGuardTechnologies.WatchGuardSystemManager.yaml b/manifests/w/WatchGuardTechnologies/WatchGuardSystemManager/12.10.2/WatchGuardTechnologies.WatchGuardSystemManager.yaml new file mode 100644 index 0000000000000..8706c68866e32 --- /dev/null +++ b/manifests/w/WatchGuardTechnologies/WatchGuardSystemManager/12.10.2/WatchGuardTechnologies.WatchGuardSystemManager.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.version.1.6.0.json + +PackageIdentifier: WatchGuardTechnologies.WatchGuardSystemManager +PackageVersion: 12.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/w/WavesAudio/WavesCentral/14.5.2.301406/WavesAudio.WavesCentral.installer.yaml b/manifests/w/WavesAudio/WavesCentral/14.5.2.301406/WavesAudio.WavesCentral.installer.yaml new file mode 100644 index 0000000000000..e7a059c8f42ac --- /dev/null +++ b/manifests/w/WavesAudio/WavesCentral/14.5.2.301406/WavesAudio.WavesCentral.installer.yaml @@ -0,0 +1,12 @@ +# Automatically updated by the winget bot at 2024/Feb/12 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: WavesAudio.WavesCentral +PackageVersion: 14.5.2.301406 +Installers: +- Architecture: x64 + InstallerType: nullsoft + InstallerUrl: https://cf-installers.waves.com/WavesCentral/Install_Waves_Central.exe + InstallerSha256: D9206B2A0452B9F460022B16B6E0ACD7033540B1E903728A08F7F90791DD4A23 +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/w/WavesAudio/WavesCentral/14.5.2.301406/WavesAudio.WavesCentral.locale.en-US.yaml b/manifests/w/WavesAudio/WavesCentral/14.5.2.301406/WavesAudio.WavesCentral.locale.en-US.yaml new file mode 100644 index 0000000000000..5e37c67f8b85c --- /dev/null +++ b/manifests/w/WavesAudio/WavesCentral/14.5.2.301406/WavesAudio.WavesCentral.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Automatically updated by the winget bot at 2024/Feb/12 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: WavesAudio.WavesCentral +PackageVersion: 14.5.2.301406 +PackageLocale: en-US +Publisher: Waves Audio Ltd +PackageName: Waves Central +License: Copyright © 2021 Waves Audio Ltd +ShortDescription: Use Waves Central to install and activate the latest version of Waves products. +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/b/Bosyun/BoardMix/CN/1.5.2/Bosyun.BoardMix.CN.yaml b/manifests/w/WavesAudio/WavesCentral/14.5.2.301406/WavesAudio.WavesCentral.yaml similarity index 53% rename from manifests/b/Bosyun/BoardMix/CN/1.5.2/Bosyun.BoardMix.CN.yaml rename to manifests/w/WavesAudio/WavesCentral/14.5.2.301406/WavesAudio.WavesCentral.yaml index 3e624ffe4a58d..4d3d9b8f4dc99 100644 --- a/manifests/b/Bosyun/BoardMix/CN/1.5.2/Bosyun.BoardMix.CN.yaml +++ b/manifests/w/WavesAudio/WavesCentral/14.5.2.301406/WavesAudio.WavesCentral.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.2.11 $debug=QUSU.CRLF.7-4-0.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: Bosyun.BoardMix.CN -PackageVersion: 1.5.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 +# Automatically updated by the winget bot at 2024/Feb/12 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: WavesAudio.WavesCentral +PackageVersion: 14.5.2.301406 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/w/WowUp/CF/2.11.0/WowUp.CF.installer.yaml b/manifests/w/WowUp/CF/2.11.0/WowUp.CF.installer.yaml new file mode 100644 index 0000000000000..6bba743793635 --- /dev/null +++ b/manifests/w/WowUp/CF/2.11.0/WowUp.CF.installer.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.installer.1.6.0.json + +PackageIdentifier: WowUp.CF +PackageVersion: 2.11.0 +InstallerType: nullsoft +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/WowUp/WowUp.CF/releases/download/v2.11.0/WowUp-CF-Setup-2.11.0.exe + InstallerSha256: FEC138D20C2693B339C1B3E6B0AA1CA95AD98A419614734B46E94F35C204136B +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/w/WowUp/CF/2.11.0/WowUp.CF.locale.en-US.yaml b/manifests/w/WowUp/CF/2.11.0/WowUp.CF.locale.en-US.yaml new file mode 100644 index 0000000000000..91f365b265613 --- /dev/null +++ b/manifests/w/WowUp/CF/2.11.0/WowUp.CF.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.defaultLocale.1.6.0.json + +PackageIdentifier: WowUp.CF +PackageVersion: 2.11.0 +PackageLocale: en-US +Publisher: WowUp LLC +PublisherUrl: https://wowup.io/ +PublisherSupportUrl: https://wowup.io/guide/wowup/overview +PrivacyUrl: https://wowup.io/privacy +# Author: +PackageName: WowUp with CurseForge +PackageUrl: https://github.com/WowUp/WowUp.CF +License: GNU General Public License v3.0 +LicenseUrl: https://github.com/WowUp/WowUp.CF/blob/main/LICENSE +Copyright: Copyright © 2023 WowUp LLC +# CopyrightUrl: +ShortDescription: World of Warcraft addon updater with Curseforge Support +Description: WowUp is the community centered World of Warcraft addon updater. We attempt to bring the addon community together in an easy to use updater application. We have an ever growing list of supported features. +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/w/WowUp/CF/2.11.0/WowUp.CF.yaml b/manifests/w/WowUp/CF/2.11.0/WowUp.CF.yaml new file mode 100644 index 0000000000000..29ebe7005494f --- /dev/null +++ b/manifests/w/WowUp/CF/2.11.0/WowUp.CF.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.3.3 $debug=QUSU.CRLF.5-1-22621-2506.Win32NT +# yaml-language-server: $schema=https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v1.6.0/manifest.version.1.6.0.json + +PackageIdentifier: WowUp.CF +PackageVersion: 2.11.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/y/yt-dlp/yt-dlp/nightly/2024.02.09.232659/yt-dlp.yt-dlp.nightly.installer.yaml b/manifests/y/yt-dlp/yt-dlp/nightly/2024.02.09.232659/yt-dlp.yt-dlp.nightly.installer.yaml new file mode 100644 index 0000000000000..24a4c3eed4fff --- /dev/null +++ b/manifests/y/yt-dlp/yt-dlp/nightly/2024.02.09.232659/yt-dlp.yt-dlp.nightly.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json + +PackageIdentifier: yt-dlp.yt-dlp.nightly +PackageVersion: 2024.02.09.232659 +InstallerLocale: en-US +InstallerType: exe +Commands: +- yt-dlp +Dependencies: + PackageDependencies: + - PackageIdentifier: Gyan.FFmpeg +ReleaseDate: 2024-02-09 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/download/2024.02.09.232659/yt-dlp_x86.exe + InstallerSha256: B00F73605A94BDDA50771DFB57310B311EFE69F0B94B1DD1F7C72EFEE9B81F91 +- Architecture: x64 + InstallerUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/download/2024.02.09.232659/yt-dlp.exe + InstallerSha256: 8881AB1A8475F105179ED1DA0FC90FCAC99CE250F98D15F78404F29DFBAFE03E +ManifestType: installer +ManifestVersion: 1.5.0 diff --git a/manifests/y/yt-dlp/yt-dlp/nightly/2024.02.09.232659/yt-dlp.yt-dlp.nightly.locale.en-US.yaml b/manifests/y/yt-dlp/yt-dlp/nightly/2024.02.09.232659/yt-dlp.yt-dlp.nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..5746aabd481a9 --- /dev/null +++ b/manifests/y/yt-dlp/yt-dlp/nightly/2024.02.09.232659/yt-dlp.yt-dlp.nightly.locale.en-US.yaml @@ -0,0 +1,130 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json + +PackageIdentifier: yt-dlp.yt-dlp.nightly +PackageVersion: 2024.02.09.232659 +PackageLocale: en-US +Publisher: yt-dlp +PublisherUrl: https://github.com/yt-dlp +PublisherSupportUrl: https://github.com/yt-dlp/yt-dlp/issues +PackageName: yt-dlp-nightly +PackageUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds +License: The Unlicense +LicenseUrl: https://github.com/yt-dlp/yt-dlp/blob/master/LICENSE +Copyright: Copyright (c) pukkandan.ytdlp@gmail.com | UNLICENSE +ShortDescription: yt-dlp nightly +Description: yt-dlp nightly builds +Moniker: yt-dlp-nightly +Tags: +- development +- nightly +- open-source +- yt-dlp +ReleaseNotes: |- + Generated from: Installation instructionsInstallation DocumentationDocumentation DonateDonate DiscordDiscordA description of the various files are in the README + + Core changes + - Add --compat-options 2023 (#9084) by Grub4K + - Don't select storyboard formats as fallback by bashonly + - cookies- Fix --cookies-from-browser for snap Firefox (#9016) by Grub4K + - Fix --cookies-from-browser with macOS Firefox profiles (#8909) by RalphORama + - Improve error message for Windows --cookies-from-browser chrome issue (#9080) by Grub4K + + - utils: traverse_obj: Support xml.etree.ElementTree.Element (#8911) by Grub4K + - webvtt: Don't parse single fragment files (#9034) by seproDev + Extractor changes + - abematv- Fix extraction with cache (#8895) by sefidel + - Support login for playlists (#8901) by sefidel + + - adn- Add support for German site (#8708) by infanf + - Improve auth error handling (#9068) by infanf + + - aenetworks: Rating should be optional for AP extraction (#9005) by agibson-fl + - amadeustv: Add extractor (#8744) by ArnauvGilotra + - ard- mediathek- Revert to using old id (#8916) by Grub4K + - Support cookies to verify age (#9037) by StefanLobbenmeier + + + - art19: Add extractors (#9099) by seproDev + - artetv: Separate closed captions (#8231) by Nicals, seproDev + - asobichannel: Add extractors (#8700) by Snack-X + - bigo: Fix JSON extraction (#8893) by DmitryScaletta + - bilibili- Add referer header and fix metadata extraction (#8832) by SirElderling + - Support --no-playlist (#9139) by c-basalt + + - bilibilisearch: Set cookie to fix extraction (#9119) by c-basalt + - biliintl: Fix and improve subtitles extraction (#7077) by dirkf, HobbyistDev, itachi-19, seproDev + - boosty: Add extractor (#9144) by un-def + - ccma: Extract 1080p DASH formats (#9130) by seproDev + - chzzk: Add extractors (#8887) by DmitryScaletta + - cineverse: Detect when login required (#9081) by garret1317 + - cloudflarestream: Extract subtitles (#9007) by Bibhav48 + - cloudycdn, lsm: Add extractors (#8643) by Caesim404 + - elementorembed: Add extractor (#8948) by pompos02, seproDev + - eporner: Extract AV1 formats (#9028) by michal-repo + - errjupiter: Add extractor (#8549) by glensc + - facebook- Add new ID format (#3824) by kclauhk, Wikidepia + - Improve thumbnail extraction (#9060) by kclauhk + - Set format HTTP chunk size (#9058) by bashonly, kclauhk + - Support events (#9055) by kclauhk + - Support permalink URLs (#9061) by kclauhk + - ads: Add extractor (#8870) by kclauhk + + - floatplane: Improve metadata extraction (#8934) by chtk + - getcourseru: Add extractors (#8873) by divStar, seproDev + - gofile: Fix extraction (#9074) by jazz1611 + - googledrive: Fix source file extraction (#8990) by jazz1611 + - gopro: Fix extractor (#9019) by stilor + - ilpost: Add extractor (#9001) by CapacitorSet + - jiosaavnsong: Support more bitrates (#8834) by alien-developers, bashonly + - kukululive: Add extractor (#8877) by DmitryScaletta + - magentamusik: Add extractor (#7790) by pwaldhauer, seproDev + - medaltv: Fix extraction (#9098) by Danish-H + - mlbarticle: Fix extractor (#9021) by HobbyistDev + - motherless: Support uploader playlists (#8994) by dasidiot + - mx3: Add extractors (#8736) by martinxyz + - naver: Fix extractors (#8883) by seproDev + - newgrounds: user: Fix extractor (#9046) by u-spec-png + - nfb: Add support for onf.ca and series (#8997) by bashonly, rrgomes + - nhkradirulive: Make metadata extraction non-fatal (#8956) by garret1317 + - ninaprotocol: Add extractor (#8946) by RaduManole, seproDev + - ninenews: Add extractor (#8840) by SirElderling + - nuum: Add extractors (#8868) by DmitryScaletta, seproDev + - nytimes- Extract timestamp (#9142) by SirElderling + - Overhaul extractors (#9075) by SirElderling + + - orf: on: Add extractor (#9113) by HobbyistDev + - patreon: Fix embedded HLS extraction (#8993) by johnvictorfs + - peertube: Update instances (#9070) by Chocobozzz + - piapro: Improve _VALID_URL (#8999) by FinnRG + - playsuisse: Add login support (#9077) by chkuendig + - pr0gramm: Enable POL filter and provide tags without login (#9051) by Grub4K + - prankcastpost: Add extractor (#8933) by columndeeply + - radiko: Extract more metadata (#9115) by YoshichikaAAA + - redcdnlivx, sejm: Add extractors (#8676) by selfisekai + - redtube- Fix formats extraction (#9076) by jazz1611 + - Support redtube.com.br URLs (#9103) by jazz1611 + + - rinsefmartistplaylist: Add extractor (#8794) by SirElderling + - rule34video- Extract more metadata (#7416) by gmes78 + - Fix _VALID_URL (#9044) by gmes78 + + - rumblechannel: Fix extractor (#9092) by Pranaxcau, vista-narvas + - trtworld: Add extractor (#8701) by ufukk + - tvp: Support livestreams (#8860) by selfisekai + - twitch: Fix m3u8 extraction (#8960) by DmitryScaletta + - txxx: Extract thumbnails (#9063) by shmohawk + - vbox7: Fix extractor (#9100) by seproDev + - viewlift: Add support for chorki.com (#9095) by NurTasin + - vimeo: Fix API headers (#9125) by bashonly + - viously: Add extractor (#8927) by nbr23, seproDev + - zetland: Add extractor (#9116) by HobbyistDev + Networking changes + - Remove _CompatHTTPError (#8871) by coletdjnz + - Request Handler: requests: Apply remove_dot_segments to absolute redirect locations by coletdjnz + Misc. changes + - cleanup: Fix typo in README.md (#8894) by antonkesy + - test: Skip source address tests if the address cannot be bound to (#8900) by coletdjnz +ReleaseNotesUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/tag/2024.02.09.232659 +ManifestType: defaultLocale +ManifestVersion: 1.5.0 diff --git a/manifests/y/yt-dlp/yt-dlp/nightly/2024.02.09.232659/yt-dlp.yt-dlp.nightly.yaml b/manifests/y/yt-dlp/yt-dlp/nightly/2024.02.09.232659/yt-dlp.yt-dlp.nightly.yaml new file mode 100644 index 0000000000000..05d58f008c135 --- /dev/null +++ b/manifests/y/yt-dlp/yt-dlp/nightly/2024.02.09.232659/yt-dlp.yt-dlp.nightly.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.0.4 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json + +PackageIdentifier: yt-dlp.yt-dlp.nightly +PackageVersion: 2024.02.09.232659 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.5.0 diff --git a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.installer.yaml b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.installer.yaml index 20d25f8b4bb3f..3ae2e92257567 100644 --- a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.installer.yaml +++ b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json PackageIdentifier: Zoom.ZoomOutlookPlugin diff --git a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.en-US.yaml b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.en-US.yaml index c6bd47a2bc141..e75078b2e2fe5 100644 --- a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.en-US.yaml +++ b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json PackageIdentifier: Zoom.ZoomOutlookPlugin diff --git a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.zh-CN.yaml b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.zh-CN.yaml index c9ac222c9c5e1..572f577358e2b 100644 --- a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.zh-CN.yaml +++ b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.5.0.schema.json PackageIdentifier: Zoom.ZoomOutlookPlugin diff --git a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.yaml b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.yaml index 1e0dc0694722c..95f4435176b6c 100644 --- a/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.yaml +++ b/manifests/z/Zoom/ZoomOutlookPlugin/5.17.0/Zoom.ZoomOutlookPlugin.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2024/Feb/09 +# Automatically updated by the winget bot at 2024/Feb/10 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json PackageIdentifier: Zoom.ZoomOutlookPlugin