Compare commits
8 Commits
user/ashpa
...
rockstar
Author | SHA1 | Date | |
---|---|---|---|
|
1bef439fd9 | ||
|
77c4138f72 | ||
|
b9c653ab72 | ||
|
fec24a7e1f | ||
|
aec5e69979 | ||
|
b8ae0bbff4 | ||
|
1a9c01b361 | ||
|
f048a611dd |
25
.github/ISSUE_TEMPLATE/Manifest_Request.md
vendored
25
.github/ISSUE_TEMPLATE/Manifest_Request.md
vendored
@@ -33,18 +33,15 @@ Fill out as much of the manifest as you can:
|
||||
|
||||
|
||||
```YAML
|
||||
PackageIdentifier: # publisher.package format (example: "Microsoft.WindowsTerminal")
|
||||
PackageVersion: # version number format x.y.z.a (example: "1.6.10571.0")
|
||||
PackageLocale: # meta-data locale (example: "en-US")
|
||||
Publisher: # publisher name (example: "Microsoft Corporation")
|
||||
PackageName: # package name (example: "Windows Terminal")
|
||||
License: # package license (example: "MIT")
|
||||
ShortDescription: # package description (example: "The new Windows Terminal")
|
||||
Installers:
|
||||
- Architecture: # installer architecture (example: "x64")
|
||||
InstallerType: # installer type (example: "msix")
|
||||
InstallerUrl: # installer URL (should be https://)
|
||||
InstallerSha256: # SHA256 hash calculated from installer
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
||||
Id: string # publisher.package format
|
||||
Publisher: string # the name of the publisher
|
||||
Name: string # the name of the application
|
||||
Version: string # version numbering format
|
||||
License: string # the open source license or copyright
|
||||
InstallerType: string # enumeration of supported installer types (exe, msi, msix, inno, wix, nullsoft, appx)
|
||||
Installers:
|
||||
- Arch: string # enumeration of supported architectures
|
||||
Url: string # path to download installation file
|
||||
Sha256: string # SHA256 calculated from installer
|
||||
# ManifestVersion: 0.1.0
|
||||
```
|
||||
|
7
.github/PULL_REQUEST_TEMPLATE.md
vendored
7
.github/PULL_REQUEST_TEMPLATE.md
vendored
@@ -1,9 +1,6 @@
|
||||
- [ ] Have you signed the [Contributor License Agreement](https://cla.opensource.microsoft.com/microsoft/winget-pkgs)?
|
||||
- [ ] Have you checked that there aren't other open [pull requests](https://github.com/microsoft/winget-pkgs/pulls) for the same manifest update/change?
|
||||
- [ ] Have you validated your manifest locally with `winget validate --manifest <path>`?
|
||||
- [ ] Have you tested your manifest locally with `winget install --manifest <path>`?
|
||||
- [ ] Does your manifest conform to the [1.0 schema](https://github.com/microsoft/winget-cli/blob/master/doc/ManifestSpecv1.0.md)?
|
||||
|
||||
Note: `<path>` is the name of the directory containing the manifest you're submitting.
|
||||
- [ ] Have you validated your manifest locally with `winget validate <manifest>`, where `<manifest>` is the name of the manifest you're submitting?
|
||||
- [ ] Have you tested your manifest locally with `winget install -m <manifest>`?
|
||||
|
||||
-----
|
||||
|
@@ -43,7 +43,6 @@ jobs:
|
||||
env:
|
||||
HOST_KEY: $(AzureFunctionHostKey)
|
||||
SIGN_ENDPOINT: $(AzFuncSignEndpoint)
|
||||
CLEANUP_ENDPOINT: $(AzFuncPublishCleanupEndpoint)
|
||||
|
||||
- task: CmdLine@2
|
||||
displayName: 'Validate Commits'
|
||||
@@ -52,13 +51,10 @@ jobs:
|
||||
failOnStderr: true
|
||||
condition: succeeded()
|
||||
env:
|
||||
ValidationConnectionString: $(ValidationStorageAccountConnectionString)
|
||||
ExecutionEnvironment: $(ExecutionEnvironment)
|
||||
AzureWebJobsStorage: $(ValidationStorageAccountConnectionString)
|
||||
CacheConnectionString: $(CacheStorageAccountConnectionString)
|
||||
PackagePublisher: $(PackagePublisher)
|
||||
DIApplicationInsightKey: $(DIApplicationInsightKey)
|
||||
WinGet:AppConfig:Primary: $(AppConfigPrimary)
|
||||
WinGet:AppConfig:Secondary: $(AppConfigSecondary)
|
||||
|
||||
# Agentless phase. Depends on previous job.
|
||||
- job: 'SignPackage'
|
||||
@@ -81,7 +77,6 @@ jobs:
|
||||
body: |
|
||||
{
|
||||
"operationId": "$(Build.BuildNumber)",
|
||||
"BuildId": "$(Build.BuildId)",
|
||||
"PlanUrl": "$(system.CollectionUri)",
|
||||
"HubName": "$(system.HostType)",
|
||||
"pipelineType": "CommitPipeline",
|
||||
@@ -124,45 +119,6 @@ jobs:
|
||||
failOnStderr: true
|
||||
condition: succeeded()
|
||||
env:
|
||||
ValidationConnectionString: $(ValidationStorageAccountConnectionString)
|
||||
ExecutionEnvironment: $(ExecutionEnvironment)
|
||||
AzureWebJobsStorage: $(ValidationStorageAccountConnectionString)
|
||||
CacheConnectionString: $(CacheStorageAccountConnectionString)
|
||||
DIApplicationInsightKey: $(DIApplicationInsightKey)
|
||||
WinGet:AppConfig:Primary: $(AppConfigPrimary)
|
||||
WinGet:AppConfig:Secondary: $(AppConfigSecondary)
|
||||
|
||||
# Agentless phase. Depends on previous job.
|
||||
- job: 'Cleanup'
|
||||
pool: server
|
||||
timeoutInMinutes: 1500
|
||||
displayName: 'Clean up'
|
||||
dependsOn:
|
||||
- 'CommitProcessing'
|
||||
- 'Publish'
|
||||
variables:
|
||||
HostKeySecret: $[ dependencies.CommitProcessing.outputs['wingetsetup.hostkey']]
|
||||
CleanEndpointSecret: $[ dependencies.CommitProcessing.outputs['wingetsetup.cleanupEndpoint']]
|
||||
steps:
|
||||
|
||||
# Close issues.
|
||||
- task: AzureFunction@1
|
||||
displayName: 'Cleanup Issues'
|
||||
inputs:
|
||||
function: '$(CleanEndpointSecret)'
|
||||
key: '$(HostKeySecret)'
|
||||
body: |
|
||||
{
|
||||
"operationId": "$(Build.BuildNumber)",
|
||||
"BuildId": "$(Build.BuildId)",
|
||||
"PlanUrl": "$(system.CollectionUri)",
|
||||
"HubName": "$(system.HostType)",
|
||||
"pipelineType": "CommitPipeline",
|
||||
"ProjectId": "$(system.TeamProjectId)",
|
||||
"PlanId": "$(system.PlanId)",
|
||||
"JobId": "$(system.JobId)",
|
||||
"TimelineId": "$(system.TimelineId)",
|
||||
"TaskInstanceId": "$(system.TaskInstanceId)",
|
||||
"AuthToken": "$(system.AccessToken)",
|
||||
"BuildRepositoryId": "$(build.repository.id)"
|
||||
}
|
||||
waitForCompletion: "true"
|
||||
|
@@ -49,13 +49,10 @@ jobs:
|
||||
failOnStderr: true
|
||||
condition: succeeded()
|
||||
env:
|
||||
ValidationConnectionString: $(ValidationStorageAccountConnectionString)
|
||||
ExecutionEnvironment: $(ExecutionEnvironment)
|
||||
AzureWebJobsStorage: $(ValidationStorageAccountConnectionString)
|
||||
PackagePublisher: $(PackagePublisher)
|
||||
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
|
||||
DIApplicationInsightKey: $(DIApplicationInsightKey)
|
||||
WinGet:AppConfig:Primary: $(AppConfigPrimary)
|
||||
WinGet:AppConfig:Secondary: $(AppConfigSecondary)
|
||||
|
||||
# Agentless phase. Depends on previous job.
|
||||
- job: 'SignPackage'
|
||||
@@ -78,7 +75,6 @@ jobs:
|
||||
body: |
|
||||
{
|
||||
"operationId": "$(Build.BuildNumber)",
|
||||
"BuildId": "$(Build.BuildId)",
|
||||
"PlanUrl": "$(system.CollectionUri)",
|
||||
"HubName": "$(system.HostType)",
|
||||
"pipelineType": "RebuildPipeline",
|
||||
@@ -94,7 +90,6 @@ jobs:
|
||||
# Agent phase. Depends on previous job.
|
||||
- job: 'Publish'
|
||||
displayName: 'Publish'
|
||||
timeoutInMinutes: 300
|
||||
pool:
|
||||
vmImage: 'windows-latest'
|
||||
variables:
|
||||
@@ -122,16 +117,13 @@ jobs:
|
||||
failOnStderr: true
|
||||
condition: succeeded()
|
||||
env:
|
||||
ValidationConnectionString: $(ValidationStorageAccountConnectionString)
|
||||
ExecutionEnvironment: $(ExecutionEnvironment)
|
||||
AzureWebJobsStorage: $(ValidationStorageAccountConnectionString)
|
||||
CacheConnectionString: $(CacheStorageAccountConnectionString)
|
||||
DIApplicationInsightKey: $(DIApplicationInsightKey)
|
||||
AzureServicesAuthConnectionString: $(AzureServicesAuthConnectionString)
|
||||
WinGetSubscriptionId: $(WinGetSubscriptionId)
|
||||
CdnProfileName: $(CdnProfileName)
|
||||
CdnEndpointName: $(CdnEndpointName)
|
||||
WinGet:AppConfig:Primary: $(AppConfigPrimary)
|
||||
WinGet:AppConfig:Secondary: $(AppConfigSecondary)
|
||||
|
||||
# Agent phase. Depends on previous job.
|
||||
- job: 'Cleanup'
|
||||
@@ -167,8 +159,6 @@ jobs:
|
||||
failOnStderr: true
|
||||
condition: succeeded()
|
||||
env:
|
||||
ValidationConnectionString: $(ValidationStorageAccountConnectionString)
|
||||
AzureWebJobsStorage: $(ValidationStorageAccountConnectionString)
|
||||
SYSTEM_ACCESSTOKEN: $(System.AccessToken)
|
||||
DIApplicationInsightKey: $(DIApplicationInsightKey)
|
||||
WinGet:AppConfig:Primary: $(AppConfigPrimary)
|
||||
WinGet:AppConfig:Secondary: $(AppConfigSecondary)
|
||||
|
@@ -36,10 +36,7 @@ jobs:
|
||||
env:
|
||||
HOST_KEY: $(AzureFunctionHostKey)
|
||||
SMART_SCREEN_ENDPOINT: $(AzFuncSmartScreenEndpoint)
|
||||
DOMAIN_URLS_VALIDATION_ENDPOINT: $(AzFuncDomainUrlValEndpoint)
|
||||
MANIFEST_POLICY_ENDPOINT: $(AzFuncManifestPolicyEndpoint)
|
||||
SCAN_ENDPOINT: $(AzFuncScanEndpoint)
|
||||
INSTALLATION_ENDPOINT: $(AzFuncInstallationVerificationEndpoint)
|
||||
LABEL_ENDPOINT: $(AzFuncSetLabelOnPullRequestEndpoint)
|
||||
CLEANUP_ENDPOINT: $(AzFuncCleanupEndpoint)
|
||||
LABEL_KEY: $(AzureFunctionLabelKey)
|
||||
@@ -52,11 +49,8 @@ jobs:
|
||||
failOnStderr: true
|
||||
condition: succeeded()
|
||||
env:
|
||||
ValidationConnectionString: $(ValidationStorageAccountConnectionString)
|
||||
ExecutionEnvironment: $(ExecutionEnvironment)
|
||||
AzureWebJobsStorage: $(ValidationStorageAccountConnectionString)
|
||||
DIApplicationInsightKey: $(DIApplicationInsightKey)
|
||||
WinGet:AppConfig:Primary: $(AppConfigPrimary)
|
||||
WinGet:AppConfig:Secondary: $(AppConfigSecondary)
|
||||
|
||||
# Validates manifest integrity.
|
||||
- task: CmdLine@2
|
||||
@@ -66,10 +60,8 @@ jobs:
|
||||
failOnStderr: true
|
||||
condition: succeeded()
|
||||
env:
|
||||
ValidationConnectionString: $(ValidationStorageAccountConnectionString)
|
||||
AzureWebJobsStorage: $(ValidationStorageAccountConnectionString)
|
||||
DIApplicationInsightKey: $(DIApplicationInsightKey)
|
||||
WinGet:AppConfig:Primary: $(AppConfigPrimary)
|
||||
WinGet:AppConfig:Secondary: $(AppConfigSecondary)
|
||||
|
||||
# Agentless phase. Depends on previous job.
|
||||
- job: 'ContentValidation'
|
||||
@@ -81,20 +73,18 @@ jobs:
|
||||
variables:
|
||||
HostKeySecret: $[ dependencies.FileValidation.outputs['wingetsetup.hostkey']]
|
||||
SmartScreenEndpointSecret: $[ dependencies.FileValidation.outputs['wingetsetup.smartScreenEndpoint']]
|
||||
DomainUrlValidationEndpointSecret: $[ dependencies.FileValidation.outputs['wingetsetup.domainUrlValidationEndpoint']]
|
||||
ManiestPolicyEndpointSecret: $[ dependencies.FileValidation.outputs['wingetsetup.manifestPolicyEndpoint']]
|
||||
ScanEndpointSecret: $[ dependencies.FileValidation.outputs['wingetsetup.scanEndpoint']]
|
||||
steps:
|
||||
|
||||
# Scans all the urls from manifest contents.
|
||||
- task: AzureFunction@1
|
||||
displayName: 'URLs Validation'
|
||||
displayName: 'Validation URLs in manifest files'
|
||||
inputs:
|
||||
function: '$(SmartScreenEndpointSecret)'
|
||||
key: '$(HostKeySecret)'
|
||||
body: |
|
||||
{
|
||||
"operationId": "$(Build.BuildNumber)",
|
||||
"BuildId": "$(Build.BuildId)",
|
||||
"PlanUrl": "$(system.CollectionUri)",
|
||||
"HubName": "$(system.HostType)",
|
||||
"ProjectId": "$(system.TeamProjectId)",
|
||||
@@ -106,62 +96,6 @@ jobs:
|
||||
}
|
||||
waitForCompletion: "true"
|
||||
|
||||
# Domain url validations.
|
||||
- task: AzureFunction@1
|
||||
displayName: 'URL Domain validation'
|
||||
inputs:
|
||||
function: '$(DomainUrlValidationEndpointSecret)'
|
||||
key: '$(HostKeySecret)'
|
||||
body: |
|
||||
{
|
||||
"operationId": "$(Build.BuildNumber)",
|
||||
"BuildId": "$(Build.BuildId)",
|
||||
"PlanUrl": "$(system.CollectionUri)",
|
||||
"HubName": "$(system.HostType)",
|
||||
"ProjectId": "$(system.TeamProjectId)",
|
||||
"PlanId": "$(system.PlanId)",
|
||||
"JobId": "$(system.JobId)",
|
||||
"TimelineId": "$(system.TimelineId)",
|
||||
"TaskInstanceId": "$(system.TaskInstanceId)",
|
||||
"AuthToken": "$(system.AccessToken)"
|
||||
}
|
||||
waitForCompletion: "true"
|
||||
|
||||
# Manifest policy checks.
|
||||
- task: AzureFunction@1
|
||||
displayName: 'Manifest Policy Validation'
|
||||
inputs:
|
||||
function: '$(ManiestPolicyEndpointSecret)'
|
||||
key: '$(HostKeySecret)'
|
||||
body: |
|
||||
{
|
||||
"operationId": "$(Build.BuildNumber)",
|
||||
"BuildId": "$(Build.BuildId)",
|
||||
"PlanUrl": "$(system.CollectionUri)",
|
||||
"HubName": "$(system.HostType)",
|
||||
"ProjectId": "$(system.TeamProjectId)",
|
||||
"PlanId": "$(system.PlanId)",
|
||||
"JobId": "$(system.JobId)",
|
||||
"TimelineId": "$(system.TimelineId)",
|
||||
"TaskInstanceId": "$(system.TaskInstanceId)",
|
||||
"AuthToken": "$(system.AccessToken)"
|
||||
}
|
||||
waitForCompletion: "true"
|
||||
|
||||
# Agentless phase. Depends on previous job.
|
||||
- job: 'InstallerValidation'
|
||||
pool: server
|
||||
displayName: 'Installer Validation'
|
||||
timeoutInMinutes: 1500
|
||||
dependsOn:
|
||||
- 'FileValidation'
|
||||
- 'ContentValidation'
|
||||
variables:
|
||||
HostKeySecret: $[ dependencies.FileValidation.outputs['wingetsetup.hostkey']]
|
||||
ScanEndpointSecret: $[ dependencies.FileValidation.outputs['wingetsetup.scanEndpoint']]
|
||||
InstallationEndpointSecret: $[ dependencies.FileValidation.outputs['wingetsetup.installationEndpoint']]
|
||||
steps:
|
||||
|
||||
# Scan installers in manifests.
|
||||
- task: AzureFunction@1
|
||||
displayName: 'Installers Scan'
|
||||
@@ -171,28 +105,6 @@ jobs:
|
||||
body: |
|
||||
{
|
||||
"operationId": "$(Build.BuildNumber)",
|
||||
"BuildId": "$(Build.BuildId)",
|
||||
"PlanUrl": "$(system.CollectionUri)",
|
||||
"HubName": "$(system.HostType)",
|
||||
"ProjectId": "$(system.TeamProjectId)",
|
||||
"PlanId": "$(system.PlanId)",
|
||||
"JobId": "$(system.JobId)",
|
||||
"TimelineId": "$(system.TimelineId)",
|
||||
"TaskInstanceId": "$(system.TaskInstanceId)",
|
||||
"AuthToken": "$(system.AccessToken)"
|
||||
}
|
||||
waitForCompletion: "true"
|
||||
|
||||
# Validates installation.
|
||||
- task: AzureFunction@1
|
||||
displayName: 'Installation Validation'
|
||||
inputs:
|
||||
function: '$(InstallationEndpointSecret)'
|
||||
key: '$(HostKeySecret)'
|
||||
body: |
|
||||
{
|
||||
"operationId": "$(Build.BuildNumber)",
|
||||
"BuildId": "$(Build.BuildId)",
|
||||
"PlanUrl": "$(system.CollectionUri)",
|
||||
"HubName": "$(system.HostType)",
|
||||
"ProjectId": "$(system.TeamProjectId)",
|
||||
@@ -211,7 +123,6 @@ jobs:
|
||||
dependsOn:
|
||||
- 'FileValidation'
|
||||
- 'ContentValidation'
|
||||
- 'InstallerValidation'
|
||||
condition: succeededOrFailed()
|
||||
variables:
|
||||
HostKeySecret: $[ dependencies.FileValidation.outputs['wingetsetup.hostkey']]
|
||||
@@ -232,7 +143,6 @@ jobs:
|
||||
{
|
||||
"operationId": "$(Build.BuildNumber)",
|
||||
"PlanUrl": "$(system.CollectionUri)",
|
||||
"BuildId": "$(Build.BuildId)",
|
||||
"HubName": "$(system.HostType)",
|
||||
"ProjectId": "$(system.TeamProjectId)",
|
||||
"PlanId": "$(system.PlanId)",
|
||||
@@ -244,7 +154,7 @@ jobs:
|
||||
"PullRequestNumber": "$(System.PullRequest.PullRequestNumber)",
|
||||
}
|
||||
waitForCompletion: "true"
|
||||
|
||||
|
||||
# Cleanup resources.
|
||||
- task: AzureFunction@1
|
||||
displayName: 'Validation cleanup'
|
||||
@@ -255,7 +165,6 @@ jobs:
|
||||
{
|
||||
"operationId": "$(Build.BuildNumber)",
|
||||
"PlanUrl": "$(system.CollectionUri)",
|
||||
"BuildId": "$(Build.BuildId)",
|
||||
"HubName": "$(system.HostType)",
|
||||
"ProjectId": "$(system.TeamProjectId)",
|
||||
"PlanId": "$(system.PlanId)",
|
||||
@@ -264,4 +173,4 @@ jobs:
|
||||
"TaskInstanceId": "$(system.TaskInstanceId)",
|
||||
"AuthToken": "$(system.AccessToken)"
|
||||
}
|
||||
waitForCompletion: "true"
|
||||
waitForCompletion: "true"
|
31
README.md
31
README.md
@@ -15,12 +15,27 @@ To submit a package to the repository, you should follow these steps:
|
||||
|
||||
## Authoring a Manifest
|
||||
|
||||
The minimal manifest syntax is below. Additional information on writing manifests can be found on [Microsoft Docs](https://docs.microsoft.com/en-us/windows/package-manager/package/manifest) or on the [v1.0 manifest spec](https://github.com/microsoft/winget-cli/blob/master/doc/ManifestSpecv1.0.md).
|
||||
The minimal manifest syntax is below. Additional information on writing manifests can be found on [Microsoft Docs](https://docs.microsoft.com/en-us/windows/package-manager/package/manifest) or on the [v0.1 manifest spec](https://github.com/microsoft/winget-cli/blob/master/doc/ManifestSpecv0.1.md).
|
||||
|
||||
Current limitations are:
|
||||
* One manifest per PR
|
||||
* One installer per PR
|
||||
|
||||
Be sure the manifest filenames match the `PackageIdentifier` manifest naming conventions and the manifest is located in the folder path matching `manifests\<first lower case letter of publisher>\<publisher>\<package>\<version>\.yaml`
|
||||
Be sure the manifest filename matches the `Version` and the manifest is located in the folder path matching `manifests\<publisher>\<package>\<version>.yaml`
|
||||
|
||||
```yaml
|
||||
Id: string # publisher.package format
|
||||
Publisher: string # the name of the publisher
|
||||
Name: string # the name of the application
|
||||
Version: string # version numbering format
|
||||
License: string # the open source license or copyright
|
||||
InstallerType: string # enumeration of supported installer types (exe, msi, msix, inno, wix, nullsoft, appx)
|
||||
Installers:
|
||||
- Arch: string # enumeration of supported architectures
|
||||
Url: string # path to download installation file of the specified version
|
||||
Sha256: string # SHA256 calculated from installer
|
||||
# ManifestVersion: 0.1.0
|
||||
```
|
||||
|
||||
### Using the YAMLCreate.ps1
|
||||
To help author manifest files, we have provided a YAMLCreate.ps1 powershell script located in the Tools folder.
|
||||
@@ -35,22 +50,12 @@ Although the Windows Package Manager YAML Generator can create YAML files with m
|
||||
|
||||
## Test your manifest
|
||||
Now that you have authored your manifest, you should make sure it works as expected.
|
||||
|
||||
### Locally
|
||||
1) Verify the syntax. You can do that by typing the following command: `winget validate <manifest>`
|
||||
2) Test the install. You can do that by installing the manifest: `winget install -m <manifest>`
|
||||
For more details, see [packages](https://docs.microsoft.com/windows/package-manager/package).
|
||||
|
||||
### In Windows Sandbox
|
||||
You can use the [`Tools\SandboxTest.ps1`](Tools/SandboxTest.ps1) script for testing a manifest installation in [Windows Sandbox](https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-sandbox/windows-sandbox-overview). The manifest will be also validated.
|
||||
|
||||
Just provide the path to manifest as parameter:
|
||||
```powershell
|
||||
.\Tools\SandboxTest.ps1 <path-to-manifest>
|
||||
```
|
||||
|
||||
## Submit your PR
|
||||
With the manifest verified, you will need to submit a PR. Your manifest should be located in the folder path matching `manifests\<first lower case letter of publisher>\<publisher>\<package>\<version>.yaml`
|
||||
With the manifest verified, you will need to submit a PR. Your manifest should be located in the folder path matching `manifests\<publisher>\<package>\<version>.yaml`
|
||||
|
||||
### Validation Process
|
||||
The PR request will go through a validation process. During the process, the PR request will get labels to help drive the validation.
|
||||
|
@@ -1,284 +0,0 @@
|
||||
# Parse arguments
|
||||
|
||||
Param(
|
||||
[Parameter(Position = 0, HelpMessage = "The Manifest to install in the Sandbox.")]
|
||||
[String] $Manifest,
|
||||
[Parameter(Position = 1, HelpMessage = "The script to run in the Sandbox.")]
|
||||
[ScriptBlock] $Script,
|
||||
[Parameter(HelpMessage = "The folder to map in the Sandbox.")]
|
||||
[String] $MapFolder = $pwd,
|
||||
[switch] $SkipManifestValidation
|
||||
)
|
||||
|
||||
$ErrorActionPreference = "Stop"
|
||||
|
||||
$mapFolder = (Resolve-Path -Path $MapFolder).Path
|
||||
|
||||
if (-Not (Test-Path -Path $mapFolder -PathType Container)) {
|
||||
Write-Error -Category InvalidArgument -Message 'The provided MapFolder is not a folder.'
|
||||
}
|
||||
|
||||
# Validate manifest file
|
||||
|
||||
if (-Not $SkipManifestValidation -And -Not [String]::IsNullOrWhiteSpace($Manifest)) {
|
||||
Write-Host '--> Validating Manifest'
|
||||
|
||||
if (-Not (Test-Path -Path $Manifest)) {
|
||||
throw 'The Manifest does not exist.'
|
||||
}
|
||||
|
||||
winget.exe validate $Manifest
|
||||
if (-Not $?) {
|
||||
throw 'Manifest validation failed.'
|
||||
}
|
||||
|
||||
Write-Host
|
||||
}
|
||||
|
||||
# Check if Windows Sandbox is enabled
|
||||
|
||||
if (-Not (Get-Command 'WindowsSandbox' -ErrorAction SilentlyContinue)) {
|
||||
Write-Error -Category NotInstalled -Message @'
|
||||
Windows Sandbox does not seem to be available. Check the following URL for prerequisites and further details:
|
||||
https://docs.microsoft.com/en-us/windows/security/threat-protection/windows-sandbox/windows-sandbox-overview
|
||||
|
||||
You can run the following command in an elevated PowerShell for enabling Windows Sandbox:
|
||||
$ Enable-WindowsOptionalFeature -Online -FeatureName 'Containers-DisposableClientVM'
|
||||
'@
|
||||
}
|
||||
|
||||
# Close Windows Sandbox
|
||||
|
||||
$sandbox = Get-Process 'WindowsSandboxClient' -ErrorAction SilentlyContinue
|
||||
if ($sandbox) {
|
||||
Write-Host '--> Closing Windows Sandbox'
|
||||
|
||||
$sandbox | Stop-Process
|
||||
Start-Sleep -Seconds 5
|
||||
|
||||
Write-Host
|
||||
}
|
||||
Remove-Variable sandbox
|
||||
|
||||
# Initialize Temp Folder
|
||||
|
||||
$tempFolderName = 'SandboxTest'
|
||||
$tempFolder = Join-Path -Path ([System.IO.Path]::GetTempPath()) -ChildPath $tempFolderName
|
||||
|
||||
New-Item $tempFolder -ItemType Directory -ErrorAction SilentlyContinue | Out-Null
|
||||
|
||||
# Set dependencies
|
||||
|
||||
$apiLatestUrl = 'https://api.github.com/repos/microsoft/winget-cli/releases/latest'
|
||||
|
||||
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
||||
$WebClient = New-Object System.Net.WebClient
|
||||
|
||||
function Get-LatestUrl {
|
||||
((Invoke-WebRequest $apiLatestUrl -UseBasicParsing | ConvertFrom-Json).assets | Where-Object { $_.name -match '^Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.appxbundle$' }).browser_download_url
|
||||
}
|
||||
|
||||
function Get-LatestHash {
|
||||
$shaUrl = ((Invoke-WebRequest $apiLatestUrl -UseBasicParsing | ConvertFrom-Json).assets | Where-Object { $_.name -match '^Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.txt$' }).browser_download_url
|
||||
|
||||
$shaFile = Join-Path -Path $tempFolder -ChildPath 'Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.txt'
|
||||
$WebClient.DownloadFile($shaUrl, $shaFile)
|
||||
|
||||
Get-Content $shaFile
|
||||
}
|
||||
|
||||
# Hide the progress bar of Invoke-WebRequest
|
||||
$oldProgressPreference = $ProgressPreference
|
||||
$ProgressPreference = 'SilentlyContinue'
|
||||
|
||||
$desktopAppInstaller = @{
|
||||
fileName = 'Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.appxbundle'
|
||||
url = $(Get-LatestUrl)
|
||||
hash = $(Get-LatestHash)
|
||||
}
|
||||
|
||||
$ProgressPreference = $oldProgressPreference
|
||||
|
||||
$vcLibsUwp = @{
|
||||
fileName = 'Microsoft.VCLibs.x64.14.00.Desktop.appx'
|
||||
url = 'https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx'
|
||||
hash = '6602159c341bafea747d0edf15669ac72df8817299fbfaa90469909e06794256'
|
||||
}
|
||||
|
||||
$dependencies = @($desktopAppInstaller, $vcLibsUwp)
|
||||
|
||||
# Clean temp directory
|
||||
|
||||
Get-ChildItem $tempFolder -Recurse -Exclude $dependencies.fileName | Remove-Item -Force -Recurse
|
||||
|
||||
if (-Not [String]::IsNullOrWhiteSpace($Manifest)) {
|
||||
Copy-Item -Path $Manifest -Recurse -Destination $tempFolder
|
||||
}
|
||||
|
||||
# Download dependencies
|
||||
|
||||
Write-Host '--> Checking dependencies'
|
||||
|
||||
$desktopInSandbox = 'C:\Users\WDAGUtilityAccount\Desktop'
|
||||
|
||||
foreach ($dependency in $dependencies) {
|
||||
$dependency.file = Join-Path -Path $tempFolder -ChildPath $dependency.fileName
|
||||
$dependency.pathInSandbox = Join-Path -Path $desktopInSandbox -ChildPath (Join-Path -Path $tempFolderName -ChildPath $dependency.fileName)
|
||||
|
||||
# Only download if the file does not exist, or its hash does not match.
|
||||
if (-Not ((Test-Path -Path $dependency.file -PathType Leaf) -And $dependency.hash -eq $(get-filehash $dependency.file).Hash)) {
|
||||
Write-Host @"
|
||||
- Downloading:
|
||||
$($dependency.url)
|
||||
"@
|
||||
|
||||
try {
|
||||
$WebClient.DownloadFile($dependency.url, $dependency.file)
|
||||
}
|
||||
catch {
|
||||
throw "Error downloading $($dependency.url)."
|
||||
}
|
||||
if (-not ($dependency.hash -eq $(get-filehash $dependency.file).Hash)) {
|
||||
throw 'Hashes do not match, try gain.'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Write-Host
|
||||
|
||||
# Create Bootstrap script
|
||||
|
||||
# See: https://stackoverflow.com/a/22670892/12156188
|
||||
$bootstrapPs1Content = @'
|
||||
function Update-EnvironmentVariables {
|
||||
foreach($level in "Machine","User") {
|
||||
[Environment]::GetEnvironmentVariables($level).GetEnumerator() | % {
|
||||
# For Path variables, append the new values, if they're not already in there
|
||||
if($_.Name -match 'Path$') {
|
||||
$_.Value = ($((Get-Content "Env:$($_.Name)") + ";$($_.Value)") -split ';' | Select -unique) -join ';'
|
||||
}
|
||||
$_
|
||||
} | Set-Content -Path { "Env:$($_.Name)" }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
'@
|
||||
|
||||
$bootstrapPs1Content += @"
|
||||
Write-Host @'
|
||||
--> Installing WinGet
|
||||
|
||||
'@
|
||||
Add-AppxPackage -Path '$($desktopAppInstaller.pathInSandbox)' -DependencyPath '$($vcLibsUwp.pathInSandbox)'
|
||||
|
||||
Write-Host @'
|
||||
|
||||
Tip: you can type 'Update-EnvironmentVariables' to update your environment variables, such as after installing a new software.
|
||||
|
||||
'@
|
||||
|
||||
|
||||
"@
|
||||
|
||||
if (-Not [String]::IsNullOrWhiteSpace($Manifest)) {
|
||||
$manifestFileName = Split-Path $Manifest -Leaf
|
||||
$manifestPathInSandbox = Join-Path -Path $desktopInSandbox -ChildPath (Join-Path -Path $tempFolderName -ChildPath $manifestFileName)
|
||||
|
||||
$bootstrapPs1Content += @"
|
||||
Write-Host @'
|
||||
|
||||
--> Installing the Manifest $manifestFileName
|
||||
|
||||
'@
|
||||
winget install -m '$manifestPathInSandbox'
|
||||
|
||||
Write-Host @'
|
||||
|
||||
--> Refreshing environment variables
|
||||
'@
|
||||
Update-EnvironmentVariables
|
||||
|
||||
|
||||
"@
|
||||
}
|
||||
|
||||
if (-Not [String]::IsNullOrWhiteSpace($Script)) {
|
||||
$bootstrapPs1Content += @"
|
||||
Write-Host @'
|
||||
|
||||
--> Running the following script:
|
||||
|
||||
{
|
||||
$Script
|
||||
}
|
||||
|
||||
'@
|
||||
|
||||
$Script
|
||||
|
||||
|
||||
"@
|
||||
}
|
||||
|
||||
$bootstrapPs1Content += @"
|
||||
Write-Host
|
||||
"@
|
||||
|
||||
$bootstrapPs1FileName = 'Bootstrap.ps1'
|
||||
$bootstrapPs1Content | Out-File (Join-Path -Path $tempFolder -ChildPath $bootstrapPs1FileName)
|
||||
|
||||
# Create Wsb file
|
||||
|
||||
$bootstrapPs1InSandbox = Join-Path -Path $desktopInSandbox -ChildPath (Join-Path -Path $tempFolderName -ChildPath $bootstrapPs1FileName)
|
||||
$mapFolderInSandbox = Join-Path -Path $desktopInSandbox -ChildPath (Split-Path -Path $mapFolder -Leaf)
|
||||
|
||||
$sandboxTestWsbContent = @"
|
||||
<Configuration>
|
||||
<MappedFolders>
|
||||
<MappedFolder>
|
||||
<HostFolder>$tempFolder</HostFolder>
|
||||
<ReadOnly>true</ReadOnly>
|
||||
</MappedFolder>
|
||||
<MappedFolder>
|
||||
<HostFolder>$mapFolder</HostFolder>
|
||||
</MappedFolder>
|
||||
</MappedFolders>
|
||||
<LogonCommand>
|
||||
<Command>PowerShell Start-Process PowerShell -WindowStyle Maximized -WorkingDirectory '$mapFolderInSandbox' -ArgumentList '-ExecutionPolicy Bypass -NoExit -NoLogo -File $bootstrapPs1InSandbox'</Command>
|
||||
</LogonCommand>
|
||||
</Configuration>
|
||||
"@
|
||||
|
||||
$sandboxTestWsbFileName = 'SandboxTest.wsb'
|
||||
$sandboxTestWsbFile = Join-Path -Path $tempFolder -ChildPath $sandboxTestWsbFileName
|
||||
$sandboxTestWsbContent | Out-File $sandboxTestWsbFile
|
||||
|
||||
Write-Host @"
|
||||
--> Starting Windows Sandbox, and:
|
||||
- Mounting the following directories:
|
||||
- $tempFolder as read-only
|
||||
- $mapFolder as read-and-write
|
||||
- Installing WinGet
|
||||
"@
|
||||
|
||||
if (-Not [String]::IsNullOrWhiteSpace($Manifest)) {
|
||||
Write-Host @"
|
||||
- Installing the Manifest $manifestFileName
|
||||
- Refreshing environment variables
|
||||
"@
|
||||
}
|
||||
|
||||
if (-Not [String]::IsNullOrWhiteSpace($Script)) {
|
||||
Write-Host @"
|
||||
- Running the following script:
|
||||
|
||||
{
|
||||
$Script
|
||||
}
|
||||
"@
|
||||
}
|
||||
|
||||
Write-Host
|
||||
|
||||
WindowsSandbox $SandboxTestWsbFile
|
File diff suppressed because it is too large
Load Diff
@@ -1,22 +0,0 @@
|
||||
PackageIdentifier: 3T.Robo3T
|
||||
PackageVersion: 1.3.1
|
||||
PackageName: Robo3T
|
||||
Publisher: 3T Software Labs
|
||||
License: GPLv3
|
||||
LicenseUrl: https://github.com/Studio3T/robomongo/blob/master/COPYRIGHT
|
||||
Tags:
|
||||
- robomongo
|
||||
- mongo
|
||||
- mongodb
|
||||
- database
|
||||
- tool
|
||||
ShortDescription: Robo 3T (formerly Robomongo *) is a shell-centric cross-platform MongoDB management tool. Unlike most other MongoDB admin UI tools, Robo 3T embeds the actual mongo shell in a tabbed interface with access to a shell command line as well as GUI interaction.
|
||||
PackageUrl: https://robomongo.org/
|
||||
Installers:
|
||||
- Architecture: x86
|
||||
InstallerUrl: https://github.com/Studio3T/robomongo/releases/download/v1.3.1/robo3t-1.3.1-windows-x86_64-7419c406.exe
|
||||
InstallerSha256: A79D2F717F96E13964201E8802ED5B9B2BCFA7EA0A901EFB337C19A24BF4EF5F
|
||||
InstallerType: nullsoft
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,23 +0,0 @@
|
||||
PackageIdentifier: 3T.Robo3T
|
||||
PackageVersion: 1.4.1
|
||||
PackageName: Robo3T
|
||||
Publisher: 3T
|
||||
License: GPLv3
|
||||
LicenseUrl: https://github.com/Studio3T/robomongo/blob/master/COPYRIGHT
|
||||
Moniker: Robo3T
|
||||
ShortDescription: Robo 3T (formerly Robomongo *) is a shell-centric cross-platform MongoDB management tool. Unlike most other MongoDB admin UI tools, Robo 3T embeds the actual mongo shell in a tabbed interface with access to a shell command line as well as GUI interaction.
|
||||
PackageUrl: https://robomongo.org
|
||||
Tags:
|
||||
- robomongo
|
||||
- mongo
|
||||
- mongodb
|
||||
- database
|
||||
- tool
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerUrl: https://github.com/Studio3T/robomongo/releases/download/v1.4.1/robo3t-1.4.1-windows-x86_64-122dbd9.exe
|
||||
InstallerSha256: 1ADB1BB0875861FAB904F7F0734DB3FFCFAE1954943866535EBCCB42FD381A70
|
||||
InstallerType: nullsoft
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,23 +0,0 @@
|
||||
PackageIdentifier: 3T.Robo3T
|
||||
PackageVersion: 1.4.2
|
||||
PackageName: Robo3T
|
||||
Publisher: 3T
|
||||
License: GPLv3
|
||||
LicenseUrl: https://github.com/Studio3T/robomongo/blob/master/COPYRIGHT
|
||||
Moniker: Robo3T
|
||||
ShortDescription: Robo 3T (formerly Robomongo *) is a shell-centric cross-platform MongoDB management tool. Unlike most other MongoDB admin UI tools, Robo 3T embeds the actual mongo shell in a tabbed interface with access to a shell command line as well as GUI interaction.
|
||||
PackageUrl: https://robomongo.org
|
||||
Tags:
|
||||
- robomongo
|
||||
- mongo
|
||||
- mongodb
|
||||
- database
|
||||
- tool
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerUrl: https://github.com/Studio3T/robomongo/releases/download/v1.4.2/robo3t-1.4.2-windows-x86_64-8650949.exe
|
||||
InstallerSha256: 20d72e75e379540d4dd8f4230aee8037f634574fdfcfa6f5cb8f0b06c3f540c9
|
||||
InstallerType: nullsoft
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,23 +0,0 @@
|
||||
PackageIdentifier: 3T.Robo3T
|
||||
PackageVersion: 1.4.3
|
||||
PackageName: Robo3T
|
||||
Publisher: 3T
|
||||
License: GPLv3
|
||||
LicenseUrl: https://github.com/Studio3T/robomongo/blob/master/COPYRIGHT
|
||||
Moniker: Robo3T
|
||||
ShortDescription: Robo 3T (formerly Robomongo *) is a shell-centric cross-platform MongoDB management tool. Unlike most other MongoDB admin UI tools, Robo 3T embeds the actual mongo shell in a tabbed interface with access to a shell command line as well as GUI interaction.
|
||||
PackageUrl: https://robomongo.org
|
||||
Tags:
|
||||
- robomongo
|
||||
- mongo
|
||||
- mongodb
|
||||
- database
|
||||
- tool
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerUrl: https://github.com/Studio3T/robomongo/releases/download/v1.4.3/robo3t-1.4.3-windows-x86_64-48f7dfde.exe
|
||||
InstallerSha256: 3253DC26FF78E5808183DE541C3FBEE335095DDB1662E9C7A09AEDE58CD2DD2B
|
||||
InstallerType: nullsoft
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,23 +0,0 @@
|
||||
PackageIdentifier: 3T.Robo3TBeta
|
||||
PackageVersion: 1.4.2-beta
|
||||
PackageName: Robo3T - Beta
|
||||
Publisher: 3T
|
||||
License: GPLv3
|
||||
LicenseUrl: https://github.com/Studio3T/robomongo/blob/master/COPYRIGHT
|
||||
Moniker: Robo3T
|
||||
PackageUrl: https://robomongo.org
|
||||
ShortDescription: Robo 3T (formerly Robomongo *) is a shell-centric cross-platform MongoDB management tool. Unlike most other MongoDB admin UI tools, Robo 3T embeds the actual mongo shell in a tabbed interface with access to a shell command line as well as GUI interaction.
|
||||
Tags:
|
||||
- robomongo
|
||||
- mongo
|
||||
- mongodb
|
||||
- database
|
||||
- tool
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerUrl: https://github.com/Studio3T/robomongo/releases/download/v1.4.2/robo3t-1.4.2-windows-x86_64-8650949.exe
|
||||
InstallerSha256: 20D72E75E379540D4DD8F4230AEE8037F634574FDFCFA6F5CB8F0B06C3F540C9
|
||||
InstallerType: nullsoft
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
14
manifests/3T/Robo3T/1.3.1.yaml
Normal file
14
manifests/3T/Robo3T/1.3.1.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
Id: 3T.Robo3T
|
||||
Version: 1.3.1
|
||||
Name: Robo3T
|
||||
Publisher: 3T Software Labs
|
||||
License: GPLv3
|
||||
LicenseUrl: https://github.com/Studio3T/robomongo/blob/master/COPYRIGHT
|
||||
Tags: robomongo, mongo, mongodb, database, tool
|
||||
Description: Robo 3T (formerly Robomongo *) is a shell-centric cross-platform MongoDB management tool. Unlike most other MongoDB admin UI tools, Robo 3T embeds the actual mongo shell in a tabbed interface with access to a shell command line as well as GUI interaction.
|
||||
Homepage: https://robomongo.org/
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: https://github.com/Studio3T/robomongo/releases/download/v1.3.1/robo3t-1.3.1-windows-x86_64-7419c406.exe
|
||||
Sha256: A79D2F717F96E13964201E8802ED5B9B2BCFA7EA0A901EFB337C19A24BF4EF5F
|
||||
InstallerType: nullsoft
|
@@ -1,23 +0,0 @@
|
||||
PackageIdentifier: 4KDownload.4KSlideshowMaker
|
||||
Publisher: 4K Download
|
||||
PackageName: 4K Slideshow Maker
|
||||
PackageVersion: 1.8.1
|
||||
License: See in https://www.4kdownload.com/agreement/freeware.
|
||||
InstallerType: msi
|
||||
LicenseUrl: https://www.4kdownload.com/agreement/freeware
|
||||
Moniker: ''
|
||||
Tags:
|
||||
- slideshow-maker
|
||||
- slideshows
|
||||
- images
|
||||
- videos
|
||||
ShortDescription: Create impressive slideshows, save your memories
|
||||
PackageUrl: https://www.4kdownload.com/products/product-slideshowmaker
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerType: msi
|
||||
InstallerUrl: https://dl.4kdownload.com/app/4kslideshowmaker_1.8.1_x64.msi
|
||||
InstallerSha256: 9127CCF7A5145DF36C84920BBE2779915DFDAF35C014C5C9952E0D831DBCB2F4
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,24 +0,0 @@
|
||||
PackageIdentifier: 4KDownload.4KStogram
|
||||
Publisher: 4K Download
|
||||
PackageName: 4K Stogram
|
||||
PackageVersion: 3.3.3
|
||||
License: See in https://www.4kdownload.com/agreement/freeware.
|
||||
InstallerType: msi
|
||||
LicenseUrl: https://www.4kdownload.com/agreement/freeware
|
||||
Moniker: ''
|
||||
Tags:
|
||||
- instagram-downloader
|
||||
- instagram
|
||||
- photos
|
||||
- accounts
|
||||
- hashtags
|
||||
ShortDescription: Download Instagram photos, accounts, hashtags and locations
|
||||
PackageUrl: https://www.4kdownload.com/products/product-stogram
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerType: msi
|
||||
InstallerUrl: https://dl.4kdownload.com/app/4kstogram_3.3.3_x64.msi
|
||||
InstallerSha256: b8fcf73dfb260e2a99a6e000219c11b9da4b17d4b84ca283bb4acf3021579ccd
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,22 +0,0 @@
|
||||
PackageIdentifier: 4KDownload.4KVideoDownloader
|
||||
Publisher: 4K Download
|
||||
PackageName: 4K Video Downloader
|
||||
PackageVersion: 4.15.0
|
||||
License: See in https://www.4kdownload.com/agreement/freeware.
|
||||
InstallerType: msi
|
||||
LicenseUrl: https://www.4kdownload.com/agreement/freeware
|
||||
Moniker: ''
|
||||
Tags:
|
||||
- video-downloader
|
||||
- youtube
|
||||
- vimeo
|
||||
ShortDescription: Free Video Downloader
|
||||
PackageUrl: https://www.4kdownload.com/products/product-videodownloader
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerType: msi
|
||||
InstallerUrl: https://dl.4kdownload.com/app/4kvideodownloader_4.15.0_x64.msi
|
||||
InstallerSha256: f825cea18c876816f96496f8c36111d2398c09a70a9a9d55a464750e71f5a5ab
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,21 +0,0 @@
|
||||
PackageIdentifier: 4KDownload.4KVideoDownloader
|
||||
Publisher: 4K Download
|
||||
PackageName: 4K Video Downloader
|
||||
PackageVersion: 4.15.1
|
||||
License: See in https://www.4kdownload.com/agreement/freeware.
|
||||
LicenseUrl: https://www.4kdownload.com/agreement/freeware
|
||||
Tags:
|
||||
- video-downloader
|
||||
- youtube
|
||||
- vimeo
|
||||
ShortDescription: Free Video Downloader
|
||||
PackageUrl: https://www.4kdownload.com/products/product-videodownloader
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerType: msi
|
||||
InstallerUrl: https://dl.4kdownload.com/app/4kvideodownloader_4.15.1_x64.msi
|
||||
InstallerSha256: 3FE45144F91E5D7390DDB4A2F33BFBE9960949205193973BC8B0189F06F55A00
|
||||
ProductCode: "{11CAD2D3-0918-4C25-ADEA-6A2E2D8224D2}"
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,22 +0,0 @@
|
||||
PackageIdentifier: 4KDownload.4KVideoToMP3
|
||||
Publisher: 4K Download
|
||||
PackageName: 4K Video to MP3
|
||||
PackageVersion: 3.0.0
|
||||
License: See in https://www.4kdownload.com/agreement/freeware.
|
||||
InstallerType: msi
|
||||
LicenseUrl: https://www.4kdownload.com/agreement/freeware
|
||||
Moniker: ''
|
||||
Tags:
|
||||
- video-to-mp3
|
||||
- video-converter
|
||||
- mp3
|
||||
ShortDescription: Convert any video to MP3 in one click
|
||||
PackageUrl: https://www.4kdownload.com/products/product-videotomp3
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerType: msi
|
||||
InstallerUrl: https://dl.4kdownload.com/app/4kvideotomp3_3.0.0_x64.msi
|
||||
InstallerSha256: 319EACC777051B8582E2F4967FC296BAF13AF9B3C0E1F81D3940E8601C730A6C
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,20 +0,0 @@
|
||||
PackageIdentifier: 720kb.ndm
|
||||
PackageVersion: 1.2.0
|
||||
PackageName: ndm
|
||||
Publisher: 720kb
|
||||
License: GPL v3
|
||||
LicenseUrl: https://github.com/720kb/ndm/blob/master/LICENSE.md
|
||||
Moniker: ndm
|
||||
ShortDescription: npm desktop manager
|
||||
PackageUrl: https://720kb.github.io/ndm
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerUrl: https://github.com/720kb/ndm/releases/download/v1.2.0/ndm-1.2.0.exe
|
||||
InstallerSha256: 2AF8B2AAF106B0F3411F9E9594715B3A29ECE444EA62A7024AC09C09CA0F475D
|
||||
InstallerType: exe
|
||||
InstallerSwitches:
|
||||
Silent: /S
|
||||
SilentWithProgress: /S
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,20 +0,0 @@
|
||||
PackageIdentifier: 7room.Aya
|
||||
PackageVersion: 0.10.4
|
||||
PackageName: Aya
|
||||
Publisher: 7room
|
||||
License: Copyright (c) 2017-2020 7room
|
||||
Moniker: aya
|
||||
Tags:
|
||||
- duplicates
|
||||
- disk usage
|
||||
- disk space
|
||||
ShortDescription: A well-designed tool that helps you take control over your large files and get rid of the useless ones.
|
||||
PackageUrl: https://getaya.co/
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerUrl: https://github.com/7room/aya/releases/download/v0.10.4/Aya.Setup.0.10.4.exe
|
||||
InstallerSha256: 699B2571C652C8F7FB1F5E15DAADC434E7E2FEADC02A331366A9CC267041F72B
|
||||
InstallerType: inno
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,29 +0,0 @@
|
||||
PackageIdentifier: 7zip.7zip
|
||||
PackageName: 7-Zip
|
||||
Moniker: 7zip
|
||||
PackageVersion: 16.0.4
|
||||
Publisher: Igor Pavlov
|
||||
Author: Igor Pavlov
|
||||
License: Copyright (C) 1999-2020 Igor Pavlov. - GNU LGPL
|
||||
LicenseUrl: https://7-zip.org/license.txt
|
||||
MinimumOSVersion: 10.0.0.0
|
||||
PackageUrl: https://www.7-zip.org/
|
||||
ShortDescription: Free and open source file archiver with a high compression ratio.
|
||||
Tags:
|
||||
- 7zip
|
||||
- compression
|
||||
- file compression
|
||||
- utility
|
||||
- tool
|
||||
- zip
|
||||
InstallerType: msi
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerUrl: https://www.7-zip.org/a/7z1604-x64.msi
|
||||
InstallerSha256: B3885B2F090F1E9B5CF2B9F802B07FE88E472D70D60732DB9F830209AC296067
|
||||
InstallerSwitches:
|
||||
Silent: /quiet /norestart
|
||||
SilentWithProgress: /passive /norestart
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,69 +0,0 @@
|
||||
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.0.0.schema.json
|
||||
PackageIdentifier: 7zip.7zip
|
||||
PackageVersion: 19.0.0
|
||||
MinimumOSVersion: 10.0.0.0
|
||||
Platform:
|
||||
- Windows.Desktop
|
||||
FileExtensions:
|
||||
- 7z
|
||||
- XZ
|
||||
- BZIP2
|
||||
- GZIP
|
||||
- TAR
|
||||
- ZIP
|
||||
- AR
|
||||
- ARJ
|
||||
- CAB
|
||||
- CHM
|
||||
- CPIO
|
||||
- CramFS
|
||||
- DMG
|
||||
- EXT
|
||||
- FAT
|
||||
- GPT
|
||||
- HFS
|
||||
- IHEX
|
||||
- ISO
|
||||
- LZH
|
||||
- LZMA
|
||||
- MBR
|
||||
- MSI
|
||||
- NSIS
|
||||
- NTFS
|
||||
- QCOW2
|
||||
- RAR
|
||||
- RPM
|
||||
- SquashFS
|
||||
- UDF
|
||||
- UEFI
|
||||
- VDI
|
||||
- VHD
|
||||
- VMDK
|
||||
- WIM
|
||||
- XAR
|
||||
- Z
|
||||
Commands:
|
||||
- 7z
|
||||
InstallModes:
|
||||
- interactive
|
||||
- silent
|
||||
- silentWithProgress
|
||||
Installers:
|
||||
- Architecture: x86
|
||||
InstallerType: msi
|
||||
InstallerUrl: https://www.7-zip.org/a/7z1900.msi
|
||||
InstallerSha256: B49D55A52BC0EAB14947C8982C413D9BE141C337DA1368A24AA0484CBB5E89CD
|
||||
ProductCode: "{23170F69-40C1-2701-1900-000001000000}"
|
||||
Scope: machine
|
||||
InstallerLocale: en-US
|
||||
UpgradeBehavior: install
|
||||
- Architecture: x64
|
||||
InstallerType: msi
|
||||
InstallerUrl: https://www.7-zip.org/a/7z1900-x64.msi
|
||||
InstallerSha256: A7803233EEDB6A4B59B3024CCF9292A6FFFB94507DC998AA67C5B745D197A5DC
|
||||
ProductCode: "{23170F69-40C1-2702-1900-000001000000}"
|
||||
Scope: machine
|
||||
InstallerLocale: en-US
|
||||
UpgradeBehavior: install
|
||||
ManifestType: installer
|
||||
ManifestVersion: 1.0.0
|
@@ -1,28 +0,0 @@
|
||||
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultlocale.1.0.0.schema.json
|
||||
PackageIdentifier: 7zip.7zip
|
||||
PackageVersion: 19.0.0
|
||||
PackageLocale: en-US
|
||||
Publisher: Igor Pavlov
|
||||
PublisherUrl: https://www.7-zip.org
|
||||
PublisherSupportUrl: https://www.7-zip.org/support.html
|
||||
#PrivacyUrl:
|
||||
Author: Igor Pavlov
|
||||
PackageName: 7-Zip
|
||||
PackageUrl: https://www.7-zip.org
|
||||
License: GNU LGPL
|
||||
LicenseUrl: https://www.7-zip.org/license.txt
|
||||
Copyright: Copyright (C) 1999-2021 Igor Pavlov.
|
||||
CopyrightUrl: https://www.7-zip.org/license.txt
|
||||
ShortDescription: Free and open source file archiver with a high compression ratio.
|
||||
#Description:
|
||||
Moniker: 7zip
|
||||
Tags:
|
||||
- compression
|
||||
- file compression
|
||||
- utility
|
||||
- tool
|
||||
- archiver
|
||||
- foss
|
||||
- open source
|
||||
ManifestType: defaultLocale
|
||||
ManifestVersion: 1.0.0
|
@@ -1,16 +0,0 @@
|
||||
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.0.0.schema.json
|
||||
PackageIdentifier: 7zip.7zip
|
||||
PackageVersion: 19.0.0
|
||||
PackageLocale: zh-CN
|
||||
PublisherUrl: https://www.7-zip.org
|
||||
PublisherSupportUrl: https://www.7-zip.org/support.html
|
||||
#PrivacyUrl:
|
||||
PackageUrl: https://www.7-zip.org
|
||||
License: GNU LGPL
|
||||
LicenseUrl: https://www.7-zip.org/license.txt
|
||||
Copyright: 版权所有 (C) 1999-2020 Igor Pavlov.
|
||||
CopyrightUrl: https://www.7-zip.org/license.txt
|
||||
ShortDescription: 7-Zip 是一款拥有极高压缩比的开源压缩软件。
|
||||
#Description:
|
||||
ManifestType: locale
|
||||
ManifestVersion: 1.0.0
|
@@ -1,6 +0,0 @@
|
||||
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.0.0.schema.json
|
||||
PackageIdentifier: 7zip.7zip
|
||||
PackageVersion: 19.0.0
|
||||
DefaultLocale: en-US
|
||||
ManifestType: version
|
||||
ManifestVersion: 1.0.0
|
@@ -1,29 +0,0 @@
|
||||
PackageIdentifier: 7zip.7zipAlpha
|
||||
PackageName: 7Zip - Alpha
|
||||
Moniker: 7zip-alpha
|
||||
PackageVersion: 20.0.2-alpha
|
||||
Publisher: 7zip
|
||||
Author: 7zip
|
||||
License: Copyright (C) 1999-2020 Igor Pavlov. - GNU LGPL
|
||||
LicenseUrl: https://7-zip.org/license.txt
|
||||
MinimumOSVersion: 10.0.0.0
|
||||
PackageUrl: https://www.7-zip.org/
|
||||
ShortDescription: Free and open source file archiver with a high compression ratio.
|
||||
Tags:
|
||||
- 7zip
|
||||
- compression
|
||||
- file compression
|
||||
- utility
|
||||
- tool
|
||||
- zip
|
||||
InstallerType: exe
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerUrl: https://www.7-zip.org/a/7z2002-x64.exe
|
||||
InstallerSha256: 356E128FCE6625F5BBE03D4B8B6DFCD744EE4482A16E9E495EE44AD77C2435E5
|
||||
InstallerSwitches:
|
||||
Silent: /S
|
||||
SilentWithProgress: /S
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,29 +0,0 @@
|
||||
PackageIdentifier: 7zip.7zipAlpha
|
||||
PackageName: 7Zip - Alpha
|
||||
Moniker: 7zip-alpha
|
||||
PackageVersion: 21.00-alpha
|
||||
Publisher: 7zip
|
||||
Author: 7zip
|
||||
License: Copyright (C) 1999-2021 Igor Pavlov. - GNU LGPL
|
||||
LicenseUrl: https://www.7-zip.org/license.txt
|
||||
MinimumOSVersion: 10.0.0.0
|
||||
PackageUrl: https://www.7-zip.org/
|
||||
ShortDescription: Free and open source file archiver with a high compression ratio.
|
||||
Tags:
|
||||
- 7zip
|
||||
- compression
|
||||
- file compression
|
||||
- utility
|
||||
- tool
|
||||
- zip
|
||||
InstallerType: exe
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerUrl: https://www.7-zip.org/a/7z2100-x64.exe
|
||||
InstallerSha256: BFB3507B104400E8DD2B12E476ADBFE4CBBF6191DFD36E672F2B5EAD4756BFD1
|
||||
InstallerSwitches:
|
||||
Silent: /S
|
||||
SilentWithProgress: /S
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
@@ -1,33 +0,0 @@
|
||||
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.0.0.schema.json
|
||||
PackageIdentifier: 7zip.7zipAlpha
|
||||
PackageVersion: 21.01-alpha
|
||||
Platform:
|
||||
- Windows.Desktop
|
||||
MinimumOSVersion: 10.0.0.0
|
||||
InstallerType: exe
|
||||
Scope: machine
|
||||
InstallerSwitches:
|
||||
Silent: /S
|
||||
SilentWithProgress: /S
|
||||
InstallLocation: /D=<INSTALLPATH>
|
||||
Commands:
|
||||
- 7z
|
||||
FileExtensions:
|
||||
- 7z
|
||||
- zip
|
||||
- rar
|
||||
- tar
|
||||
- gz
|
||||
- wim
|
||||
Installers:
|
||||
- Architecture: x86
|
||||
InstallerUrl: https://www.7-zip.org/a/7z2101.exe
|
||||
InstallerSha256: A160B4AE335A91E0B27F82604F874A94BCEF03A4918A1BE9F26330933092C084
|
||||
- Architecture: x64
|
||||
InstallerUrl: https://www.7-zip.org/a/7z2101-x64.exe
|
||||
InstallerSha256: AFA61D1BAC31BC36D453861F76E44439030E9174E6C5C5F2DDD97DFE7B0AD2D2
|
||||
- Architecture: arm64
|
||||
InstallerUrl: https://www.7-zip.org/a/7z2101-arm64.exe
|
||||
InstallerSha256: 9F7D8F02782595DB06687B6DD41DB8603079A3B345E9674DB4660ACC18241030
|
||||
ManifestType: installer
|
||||
ManifestVersion: 1.0.0
|
@@ -1,21 +0,0 @@
|
||||
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultlocale.1.0.0.schema.json
|
||||
PackageIdentifier: 7zip.7zipAlpha
|
||||
PackageVersion: 21.01-alpha
|
||||
PackageLocale: en-US
|
||||
Publisher: 7zip
|
||||
Author: 7zip
|
||||
PackageName: 7Zip - Alpha
|
||||
PackageUrl: https://www.7-zip.org/
|
||||
License: Copyright (C) 1999-2021 Igor Pavlov. - GNU LGPL
|
||||
LicenseUrl: https://www.7-zip.org/license.txt
|
||||
ShortDescription: Free and open source file archiver with a high compression ratio.
|
||||
Moniker: 7zip-alpha
|
||||
Tags:
|
||||
- 7zip
|
||||
- compression
|
||||
- file compression
|
||||
- utility
|
||||
- tool
|
||||
- zip
|
||||
ManifestType: defaultLocale
|
||||
ManifestVersion: 1.0.0
|
@@ -1,10 +0,0 @@
|
||||
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.0.0.schema.json
|
||||
PackageIdentifier: 7zip.7zipAlpha
|
||||
PackageVersion: 21.01-alpha
|
||||
PackageLocale: zh-CN
|
||||
PackageUrl: https://sparanoid.com/lab/7z/
|
||||
License: 版权所有 (C) 1999-2021 Igor Pavlov。- GNU LGPL
|
||||
LicenseUrl: https://raw.githubusercontent.com/sparanoid/7z/master/zh-cn/License.txt
|
||||
ShortDescription: 7-Zip 是一款拥有极高压缩比的开源压缩软件。
|
||||
ManifestType: locale
|
||||
ManifestVersion: 1.0.0
|
@@ -1,6 +0,0 @@
|
||||
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.0.0.schema.json
|
||||
PackageIdentifier: 7zip.7zipAlpha
|
||||
PackageVersion: 21.01-alpha
|
||||
DefaultLocale: en-US
|
||||
ManifestType: version
|
||||
ManifestVersion: 1.0.0
|
@@ -1,82 +0,0 @@
|
||||
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.0.0.schema.json
|
||||
PackageIdentifier: 7zip.7zipAlpha
|
||||
PackageVersion: 21.02 alpha
|
||||
MinimumOSVersion: 10.0.0.0
|
||||
Platform:
|
||||
- Windows.Desktop
|
||||
FileExtensions:
|
||||
- 7z
|
||||
- XZ
|
||||
- BZIP2
|
||||
- GZIP
|
||||
- TAR
|
||||
- ZIP
|
||||
- AR
|
||||
- ARJ
|
||||
- CAB
|
||||
- CHM
|
||||
- CPIO
|
||||
- CramFS
|
||||
- DMG
|
||||
- EXT
|
||||
- FAT
|
||||
- GPT
|
||||
- HFS
|
||||
- IHEX
|
||||
- ISO
|
||||
- LZH
|
||||
- LZMA
|
||||
- MBR
|
||||
- MSI
|
||||
- NSIS
|
||||
- NTFS
|
||||
- QCOW2
|
||||
- RAR
|
||||
- RPM
|
||||
- SquashFS
|
||||
- UDF
|
||||
- UEFI
|
||||
- VDI
|
||||
- VHD
|
||||
- VMDK
|
||||
- WIM
|
||||
- XAR
|
||||
- Z
|
||||
Commands:
|
||||
- 7z
|
||||
InstallModes:
|
||||
- interactive
|
||||
- silent
|
||||
- silentWithProgress
|
||||
InstallerSwitches:
|
||||
InstallLocation: /D=<INSTALLPATH>
|
||||
Scope: machine
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerType: msi
|
||||
InstallerUrl: https://www.7-zip.org/a/7z2102-x64.msi
|
||||
InstallerSha256: 19eb1d7d6307b091f77bef1a4da2e0465cf753e4d1d5dc811640eede4b9afe23
|
||||
ProductCode: "{23170F69-40C1-2702-2102-000001000000}"
|
||||
Scope: machine
|
||||
InstallerLocale: en-US
|
||||
UpgradeBehavior: install
|
||||
- Architecture: x86
|
||||
InstallerType: msi
|
||||
InstallerUrl: https://www.7-zip.org/a/7z2102.msi
|
||||
InstallerSha256: 0898beb06fb25c0d98198982a8aeadaea5724330c06b4096abcc1ce656c2c213
|
||||
ProductCode: "{23170F69-40C1-2701-2102-000001000000}"
|
||||
Scope: machine
|
||||
InstallerLocale: en-US
|
||||
UpgradeBehavior: install
|
||||
- Architecture: arm64
|
||||
InstallerType: exe
|
||||
InstallerUrl: https://www.7-zip.org/a/7z2102-arm64.exe
|
||||
InstallerSha256: A48056B7F8BCA229BFB9010DF45C1C8648D465C8F8DA0C3614E8BA896F3BE840
|
||||
InstallerSwitches:
|
||||
Silent: /S
|
||||
SilentWithProgress: /S
|
||||
Scope: machine
|
||||
InstallerLocale: en-US
|
||||
UpgradeBehavior: install
|
||||
ManifestType: installer
|
||||
ManifestVersion: 1.0.0
|
@@ -1,28 +0,0 @@
|
||||
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultlocale.1.0.0.schema.json
|
||||
PackageIdentifier: 7zip.7zipAlpha
|
||||
PackageVersion: 21.02 alpha
|
||||
PackageLocale: en-US
|
||||
Publisher: Igor Pavlov
|
||||
PublisherUrl: https://www.7-zip.org
|
||||
PublisherSupportUrl: https://www.7-zip.org/support.html
|
||||
#PrivacyUrl:
|
||||
Author: Igor Pavlov
|
||||
PackageName: 7-Zip - Alpha
|
||||
PackageUrl: https://www.7-zip.org
|
||||
License: GNU LGPL
|
||||
LicenseUrl: https://www.7-zip.org/license.txt
|
||||
Copyright: Copyright (C) 1999-2021 Igor Pavlov.
|
||||
CopyrightUrl: https://www.7-zip.org/license.txt
|
||||
ShortDescription: Free and open source file archiver with a high compression ratio.
|
||||
#Description:
|
||||
Moniker: 7zip-alpha
|
||||
Tags:
|
||||
- compression
|
||||
- file compression
|
||||
- utility
|
||||
- tool
|
||||
- archiver
|
||||
- foss
|
||||
- open source
|
||||
ManifestType: defaultLocale
|
||||
ManifestVersion: 1.0.0
|
@@ -1,16 +0,0 @@
|
||||
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultlocale.1.0.0.schema.json
|
||||
PackageIdentifier: 7zip.7zipAlpha
|
||||
PackageVersion: 21.02 alpha
|
||||
PackageLocale: zh-CN
|
||||
PublisherUrl: https://www.7-zip.org
|
||||
PublisherSupportUrl: https://www.7-zip.org/support.html
|
||||
#PrivacyUrl:
|
||||
PackageUrl: https://www.7-zip.org
|
||||
License: GNU LGPL
|
||||
LicenseUrl: https://www.7-zip.org/license.txt
|
||||
Copyright: 版权所有 (C) 1999-2021 Igor Pavlov。- GNU LGPL
|
||||
CopyrightUrl: https://www.7-zip.org/license.txt
|
||||
ShortDescription: 7-Zip 是一款拥有极高压缩比的开源压缩软件。
|
||||
#Description:
|
||||
ManifestType: locale
|
||||
ManifestVersion: 1.0.0
|
@@ -1,6 +0,0 @@
|
||||
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.0.0.schema.json
|
||||
PackageIdentifier: 7zip.7zipAlpha
|
||||
PackageVersion: 21.02 alpha
|
||||
DefaultLocale: en-US
|
||||
ManifestType: version
|
||||
ManifestVersion: 1.0.0
|
17
manifests/720kb/ndm/1.2.0.yaml
Normal file
17
manifests/720kb/ndm/1.2.0.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
Id: 720kb.ndm
|
||||
Version: 1.2.0
|
||||
Name: ndm
|
||||
Publisher: 720kb
|
||||
License: GPL v3
|
||||
LicenseUrl: https://github.com/720kb/ndm/blob/master/LICENSE.md
|
||||
AppMoniker: ndm
|
||||
Description: npm desktop manager
|
||||
Homepage: https://720kb.github.io/ndm
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/720kb/ndm/releases/download/v1.2.0/ndm-1.2.0.exe
|
||||
Sha256: 2AF8B2AAF106B0F3411F9E9594715B3A29ECE444EA62A7024AC09C09CA0F475D
|
||||
InstallerType: exe
|
||||
Switches:
|
||||
Silent: /S
|
||||
SilentWithProgress: /S
|
20
manifests/7Zip/7Zip/16.0.4.yaml
Normal file
20
manifests/7Zip/7Zip/16.0.4.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
Id: 7zip.7zip
|
||||
Name: 7Zip
|
||||
AppMoniker: 7zip
|
||||
Version: 16.0.4
|
||||
Publisher: 7zip
|
||||
Author: 7zip
|
||||
License: Copyright (C) 1999-2020 Igor Pavlov. - GNU LGPL
|
||||
LicenseUrl: https://7-zip.org/license.txt
|
||||
MinOSVersion: 10.0.0.0
|
||||
Homepage: https://www.7-zip.org/
|
||||
Description: Free and open source file archiver with a high compression ratio.
|
||||
Tags: "7zip,compression,file compression,utility,tool,zip"
|
||||
InstallerType: msi
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://www.7-zip.org/a/7z1604-x64.msi
|
||||
Sha256: B3885B2F090F1E9B5CF2B9F802B07FE88E472D70D60732DB9F830209AC296067
|
||||
Switches:
|
||||
Silent: /quiet /norestart
|
||||
SilentWithProgress: /passive /norestart
|
20
manifests/7Zip/7Zip/19.0.0.yaml
Normal file
20
manifests/7Zip/7Zip/19.0.0.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
Id: 7zip.7zip
|
||||
Name: 7Zip
|
||||
AppMoniker: 7zip
|
||||
Version: 19.0.0
|
||||
Publisher: 7zip
|
||||
Author: 7zip
|
||||
License: Copyright (C) 1999-2020 Igor Pavlov. - GNU LGPL
|
||||
LicenseUrl: https://7-zip.org/license.txt
|
||||
MinOSVersion: 10.0.0.0
|
||||
Homepage: https://www.7-zip.org/
|
||||
Description: Free and open source file archiver with a high compression ratio.
|
||||
Tags: "7zip,compression,file compression,utility,tool,zip"
|
||||
InstallerType: msi
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://www.7-zip.org/a/7z1900-x64.msi
|
||||
Sha256: A7803233EEDB6A4B59B3024CCF9292A6FFFB94507DC998AA67C5B745D197A5DC
|
||||
Switches:
|
||||
Silent: /quiet /norestart
|
||||
SilentWithProgress: /passive /norestart
|
20
manifests/7Zip/7Zip/20.0.0-alpha-2.yaml
Normal file
20
manifests/7Zip/7Zip/20.0.0-alpha-2.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
Id: 7zip.7zip
|
||||
Name: 7Zip
|
||||
AppMoniker: 7zip
|
||||
Version: 20.0.0-alpha-2
|
||||
Publisher: 7zip
|
||||
Author: 7zip
|
||||
License: Copyright (C) 1999-2020 Igor Pavlov. - GNU LGPL
|
||||
LicenseUrl: https://7-zip.org/license.txt
|
||||
MinOSVersion: 10.0.0.0
|
||||
Homepage: https://www.7-zip.org/
|
||||
Description: Free and open source file archiver with a high compression ratio.
|
||||
Tags: "7zip,compression,file compression,utility,tool,zip"
|
||||
InstallerType: exe
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://7-zip.org/a/7z2002-x64.exe
|
||||
Sha256: 356E128FCE6625F5BBE03D4B8B6DFCD744EE4482A16E9E495EE44AD77C2435E5
|
||||
Switches:
|
||||
Silent: /S
|
||||
SilentWithProgress: /S
|
20
manifests/7Zip/7Zip/20.0.0-alpha.yaml
Normal file
20
manifests/7Zip/7Zip/20.0.0-alpha.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
Id: 7zip.7zip
|
||||
Name: 7Zip
|
||||
AppMoniker: 7zip
|
||||
Version: 20.0.0-alpha
|
||||
Publisher: 7zip
|
||||
Author: 7zip
|
||||
License: Copyright (C) 1999-2020 Igor Pavlov. - GNU LGPL
|
||||
LicenseUrl: https://7-zip.org/license.txt
|
||||
MinOSVersion: 10.0.0.0
|
||||
Homepage: https://www.7-zip.org/
|
||||
Description: Free and open source file archiver with a high compression ratio.
|
||||
Tags: "7zip,compression,file compression,utility,tool,zip"
|
||||
InstallerType: exe
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://7-zip.org/a/7z2000-x64.exe
|
||||
Sha256: 93b1739c237179186d4da1a6c0e821e208663915d3f1bbd7a4377d96aa6894a4
|
||||
Switches:
|
||||
Silent: /S
|
||||
SilentWithProgress: /S
|
14
manifests/7room/Aya/0.10.4.yaml
Normal file
14
manifests/7room/Aya/0.10.4.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
Id: 7room.Aya
|
||||
Version: 0.10.4
|
||||
Name: Aya
|
||||
Publisher: 7room
|
||||
License: Copyright (c) 2017-2020 7room
|
||||
AppMoniker: aya
|
||||
Tags: "duplicates, disk usage, disk space"
|
||||
Description: A well-designed tool that helps you take control over your large files and get rid of the useless ones.
|
||||
Homepage: https://getaya.co/
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/7room/aya/releases/download/v0.10.4/Aya.Setup.0.10.4.exe
|
||||
Sha256: 699B2571C652C8F7FB1F5E15DAADC434E7E2FEADC02A331366A9CC267041F72B
|
||||
InstallerType: inno
|
@@ -1,22 +0,0 @@
|
||||
PackageIdentifier: 8x8.VirtualOfficeDesktop
|
||||
PackageVersion: 7.4.3.5
|
||||
PackageName: Virtual Office Desktop
|
||||
Publisher: 8x8
|
||||
License: Copyright (C) 8x8
|
||||
Tags:
|
||||
- 8x8
|
||||
- vod
|
||||
ShortDescription: 8x8.VirtualOfficeDesktop
|
||||
Description: Virtual Office Desktop is a comprehensive unified communications application that integrates a business softphone with visual voicemail, corporate directory, instant messaging, presence, video calling, fax, call recording, web conferencing, and social media.
|
||||
PackageUrl: https://www.8x8.com/au/voip-business-phone-services/features/virtual-office-desktop
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerUrl: https://vod-updates.8x8.com/ga/work-64-msi-v7.4.3-5.msi
|
||||
InstallerSha256: 9158e4919ea139853658777b3e75ff1114fe841c4af758308cba00af2693872c
|
||||
InstallerType: msi
|
||||
InstallerSwitches:
|
||||
Silent: /quiet /norestart
|
||||
SilentWithProgress: /passive /norestart
|
||||
PackageLocale: en-US
|
||||
ManifestType: singleton
|
||||
ManifestVersion: 1.0.0
|
16
manifests/8x8/VirtualOfficeDesktop/7.0.4-1.yaml
Normal file
16
manifests/8x8/VirtualOfficeDesktop/7.0.4-1.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
Id: 8x8.VirtualOfficeDesktop
|
||||
Version: 7.0.4-1
|
||||
Name: Virtual Office Desktop
|
||||
Publisher: 8x8
|
||||
License: Copyright (C) 8x8
|
||||
Tags: 8x8, vod
|
||||
Description: Virtual Office Desktop is a comprehensive unified communications application that integrates a business softphone with visual voicemail, corporate directory, instant messaging, presence, video calling, fax, call recording, web conferencing, and social media.
|
||||
Homepage: https://www.8x8.com/au/voip-business-phone-services/features/virtual-office-desktop
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://support.8x8.com/@api/deki/files/1947/work_7.0.4-1_64-bit.msi?revision=54
|
||||
Sha256: 12AD672C7FFBAF3B3002DB8485026FB20193F5E9F4F99961E30DE4FA4057FCA0
|
||||
InstallerType: msi
|
||||
Switches:
|
||||
Silent: /quiet /norestart
|
||||
SilentWithProgress: /passive /norestart
|
17
manifests/AIMP/AIMP/4.6.2180.yaml
Normal file
17
manifests/AIMP/AIMP/4.6.2180.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
Id: AIMP.AIMP
|
||||
Publisher: AIMP
|
||||
Name: AIMP
|
||||
Version: 4.6.2180
|
||||
License: © Artem Izmaylov 2006-2020 | All rights reserved
|
||||
LicenseUrl: https://www.aimp.ru/files/windows/EULA_lang-en.txt
|
||||
Description: AIMP is a freeware audio player
|
||||
Homepage: https://www.aimp.ru
|
||||
Tags: audio player, aimp
|
||||
InstallerType: exe
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://aimp.su/storage/e226bc978084020a8de2c5d2c01f2b2a/aimp_4.60.2180.exe
|
||||
Sha256: c4839b82859219745ffd09853687ce12bac0b30cb8028d1e4401143e5d8ad9b4
|
||||
Switches:
|
||||
Silent: /AUTO /SILENT
|
||||
SilentWithProgress: /AUTO
|
35
manifests/AIMP/AIMP/4.70.2223.yaml
Normal file
35
manifests/AIMP/AIMP/4.70.2223.yaml
Normal file
@@ -0,0 +1,35 @@
|
||||
# ================== General ==================
|
||||
Id: AIMP.AIMP
|
||||
Publisher: AIMP
|
||||
Name: AIMP
|
||||
Author: Artem Izmaylov, Mike Green
|
||||
Description: AIMP is a freeware audio player
|
||||
AppMoniker: aimp
|
||||
Tags: audio player, music player
|
||||
FileExtensions: CDA, AAC, AC3, APE, DTS, FLAC, IT, MIDI, MO3, MOD, M4A, M4B, MP1, MP2, MP3, MPC, MTM, OFR, OGG, OPUS, RMI, S3M, .SPX, TAK, TTA, UMX, WAV, WMA, WV, XM
|
||||
|
||||
# ================== License ==================
|
||||
Homepage: https://www.aimp.ru
|
||||
License: LGPLv2.1 - © Artem Izmaylov 2006-2020 | All rights reserved
|
||||
LicenseUrl: https://www.aimp.ru/files/windows/EULA_lang-en.txt
|
||||
|
||||
# ================= Installer =================
|
||||
MinOSVersion: 10.0.0.0
|
||||
#Channel: stable # Channel is not supported in this preview (5/24/2020)
|
||||
Version: 4.70.2223
|
||||
|
||||
Switches:
|
||||
Custom: /AUTO
|
||||
Silent: /SILENT
|
||||
SilentWithProgress: ""
|
||||
#Interactive:
|
||||
Language: en-US
|
||||
|
||||
InstallerType: exe
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: http://aimp.su/storage/5d648560b632931337526c18c0c48c6d/aimp_4.70.2223.exe
|
||||
Sha256: 35c4d54d931a6e68ba39c5b8d4738347224a9270cf219dae8eca3fff4e28b77d
|
||||
Scope: machine
|
||||
|
||||
# ManifestVersion: 0.1.0
|
36
manifests/AIMP/AIMP/4.70.2224.yaml
Normal file
36
manifests/AIMP/AIMP/4.70.2224.yaml
Normal file
@@ -0,0 +1,36 @@
|
||||
# ================== General ==================
|
||||
Id: AIMP.AIMP
|
||||
Publisher: AIMP
|
||||
Name: AIMP
|
||||
Author: Artem Izmaylov, Mike Green
|
||||
Description: AIMP is a freeware audio player
|
||||
AppMoniker: aimp
|
||||
Tags: audio player, music player
|
||||
FileExtensions: CDA, AAC, AC3, APE, DTS, FLAC, IT, MIDI, MO3, MOD, M4A, M4B, MP1, MP2, MP3, MPC, MTM, OFR, OGG, OPUS, RMI, S3M, .SPX, TAK, TTA, UMX, WAV, WMA, WV, XM
|
||||
|
||||
# ================== License ==================
|
||||
Homepage: https://www.aimp.ru
|
||||
License: LGPLv2.1 - © Artem Izmaylov 2006-2020 | All rights reserved
|
||||
LicenseUrl: https://www.aimp.ru/files/windows/EULA_lang-en.txt
|
||||
|
||||
# ================= Installer =================
|
||||
MinOSVersion: 10.0.0.0
|
||||
#Channel: stable # Channel is not supported in this preview (5/24/2020)
|
||||
Version: 4.70.2224
|
||||
|
||||
Switches:
|
||||
Custom: /AUTO
|
||||
Silent: /SILENT
|
||||
SilentWithProgress: ""
|
||||
#Interactive:
|
||||
Language: en-US
|
||||
|
||||
InstallerType: exe
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: http://aimp.su/storage/3aa6163b63c99a2b9bb51abdf094d3ad/aimp_4.70.2224.exe
|
||||
Sha256: 95c7e540a9bce06e5ce19d664c83f1f63db8729b08244e3e46ce31fb63c9c6f0
|
||||
Scope: machine
|
||||
|
||||
# ManifestVersion: 0.1.0
|
||||
|
13
manifests/Aardappel/Cube/2005.08.29.yaml
Normal file
13
manifests/Aardappel/Cube/2005.08.29.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
Id: Aardappel.Cube
|
||||
Version: 2005.08.29
|
||||
Name: Cube
|
||||
Publisher: Wouter 'Aardappel' van Oortmerssen
|
||||
License: zlib
|
||||
Tags: game, fps, first person, shooter, Sauerbraten
|
||||
Description: Cube is an open source multiplayer and singleplayer first person shooter game built on an entirely new and very unconventional engine. Cube is a landscape-style engine that pretends to be an indoor FPS engine, which combines very high precision dynamic occlusion culling with a form of geometric mipmapping on the whole world for dynamic LOD for configurable fps & graphic detail on most machines. Uses OpenGL & SDL.
|
||||
Homepage: http://cubeengine.com/cube.php
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: https://sourceforge.net/projects/cube/files/cube/2005_08_29/cube_2005_08_29_win32.exe/download
|
||||
Sha256: A4C8839AADD08AB10B3712644CED2E54BEE8500D7C73281DD00FC267C4382798
|
||||
InstallerType: nullsoft
|
13
manifests/Aardappel/Cube2/2013.04.04.yaml
Normal file
13
manifests/Aardappel/Cube2/2013.04.04.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
Id: Aardappel.Cube2
|
||||
Version: 2013.04.04
|
||||
Name: "Cube 2: Sauerbraten"
|
||||
Publisher: Wouter 'Aardappel' van Oortmerssen
|
||||
License: zlib
|
||||
Tags: cube, game, fps, shooter, first person
|
||||
Description: "Cube 2: Sauerbraten is a free multiplayer & singleplayer first person shooter, the successor of the Cube FPS. Much like the original Cube, the aim of this game is fun, old school deathmatch gameplay and also to allow map/geometry editing to be done cooperatively in-game."
|
||||
Homepage: http://sauerbraten.org/
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: http://sourceforge.net/projects/sauerbraten/files/sauerbraten/2013_01_04/sauerbraten_2013_04_04_collect_edition_windows.exe/download
|
||||
Sha256: 949A63EED9E63B5C9EC36D0166B45661DFBA51E0A71BA21FE1DCC441E832DB74
|
||||
InstallerType: nullsoft
|
13
manifests/Abacus/AbaClient/2.1.600.yaml
Normal file
13
manifests/Abacus/AbaClient/2.1.600.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
Id: Abacus.AbaClient
|
||||
Version: 2.1.600
|
||||
Name: AbaClient
|
||||
Publisher: Abacus Research AG
|
||||
License: Copyright (c) 2020 Abacus Research AG
|
||||
LicenseUrl: https://classic.abacus.ch/downloads-page/lizenzbestimmungen/
|
||||
Description: AbaClient allows to log-in into your Abacus Business Software or AbaWeb - without any internet browser and without having java installed.
|
||||
Homepage: https://classic.abacus.ch/downloads-page/abaclient/
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: https://storage.googleapis.com/images.abasky.net/119676df089a90ab3c3004398806433938052586dcd9a6bcacfb0e3e4024f339/2.1.600/abaclient-2.1.600-de.msi
|
||||
Sha256: C026996927FABA9D008263003915970C6F34B29EDE1A02DF1EC6097F04A7CF6E
|
||||
InstallerType: msi
|
12
manifests/AcroSoftware/CutePDFWriter/4.0.0.4.yaml
Normal file
12
manifests/AcroSoftware/CutePDFWriter/4.0.0.4.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
Id: AcroSoftware.CutePDFWriter
|
||||
Version: 4.0.0.4
|
||||
Name: CutePDF Writer
|
||||
Publisher: Acro Software Inc.
|
||||
Homepage: http://www.cutepdf.com/Products/CutePDF/writer.asp
|
||||
License: Copyright © 2003-2020 Acro Software Inc.
|
||||
Description: CutePDF Writer, Create PDFs from almost any application
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://www.cutepdf.com/download/CuteWriter.exe
|
||||
InstallerType: Inno
|
||||
Sha256: DC0E49348AEA174F45EF38B49E3A65A805CDF4FC159C451F01639B8E4CD943C7
|
12
manifests/AdamMiskiewicz/GraphiQL/0.7.2.yaml
Normal file
12
manifests/AdamMiskiewicz/GraphiQL/0.7.2.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
Id: AdamMiskiewicz.GraphiQL
|
||||
Version: 0.7.2
|
||||
Name: GraphiQL
|
||||
Publisher: Adam Miskiewicz
|
||||
Homepage: https://github.com/skevy/graphiql-app
|
||||
License: Copyright © 2018 Adam Miskiewicz
|
||||
Description: A light, Electron-based wrapper around GraphiQL.
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/skevy/graphiql-app/releases/download/v0.7.2/graphiql-app-setup-0.7.2.exe
|
||||
InstallerType: Nullsoft
|
||||
Sha256: 1DF37A3D1A63ECDBB6BAF64538E542F6E678796560789A97D5D8CC8A08CB4B45
|
@@ -0,0 +1,18 @@
|
||||
Id: Adobe.AdobeAcrobatReaderDC-Czech
|
||||
Version: 19.8.20071.303822
|
||||
Name: Adobe Acrobat Reader DC Czech
|
||||
Publisher: Adobe
|
||||
License: Copyright (c) Adobe
|
||||
LicenseUrl: https://www.adobe.com/content/dam/cc/en/legal/licenses-terms/pdf/Reader-EULA-en_US-20181207.pdf
|
||||
AppMoniker: Adobe.AdobeAcrobatReaderDC-Czech
|
||||
Tags:
|
||||
Description: The free global standard for reliably viewing, printing, signing, and commenting on PDF documents.
|
||||
Homepage: https://acrobat.adobe.com/us/en/acrobat/pdf-reader.html
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/1900820071/AcroRdrDC1900820071_cs_CZ.exe
|
||||
Sha256: 1309ff29f1d41882c297a168e057f94ec40eafaf0ae03f0c8f00c0e2bc88b95a
|
||||
InstallerType: exe
|
||||
Switches:
|
||||
Silent: /sAll /rs /rps /l /re
|
||||
SilentWithProgress: /sPB /rs /rps /l /re
|
18
manifests/Adobe/AdobeAcrobatReaderDC/2020.009.20063.yaml
Normal file
18
manifests/Adobe/AdobeAcrobatReaderDC/2020.009.20063.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
Id: Adobe.AdobeAcrobatReaderDC
|
||||
Version: 2020.009.20063
|
||||
Name: Adobe Acrobat Reader DC
|
||||
Publisher: Adobe
|
||||
License: Copyright (c) Adobe
|
||||
LicenseUrl: https://www.adobe.com/content/dam/cc/en/legal/licenses-terms/pdf/Reader-EULA-en_US-20181207.pdf
|
||||
AppMoniker: adobereader
|
||||
Description: The free global standard for reliably viewing, printing, signing, and commenting on PDF documents.
|
||||
Homepage: https://acrobat.adobe.com/us/en/acrobat/pdf-reader.html
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: https://ardownload2.adobe.com/pub/adobe/reader/win/AcrobatDC/2000920063/AcroRdrDC2000920063_MUI.exe
|
||||
Sha256: 0ff4fe9ac2186d5d3cbeb10748c75dd8bc2955e4eaf94ea7cf3fc9dc0ead812a
|
||||
InstallerType: exe
|
||||
Switches:
|
||||
Silent: /sAll /rs /rps /l /re
|
||||
SilentWithProgress: /sPB /rs /rps /l /re
|
||||
Language: Multilingual
|
@@ -0,0 +1,18 @@
|
||||
Id: Adobe.AdobeAcrobatReaderDC
|
||||
Version: 2020.012.20041 (de-DE)
|
||||
Name: Adobe Acrobat Reader DC
|
||||
Publisher: Adobe
|
||||
License: Copyright (c) Adobe
|
||||
LicenseUrl: https://www.adobe.com/content/dam/cc/en/legal/licenses-terms/pdf/Reader-EULA-en_US-20181207.pdf
|
||||
AppMoniker: Adobe Acrobat Reader DC (deutsch)
|
||||
Tags: adobe reader, Adobe Acrobat Reader DC (Deutsch)
|
||||
Description: The free global standard for reliably viewing, printing, signing, and commenting on PDF documents.
|
||||
Homepage: https://acrobat.adobe.com/us/en/acrobat/pdf-reader.html
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/2001220041/AcroRdrDC2001220041_de_DE.exe
|
||||
Sha256: 4BFAF76912C6866445A996ABACFBD4A8E75992ACD0C32F8958AA2B28F777BAC8
|
||||
InstallerType: exe
|
||||
Switches:
|
||||
Silent: /sAll /rs /rps /l /re
|
||||
SilentWithProgress: /sPB /rs /rps /l /re
|
@@ -0,0 +1,18 @@
|
||||
Id: Adobe.AdobeAcrobatReaderDC
|
||||
Version: 2020.012.20041 (es-ES)
|
||||
Name: Adobe Acrobat Reader DC
|
||||
Publisher: Adobe
|
||||
License: Copyright (c) Adobe
|
||||
LicenseUrl: https://www.adobe.com/content/dam/cc/en/legal/licenses-terms/pdf/Reader-EULA-en_US-20181207.pdf
|
||||
AppMoniker: Adobe Acrobat Reader DC (Spanish)
|
||||
Tags: adobe reader, Adobe Acrobat Reader DC (Spanish)
|
||||
Description: The free global standard for reliably viewing, printing, signing, and commenting on PDF documents.
|
||||
Homepage: https://acrobat.adobe.com/us/en/acrobat/pdf-reader.html
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/2001220041/AcroRdrDC2001220041_es_ES.exe
|
||||
Sha256: 74D3DFFC624F7A2D90BA84B350AA0854B4D55A8B87506CC4E945508A673B8D30
|
||||
InstallerType: exe
|
||||
Switches:
|
||||
Silent: /sAll /rs /rps /l /re
|
||||
SilentWithProgress: /sPB /rs /rps /l /re
|
@@ -0,0 +1,18 @@
|
||||
Id: Adobe.AdobeAcrobatReaderDC
|
||||
Version: 2020.012.20041 (fr-FR)
|
||||
Name: Adobe Acrobat Reader DC
|
||||
Publisher: Adobe
|
||||
License: Copyright (c) Adobe
|
||||
LicenseUrl: https://www.adobe.com/content/dam/cc/en/legal/licenses-terms/pdf/Reader-EULA-en_US-20181207.pdf
|
||||
AppMoniker: Adobe Acrobat Reader DC (French)
|
||||
Tags: adobe reader, Adobe Acrobat Reader DC (French)
|
||||
Description: The free global standard for reliably viewing, printing, signing, and commenting on PDF documents.
|
||||
Homepage: https://acrobat.adobe.com/us/en/acrobat/pdf-reader.html
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/2001220041/AcroRdrDC2001220041_fr_FR.exe
|
||||
Sha256: C29C03667852929FB028B098E529FD3C60EBB51BC4FAD4A8F5DD2D44E410282D
|
||||
InstallerType: exe
|
||||
Switches:
|
||||
Silent: /sAll /rs /rps /l /re
|
||||
SilentWithProgress: /sPB /rs /rps /l /re
|
@@ -0,0 +1,18 @@
|
||||
Id: Adobe.AdobeAcrobatReaderDC
|
||||
Version: 2020.012.20041 (ja-JP)
|
||||
Name: Adobe Acrobat Reader DC
|
||||
Publisher: Adobe
|
||||
License: Copyright (c) Adobe
|
||||
LicenseUrl: https://www.adobe.com/content/dam/cc/en/legal/licenses-terms/pdf/Reader-EULA-en_US-20181207.pdf
|
||||
AppMoniker: Adobe Acrobat Reader DC (Japanese)
|
||||
Tags: adobe reader, Adobe Acrobat Reader DC (Japanese)
|
||||
Description: The free global standard for reliably viewing, printing, signing, and commenting on PDF documents.
|
||||
Homepage: https://acrobat.adobe.com/us/en/acrobat/pdf-reader.html
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/2001220041/AcroRdrDC2001220041_ja_JP.exe
|
||||
Sha256: F7B04F8044D3C5FECB3EF2F8427AB048D0D533C9FA0F6B9C6774232CB703FCD7
|
||||
InstallerType: exe
|
||||
Switches:
|
||||
Silent: /sAll /rs /rps /l /re
|
||||
SilentWithProgress: /sPB /rs /rps /l /re
|
18
manifests/Adobe/AdobeAcrobatReaderDC/2020.012.20041.yaml
Normal file
18
manifests/Adobe/AdobeAcrobatReaderDC/2020.012.20041.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
Id: Adobe.AdobeAcrobatReaderDC
|
||||
Version: 2020.012.20041
|
||||
Name: Adobe Acrobat Reader DC
|
||||
Publisher: Adobe
|
||||
License: Copyright (c) Adobe
|
||||
LicenseUrl: https://www.adobe.com/content/dam/cc/en/legal/licenses-terms/pdf/Reader-EULA-en_US-20181207.pdf
|
||||
AppMoniker: adobe reader
|
||||
Tags: adobe reader
|
||||
Description: The free global standard for reliably viewing, printing, signing, and commenting on PDF documents.
|
||||
Homepage: https://acrobat.adobe.com/us/en/acrobat/pdf-reader.html
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: http://ardownload.adobe.com/pub/adobe/reader/win/AcrobatDC/2001220041/AcroRdrDC2001220041_en_US.exe
|
||||
Sha256: 9DD98FE4D1ABD7574CA99FA697983A1865BF1F343172E228C2BFBF638C2DDF73
|
||||
InstallerType: exe
|
||||
Switches:
|
||||
Silent: /sAll /rs /rps /l /re
|
||||
SilentWithProgress: /sPB /rs /rps /l /re
|
22
manifests/Adobe/AdobeDigitalEditions/4.5.11.yaml
Normal file
22
manifests/Adobe/AdobeDigitalEditions/4.5.11.yaml
Normal file
@@ -0,0 +1,22 @@
|
||||
Id: Adobe.AdobeDigitalEditions
|
||||
Name: AdobeDigitalEditions
|
||||
AppMoniker: adobe.digital.editions
|
||||
Version: 4.5.11
|
||||
Publisher: Adobe
|
||||
Author: Adobe
|
||||
License: Adobe General Terms of Use
|
||||
LicenseUrl: https://www.adobe.com/legal/terms.html
|
||||
MinOSVersion: 10.0.0.0
|
||||
Homepage: https://www.adobe.com/solutions/ebook/digital-editions.html
|
||||
Tags: "adobedigitaleditions"
|
||||
InstallerType: exe
|
||||
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://adedownload.adobe.com/pub/adobe/digitaleditions/ADE_4.5_Installer.exe
|
||||
Sha256: A21A9D5389728FDAC6A7288953DDDEEA774EF2BEE07F1CAF7EA20BBED8F5A2C6
|
||||
Language: en-US
|
||||
Scope: user
|
||||
Switches:
|
||||
Silent: "/S NSS=0"
|
||||
SilentWithProgress: "/S NSS=0"
|
21
manifests/Adobe/Brackets/1.14.2.yaml
Normal file
21
manifests/Adobe/Brackets/1.14.2.yaml
Normal file
@@ -0,0 +1,21 @@
|
||||
Id: Adobe.Brackets
|
||||
Name: Brackets
|
||||
AppMoniker: brackets.io
|
||||
Version: 1.14.2
|
||||
Publisher: Adobe
|
||||
Author: Adobe
|
||||
Description: With focused visual tools and preprocessor support, Brackets is a modern text editor that makes it easy to design in the browser. It's crafted from the ground up for web designers and front-end developers.
|
||||
License: MIT License
|
||||
LicenseUrl: https://github.com/adobe/brackets/blob/master/LICENSE
|
||||
MinOSVersion: 10.0.0.0
|
||||
Homepage: http://brackets.io/
|
||||
Tags: "brackets"
|
||||
InstallerType: msi
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/adobe/brackets/releases/download/release-1.14.2/Brackets.Release.1.14.2.msi
|
||||
Sha256: 5F059E271FE78FEFE224E187B6EF559445B1EFADD6DCA9446A99CA1A53EB4E56
|
||||
Language: en-US
|
||||
Scope: user
|
||||
Switches:
|
||||
Custom: /QUIET /NORESTART
|
16
manifests/Adobe/FlashPlayer32NPAPI/32.0.0.387.yaml
Normal file
16
manifests/Adobe/FlashPlayer32NPAPI/32.0.0.387.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
Id: Adobe.FlashPlayer32NPAPI
|
||||
Publisher: Adobe
|
||||
Name: Adobe Flash Player 32 NPAPI (Firefox)
|
||||
Version: 32.0.0.387
|
||||
License: Copyright (c) Adobe
|
||||
InstallerType: MSI
|
||||
LicenseUrl: https://www.adobe.com/content/dam/cc/en/legal/licenses-terms/pdf/Flash_Player_32_0.pdf
|
||||
AppMoniker: flash-player-npapi
|
||||
Tags: adobe flash player
|
||||
Description: flash-player-npapi
|
||||
Homepage: https://www.adobe.com/products/flashplayer.html
|
||||
Installers:
|
||||
- Arch: x64
|
||||
InstallerType: MSI
|
||||
Url: https://fpdownload.macromedia.com/pub/flashplayer/pdc/32.0.0.387/install_flash_player_32_plugin.msi
|
||||
Sha256: 08480A2353A45563FE3AC4AC2F421B9FE8A14E3C5E585671E3485A364DACD725
|
16
manifests/Adobe/FlashPlayer32NPAPI/32.0.0.403.yaml
Normal file
16
manifests/Adobe/FlashPlayer32NPAPI/32.0.0.403.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
Id: Adobe.FlashPlayer32NPAPI
|
||||
Publisher: Adobe
|
||||
Name: Adobe Flash Player 32 NPAPI (Firefox)
|
||||
Version: 32.0.0.403
|
||||
License: Copyright (c) Adobe
|
||||
InstallerType: MSI
|
||||
LicenseUrl: https://www.adobe.com/content/dam/cc/en/legal/licenses-terms/pdf/Flash_Player_32_0.pdf
|
||||
AppMoniker: flash-player-npapi
|
||||
Tags: adobe flash player
|
||||
Description: flash-player-npapi
|
||||
Homepage: https://www.adobe.com/products/flashplayer.html
|
||||
Installers:
|
||||
- Arch: x64
|
||||
InstallerType: MSI
|
||||
Url: https://fpdownload.macromedia.com/pub/flashplayer/pdc/32.0.0.403/install_flash_player_32_plugin.msi
|
||||
Sha256: BD8C73D754C2D2A5ECA07975DC5C5E9DE3B6FC3B84D901A1ACD4AC82FFC79792
|
16
manifests/Adobe/FlashPlayer32PPAPI/32.0.0.387.yaml
Normal file
16
manifests/Adobe/FlashPlayer32PPAPI/32.0.0.387.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
Id: Adobe.FlashPlayer32PPAPI
|
||||
Publisher: Adobe
|
||||
Name: Adobe Flash Player 32 PPAPI
|
||||
Version: 32.0.0.387
|
||||
License: Copyright (c) Adobe
|
||||
InstallerType: MSI
|
||||
LicenseUrl: https://www.adobe.com/content/dam/cc/en/legal/licenses-terms/pdf/Flash_Player_32_0.pdf
|
||||
AppMoniker: FlashPlayer32PPAPI
|
||||
Tags: adobe flash player
|
||||
Description: Flash Player 32 PPAPI
|
||||
Homepage: https://www.adobe.com/products/flashplayer.html
|
||||
Installers:
|
||||
- Arch: x64
|
||||
InstallerType: MSI
|
||||
Url: https://fpdownload.macromedia.com/pub/flashplayer/pdc/32.0.0.387/install_flash_player_32_ppapi.msi
|
||||
Sha256: 7E094075428B9648A1A477D0A0FF729EC06FC6D5298D2E3F02EFBBED2F73F5C0
|
16
manifests/Adobe/FlashPlayer32PPAPI/32.0.0.403.yaml
Normal file
16
manifests/Adobe/FlashPlayer32PPAPI/32.0.0.403.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
Id: Adobe.FlashPlayer32PPAPI
|
||||
Publisher: Adobe
|
||||
Name: Adobe Flash Player 32 PPAPI
|
||||
Version: 32.0.0.403
|
||||
License: Copyright (c) Adobe
|
||||
InstallerType: MSI
|
||||
LicenseUrl: https://www.adobe.com/content/dam/cc/en/legal/licenses-terms/pdf/Flash_Player_32_0.pdf
|
||||
AppMoniker: FlashPlayer32PPAPI
|
||||
Tags: adobe flash player
|
||||
Description: Flash Player 32 PPAPI
|
||||
Homepage: https://www.adobe.com/products/flashplayer.html
|
||||
Installers:
|
||||
- Arch: x64
|
||||
InstallerType: MSI
|
||||
Url: https://fpdownload.macromedia.com/pub/flashplayer/pdc/32.0.0.403/install_flash_player_32_ppapi.msi
|
||||
Sha256: 4830E3E258ADB8A21160A793F292135B11705B106B2039A2DD1AEDD868EC3D66
|
14
manifests/AdoptOpenJDK/OpenJDK/11.0.7.yaml
Normal file
14
manifests/AdoptOpenJDK/OpenJDK/11.0.7.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
Id: AdoptOpenJDK.OpenJDK
|
||||
Version: 11.0.7
|
||||
Name: AdoptOpenJDK 11.0.7+10 (x64)
|
||||
Publisher: AdoptOpenJDK
|
||||
Homepage: https://adoptopenjdk.net
|
||||
License: GPL 2 with Classpath Exception
|
||||
LicenseUrl: https://github.com/AdoptOpenJDK/openjdk-jdk/blob/master/LICENSE
|
||||
Description: Community-driven, Vendor-neutral build of OpenJDK for Windows x64.
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.7%2B10.2/OpenJDK11U-jdk_x64_windows_hotspot_11.0.7_10.msi
|
||||
InstallerType: Msi
|
||||
Sha256: 9e76536841e3002f7f40c523643bceafa2f406df2cd740309a01b55a6c0e9039
|
||||
|
14
manifests/AdoptOpenJDK/OpenJDK/11.0.8.yaml
Normal file
14
manifests/AdoptOpenJDK/OpenJDK/11.0.8.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
Id: AdoptOpenJDK.OpenJDK
|
||||
Version: 11.0.8
|
||||
Name: AdoptOpenJDK 11.0.8+10 (x64)
|
||||
Publisher: AdoptOpenJDK
|
||||
Homepage: https://adoptopenjdk.net
|
||||
License: GPL 2 with Classpath Exception
|
||||
LicenseUrl: https://github.com/AdoptOpenJDK/openjdk-jdk/blob/master/LICENSE
|
||||
Description: Community-driven, Vendor-neutral build of OpenJDK for Windows x64.
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.8%2B10/OpenJDK11U-jdk_x64_windows_hotspot_11.0.8_10.msi
|
||||
InstallerType: Msi
|
||||
Sha256: 148B487E0DDE39EC5C0F32AA2397C17968B6CF6818822CEA2B2394DFD0157396
|
||||
|
17
manifests/AdoptOpenJDK/OpenJDK/14.0.1.yaml
Normal file
17
manifests/AdoptOpenJDK/OpenJDK/14.0.1.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
Id: AdoptOpenJDK.OpenJDK
|
||||
Version: 14.0.1
|
||||
Name: AdoptOpenJDK
|
||||
Publisher: AdoptOpenJDK
|
||||
License: GPL 2 with Classpath Exception
|
||||
LicenseUrl: https://adoptopenjdk.net/about.html
|
||||
AppMoniker: adoptopenjdk14
|
||||
Tags: "openjdk, java, jvm, jdk"
|
||||
Description: AdoptOpenJDK with Oracle HotSpot JVM
|
||||
Homepage: https://adoptopenjdk.net
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/AdoptOpenJDK/openjdk14-binaries/releases/download/jdk-14.0.1%2B7.1/OpenJDK14U-jdk_x64_windows_hotspot_14.0.1_7.msi
|
||||
Sha256: BD116AD1FB3DBE395DF50068761E159348457E79AAFB19F6A78D96B258AEE2F2
|
||||
InstallerType: msi
|
||||
Switches:
|
||||
Custom: INSTALLLEVEL=3
|
17
manifests/AdoptOpenJDK/OpenJDK/14.0.2.yaml
Normal file
17
manifests/AdoptOpenJDK/OpenJDK/14.0.2.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
Id: AdoptOpenJDK.OpenJDK
|
||||
Version: 14.0.2
|
||||
Name: AdoptOpenJDK 14.0.2+12 (x64)
|
||||
Publisher: AdoptOpenJDK
|
||||
License: GPL 2 with Classpath Exception
|
||||
LicenseUrl: https://adoptopenjdk.net/about.html
|
||||
AppMoniker: adoptopenjdk14
|
||||
Tags: "openjdk, java, jvm, jdk"
|
||||
Description: AdoptOpenJDK with Oracle HotSpot JVM
|
||||
Homepage: https://adoptopenjdk.net
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/AdoptOpenJDK/openjdk14-binaries/releases/download/jdk-14.0.2%2B12/OpenJDK14U-jdk_x64_windows_hotspot_14.0.2_12.msi
|
||||
Sha256: 9CBD03600E58AD8D2383C15E596396FBDFBC9655BA0019F5BC74C910E4082C7C
|
||||
InstallerType: msi
|
||||
Switches:
|
||||
Custom: INSTALLLEVEL=3
|
13
manifests/AdoptOpenJDK/OpenJDK/8.0.252.yaml
Normal file
13
manifests/AdoptOpenJDK/OpenJDK/8.0.252.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
Id: AdoptOpenJDK.OpenJDK
|
||||
Version: 8.0.252
|
||||
Name: AdoptOpenJDK 8.0.252.09 (x64)
|
||||
Publisher: AdoptOpenJDK
|
||||
Homepage: https://adoptopenjdk.net
|
||||
License: GPL 2 with Classpath Exception
|
||||
LicenseUrl: https://github.com/AdoptOpenJDK/openjdk-jdk/blob/master/LICENSE
|
||||
Description: Community-driven, Vendor-neutral build of OpenJDK for Windows x64.
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u252-b09.1/OpenJDK8U-jdk_x64_windows_hotspot_8u252b09.msi
|
||||
InstallerType: Msi
|
||||
Sha256: 5a1076e1fc0228b658bd567e7644283ee5169c92ff91460c22caa0c11fde9e4a
|
13
manifests/AdoptOpenJDK/OpenJDK/8.0.265.yaml
Normal file
13
manifests/AdoptOpenJDK/OpenJDK/8.0.265.yaml
Normal file
@@ -0,0 +1,13 @@
|
||||
Id: AdoptOpenJDK.OpenJDK
|
||||
Version: 8.0.265
|
||||
Name: AdoptOpenJDK 8.0.265.01 (x64)
|
||||
Publisher: AdoptOpenJDK
|
||||
Homepage: https://adoptopenjdk.net
|
||||
License: GPL 2 with Classpath Exception
|
||||
LicenseUrl: https://github.com/AdoptOpenJDK/openjdk-jdk/blob/master/LICENSE
|
||||
Description: Community-driven, Vendor-neutral build of OpenJDK for Windows x64.
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u265-b01/OpenJDK8U-jdk_x64_windows_hotspot_8u265b01.msi
|
||||
InstallerType: Msi
|
||||
Sha256: 3749BFD8DCC4CE3877A5B593F7DF8FE05D7294435B62A919BE35A003C559E033
|
12
manifests/AdrianAllard/FileConverter/1.2.3.yaml
Normal file
12
manifests/AdrianAllard/FileConverter/1.2.3.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
Id: AdrianAllard.FileConverter
|
||||
Version: 1.2.3
|
||||
Name: File Converter (64 bit)
|
||||
Publisher: Adrien Allard
|
||||
Homepage: http://www.file-converter.org
|
||||
License: Tichau/FileConverter is licensed under the GNU General Public License v3.0
|
||||
Description: File Converter is a very simple tool which allows you to convert and compress one or several file(s) using the context menu in windows explorer.
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/Tichau/FileConverter/releases/download/v1.2.3/FileConverter-1.2.3-x64-setup.msi
|
||||
InstallerType: Msi
|
||||
Sha256: 2410944075ED4F0BFD4740E9EE2FD17EAE4922980937D738C42BED07AC130C32
|
BIN
manifests/AdvancedLogViewer/AdvancedLogViewer/8.1.0.yaml
Normal file
BIN
manifests/AdvancedLogViewer/AdvancedLogViewer/8.1.0.yaml
Normal file
Binary file not shown.
15
manifests/Aegisub/Aegisub/r8942.yaml
Normal file
15
manifests/Aegisub/Aegisub/r8942.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
Id: Aegisub.Aegisub
|
||||
Version: r8942
|
||||
Name: Aegisub
|
||||
Publisher: Aegisub
|
||||
License: AEGISUB LICENSE
|
||||
LicenseUrl: https://github.com/Aegisub/Aegisub/blob/master/LICENCE
|
||||
AppMoniker: Aegisub
|
||||
Tags: Subtitle Editor, ASS
|
||||
Description: Aegisub is a free, cross-platform open source tool for creating and modifying subtitles. Aegisub makes it quick and easy to time subtitles to audio, and features many powerful tools for styling them, including a built-in real-time video preview.
|
||||
Homepage: http://www.aegisub.org/
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: http://plorkyeran.com/aegisub/downloads/aegisub-r8942-64.exe
|
||||
InstallerType: Inno
|
||||
Sha256: f840c56f374e3defad0d089fed38752a25b724fbfcac130918f7b375e9827293
|
18
manifests/AgileBits/1Password/7.4.767.yaml
Normal file
18
manifests/AgileBits/1Password/7.4.767.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
Id: AgileBits.1Password
|
||||
Version: 7.4.767
|
||||
Name: 1Password
|
||||
Publisher: AgileBits
|
||||
License: AgileBits, Inc. Terms of Service
|
||||
LicenseUrl: https://1password.com/legal/terms-of-service/
|
||||
AppMoniker: 1password
|
||||
Tags: password
|
||||
Description: 1Password remembers all your passwords for you, and keeps them safe and secure behind the one password that only you know.
|
||||
Homepage: https://1password.com/
|
||||
Installers:
|
||||
- Arch: Neutral
|
||||
Url: https://c.1password.com/dist/1P/win6/1PasswordSetup-7.4.767.exe
|
||||
Sha256: 5593E982AF53243C4575E71BC804506BD58CD05980F6E8A5DCE3799C57DF22AE
|
||||
InstallerType: exe
|
||||
Switches:
|
||||
Silent: --silent
|
||||
SilentWithProgress: --silent
|
18
manifests/AgileBits/1Password/7.6.778.yaml
Normal file
18
manifests/AgileBits/1Password/7.6.778.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
Id: AgileBits.1Password
|
||||
Version: 7.6.778
|
||||
Name: 1Password
|
||||
Publisher: AgileBits
|
||||
License: AgileBits, Inc. Terms of Service
|
||||
LicenseUrl: https://1password.com/legal/terms-of-service/
|
||||
AppMoniker: 1password
|
||||
Tags: password
|
||||
Description: 1Password remembers all your passwords for you, and keeps them safe and secure behind the one password that only you know.
|
||||
Homepage: https://1password.com/
|
||||
Installers:
|
||||
- Arch: Neutral
|
||||
Url: https://c.1password.com/dist/1P/win6/1PasswordSetup-7.6.778.exe
|
||||
Sha256: 9125df7ce28aebcb5f7afae444aa1e39d6c3139414e6065514160bba669a2964
|
||||
InstallerType: exe
|
||||
Switches:
|
||||
Silent: --silent
|
||||
SilentWithProgress: --silent
|
18
manifests/AgileBits/1Password/7.6.780.yaml
Executable file
18
manifests/AgileBits/1Password/7.6.780.yaml
Executable file
@@ -0,0 +1,18 @@
|
||||
Id: AgileBits.1Password
|
||||
Version: 7.6.780
|
||||
Name: 1Password
|
||||
Publisher: AgileBits
|
||||
License: AgileBits, Inc. Terms of Service
|
||||
LicenseUrl: https://1password.com/legal/terms-of-service/
|
||||
AppMoniker: 1password
|
||||
Tags: password
|
||||
Description: 1Password remembers all your passwords for you, and keeps them safe and secure behind the one password that only you know.
|
||||
Homepage: https://1password.com/
|
||||
Installers:
|
||||
- Arch: Neutral
|
||||
Url: https://c.1password.com/dist/1P/win6/1PasswordSetup-7.6.780.exe
|
||||
Sha256: 9B1D8FB9817BBDA78E8C349B2D327932D9344D269EADEBB7AA8FAE8F05491327
|
||||
InstallerType: exe
|
||||
Switches:
|
||||
Silent: --silent
|
||||
SilentWithProgress: --silent
|
15
manifests/AkelPad/AkelPad/4.9.8.yaml
Normal file
15
manifests/AkelPad/AkelPad/4.9.8.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
Id: AkelPad.AkelPad
|
||||
Version: 4.9.8
|
||||
Name: Akelpad Editor
|
||||
Publisher: Akelpad
|
||||
License: BSD 2 Clause
|
||||
LicenseUrl: https://opensource.org/licenses/BSD-3-Clause
|
||||
AppMoniker: akelpad
|
||||
Tags: "akelpad, notepad, text, editor"
|
||||
Description: An open source editor for plain text. It is designed to be a small and fast.
|
||||
Homepage: http://akelpad.sourceforge.net/
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://sourceforge.mirrorservice.org/a/ak/akelpad/AkelPad%204/4.9.8/x64/AkelPad-4.9.8-x64-setup.exe
|
||||
Sha256: D4D95A0456896CFD5FFEFA601D264126DAC170037E2594B87CA204D13D8A52A5
|
||||
InstallerType: nullsoft
|
BIN
manifests/Alacritty/Alacritty/0.4.3.yaml
Normal file
BIN
manifests/Alacritty/Alacritty/0.4.3.yaml
Normal file
Binary file not shown.
16
manifests/Alchemy/Viewer/6.3.6.46699.yaml
Normal file
16
manifests/Alchemy/Viewer/6.3.6.46699.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
Id: Alchemy.Viewer
|
||||
Publisher: Alchemy Development Group
|
||||
Version: 6.3.6.46699
|
||||
AppMoniker: Alchemy
|
||||
Name: Alchemy Viewer
|
||||
Tags: "Second Life, viewer, sl, open metaverse, openmetaverse, opensim, open sim"
|
||||
Description: Alchemy is a Second Life™ and OpenMetaverse compatible viewer striving to be at the forefront of stability, performance, and technological advancement in the open-source metaverse viewer field. We are always based on the latest release code from Linden Lab, and are currently in active development with new features, bug fixes, and performance optimizations landing in our source code repository nearly every day!
|
||||
Homepage: https://alchemyviewer.org/
|
||||
License: Copyright (C) 2019 Alchemy Development Group
|
||||
InstallerType: nullsoft
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Scope: machine
|
||||
Url: https://pkg.alchemyviewer.org/repository/viewer/alchemy/beta/6.3.6.46699/Alchemy_Beta_6_3_6_46699_x86_64_Setup.exe
|
||||
Sha256: 5078a4457aea8b31e9598d4ede65596986afbafad9d0aa85f925a34f5f6a32b0
|
||||
...
|
18
manifests/Alcpu/CoreTemp/1.15.1.yaml
Normal file
18
manifests/Alcpu/CoreTemp/1.15.1.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
Id: alcpu.CoreTemp
|
||||
Version: 1.15.1
|
||||
Name: CoreTemp
|
||||
Publisher: alcpu
|
||||
License: Copyright (C) 2006 - 2019 Alcpu
|
||||
LicenseUrl: https://www.alcpu.com/CoreTemp/terms.html
|
||||
AppMoniker: CoreTemp
|
||||
Tags: cpu temp monitoring
|
||||
Description: This application can monitor and visualize your processors temperature
|
||||
Homepage: https://www.alcpu.com/CoreTemp/
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://www.alcpu.com/CoreTemp/Core-Temp-setup.exe
|
||||
Sha256: EB4BF340404631DFBE1653B9D7B207421E9C7EFD9BD1B87CFD6CB861744975D2
|
||||
InstallerType: exe
|
||||
Switches:
|
||||
Silent: /VERYSILENT /NORESTART /LANG=en /TASKS="desktopicon,languagepacks"
|
||||
SilentWithProgress: /SILENT /NORESTART /LANG=en /TASKS="desktopicon,languagepacks"
|
14
manifests/AlexanderKojevnikov/Spek/0.8.2.0.yaml
Normal file
14
manifests/AlexanderKojevnikov/Spek/0.8.2.0.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
Id: AlexanderKojevnikov.Spek
|
||||
Publisher: Alexander Kojevnikov
|
||||
Name: Spek
|
||||
Version: 0.8.2.0
|
||||
License: GPLv3
|
||||
InstallerType: MSI
|
||||
Tags: audio, spectrogram
|
||||
Description: Spek helps to analyse your audio files by showing their spectrogram.
|
||||
Homepage: http://spek.cc/
|
||||
Installers:
|
||||
- Arch: x86
|
||||
InstallerType: MSI
|
||||
Url: https://github.com/alexkay/spek/releases/download/v0.8.2/spek-0.8.2.msi
|
||||
Sha256: 0FA1237597E9B1C966DF5701BC0A3DB88A7545C56F468BF6A21215ED4ABEA693
|
12
manifests/AlexandrSubbotin/Cerebro/0.3.2.yaml
Normal file
12
manifests/AlexandrSubbotin/Cerebro/0.3.2.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
Id: AlexandrSubbotin.Cerebro
|
||||
Version: 0.3.2
|
||||
Name: Cerebro
|
||||
Publisher: Alexandr Subbotin
|
||||
Homepage: https://github.com/KELiON/cerebro
|
||||
License: Copyright © 2017 Alexandr Subbotin
|
||||
Description: Extendable electron-based open-source Spolight and Alfred analogue
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/KELiON/cerebro/releases/download/v0.3.2/cerebro-setup-0.3.2.exe
|
||||
InstallerType: Nullsoft
|
||||
Sha256: 666C14CF17FF7AAABB6FF6781006B28DB25102A55ED500C3EA1FCB7DB16F1214
|
19
manifests/Algoryx/Algodoo/2.1.0.yaml
Normal file
19
manifests/Algoryx/Algodoo/2.1.0.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
Id: Algoryx.Algodoo
|
||||
Version: 2.1.0
|
||||
Name: Algodoo
|
||||
Publisher: Algoryx Simulation AB
|
||||
License: (c) 2019 Algoryx Simulation AB
|
||||
LicenseUrl: https://www.algodoo.com/license-agreement/
|
||||
Tags: simulation, 2d, physics, education, game, phun
|
||||
Description: Algodoo is a unique 2D-simulation software from Algoryx Simulation AB. Algodoo is designed in a playful, cartoony manner, making it a perfect tool for creating interactive scenes. Explore physics, build amazing inventions, design cool games or experiment with Algodoo in your science classes. Algodoo encourages students and children’s own creativity, ability and motivation to construct knowledge while having fun. Making it as entertaining as it is educational. Algodoo is also a perfect aid for children to learn and practice physics at home.
|
||||
Homepage: https://www.algodoo.com
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: https://www.algodoo.com/download/Algodoo_2_1_0-Win32.exe
|
||||
Sha256: 3E65D18C63B20C17AAEDD5C96F9751D914DC5E024EF001FC5CF569B94255CAA4
|
||||
InstallerType: inno
|
||||
Switches:
|
||||
Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART
|
||||
SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART
|
||||
|
||||
|
18
manifests/AltDrag/AltDrag/1.1.yaml
Normal file
18
manifests/AltDrag/AltDrag/1.1.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
Id: AltDrag.AltDrag
|
||||
Publisher: AltDrag
|
||||
Name: AltDrag
|
||||
Author: Stefan Sundin
|
||||
Version: 1.1
|
||||
License: GNU General Public License v3.0
|
||||
InstallerType: Nullsoft
|
||||
LicenseUrl: https://github.com/stefansundin/altdrag/blob/master/LICENSE
|
||||
AppMoniker: altdrag
|
||||
Tags: "altdrag"
|
||||
Description: Easily drag windows when pressing the alt key
|
||||
Homepage: https://stefansundin.github.io/altdrag/
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Switches:
|
||||
Url: https://github.com/stefansundin/altdrag/releases/download/v1.1/AltDrag-1.1.exe
|
||||
Sha256: 8B2DB17BC274DD9EC5135FCD316A1E22F97A59E3DCB36B2CF457505D3E2DA703
|
||||
|
19
manifests/Amazon/AWSCLI/1.18.65.yaml
Normal file
19
manifests/Amazon/AWSCLI/1.18.65.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
Id: Amazon.AWSCLI
|
||||
Publisher: AWS
|
||||
Name: aws-cli
|
||||
Version: 1.18.65
|
||||
License: Copyright 2012-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0
|
||||
LicenseUrl: https://github.com/aws/aws-cli/blob/1.18.65/LICENSE.txt
|
||||
Author: Amazon Web Services
|
||||
AppMoniker: aws
|
||||
Tags: "AWS,aws-cli,cloud"
|
||||
Description: Universal Command Line Interface for Amazon Web Services
|
||||
Homepage: https://aws.amazon.com/cli/
|
||||
InstallerType: msi
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://s3.amazonaws.com/aws-cli/AWSCLI64PY3-1.18.65.msi
|
||||
Sha256: 54b6f163d1e1fbaff1ebdb8a114299960df9d4381be1853f11bbb9dcdd7e52ef
|
||||
Switches:
|
||||
Silent: /quiet /norestart
|
||||
SilentWithProgress: /passive /norestart
|
19
manifests/Amazon/AWSCLI/2.0.16.yaml
Normal file
19
manifests/Amazon/AWSCLI/2.0.16.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
Id: Amazon.AWSCLI
|
||||
Publisher: AWS
|
||||
Name: aws-cli
|
||||
Version: 2.0.16
|
||||
License: Copyright 2012-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0
|
||||
LicenseUrl: https://github.com/aws/aws-cli/blob/2.0.16/LICENSE.txt
|
||||
Author: Amazon Web Services
|
||||
AppMoniker: aws
|
||||
Tags: "AWS,aws-cli,cloud"
|
||||
Description: Universal Command Line Interface for Amazon Web Services
|
||||
Homepage: https://aws.amazon.com/cli/
|
||||
InstallerType: msi
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://awscli.amazonaws.com/AWSCLIV2-2.0.16.msi
|
||||
Sha256: bec9e4a1e9fb87246efb878d2168e2b59766c3970c6fb20e335c11d4e5cab77a
|
||||
Switches:
|
||||
Silent: /quiet /norestart
|
||||
SilentWithProgress: /passive /norestart
|
19
manifests/Amazon/AWSCLI/2.0.19.yaml
Normal file
19
manifests/Amazon/AWSCLI/2.0.19.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
Id: Amazon.AWSCLI
|
||||
Publisher: AWS
|
||||
Name: aws-cli
|
||||
Version: 2.0.19
|
||||
License: Copyright 2012-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. Licensed under the Apache License, Version 2.0
|
||||
LicenseUrl: https://github.com/aws/aws-cli/blob/2.0.16/LICENSE.txt
|
||||
Author: Amazon Web Services
|
||||
AppMoniker: aws
|
||||
Tags: "AWS,aws-cli,cloud"
|
||||
Description: Universal Command Line Interface for Amazon Web Services
|
||||
Homepage: https://aws.amazon.com/cli/
|
||||
InstallerType: msi
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://awscli.amazonaws.com/AWSCLIV2-2.0.19.msi
|
||||
Sha256: 760762d8fb6870f6b51eb8de26926b2b9fd7ec633636e95bc81a0d28804d52fe
|
||||
Switches:
|
||||
Silent: /quiet /norestart
|
||||
SilentWithProgress: /passive /norestart
|
18
manifests/Amazon/AWSCLI/2.0.37.yaml
Normal file
18
manifests/Amazon/AWSCLI/2.0.37.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
Id: Amazon.AWSCLI
|
||||
Version: 2.0.37
|
||||
Name: aws-cli
|
||||
Publisher: AWS
|
||||
License: Apache 2.0
|
||||
LicenseUrl: https://github.com/aws/aws-cli/blob/2.0.37/LICENSE.txt
|
||||
AppMoniker: aws
|
||||
Tags: "AWS,aws-cli,cloud"
|
||||
Description: Universal Command Line Interface for Amazon Web Services
|
||||
Homepage: https://aws.amazon.com/cli/
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://awscli.amazonaws.com/AWSCLIV2-2.0.37.msi
|
||||
Sha256: 4A4E59592B282E6E45036472FC37FC5626DEDA43004BE614CFA74151E4662EDC
|
||||
InstallerType: msi
|
||||
Switches:
|
||||
Silent: /quiet /norestart
|
||||
SilentWithProgress: /passive /norestart
|
18
manifests/Amazon/AWSCLI/2.0.42.yaml
Normal file
18
manifests/Amazon/AWSCLI/2.0.42.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
Id: Amazon.AWSCLI
|
||||
Version: 2.0.42
|
||||
Name: aws-cli
|
||||
Publisher: AWS
|
||||
License: Apache 2.0
|
||||
LicenseUrl: https://github.com/aws/aws-cli/blob/2.0.37/LICENSE.txt
|
||||
AppMoniker: aws
|
||||
Tags: "AWS,aws-cli,cloud"
|
||||
Description: Universal Command Line Interface for Amazon Web Services
|
||||
Homepage: https://aws.amazon.com/cli/
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://awscli.amazonaws.com/AWSCLIV2-2.0.42.msi
|
||||
Sha256: A4A690235E48768183C692D3B0FB246AB6DBDE41DC0D04AD98E680CA6B73C345
|
||||
InstallerType: msi
|
||||
Switches:
|
||||
Silent: /quiet /norestart
|
||||
SilentWithProgress: /passive /norestart
|
18
manifests/Amazon/Chime/4.31.9473.yaml
Normal file
18
manifests/Amazon/Chime/4.31.9473.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
Id: Amazon.Chime
|
||||
Version: 4.31.9473
|
||||
Name: Amazon Chime
|
||||
Publisher: Amazon
|
||||
AppMoniker: amazonchime
|
||||
Tags: amazon, work, teams, chat
|
||||
License: Copyright (c) Amazon Web Services, Inc. or its affiliates. All rights reserved.
|
||||
Homepage: https://aws.amazon.com/chime
|
||||
LicenseUrl: https://aws.amazon.com/service-terms/
|
||||
Description: Amazon Chime is a communications service that lets you meet, chat, and place business calls inside and outside your organization, all using a single application.
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://clients.chime.aws/win/releases/Chime.4.31.9473.exe
|
||||
InstallerType: Inno
|
||||
Sha256: 1db66bd9528389cb768842051c5aecf7f5b3482bf0e71fa412ef8ecf98bbb372
|
||||
Switches:
|
||||
Silent: "/VERYSILENT"
|
||||
SilentWithProgress: "/SILENT"
|
16
manifests/Amazon/Corretto/11.0.7.10.1.yaml
Normal file
16
manifests/Amazon/Corretto/11.0.7.10.1.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
Id: Amazon.Corretto
|
||||
Version: 11.0.7.10.1
|
||||
Name: Corretto
|
||||
Publisher: Amazon
|
||||
Homepage: https://docs.aws.amazon.com/corretto/index.html
|
||||
License: GPL 2 with Classpath Exception
|
||||
LicenseUrl: https://github.com/corretto/corretto-11/blob/develop/LICENSE
|
||||
Description: No-cost, multiplatform, production-ready distribution of the Open Java Development Kit (OpenJDK).
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://corretto.aws/downloads/resources/11.0.7.10.1/amazon-corretto-11.0.7.10.1-windows-x64.msi
|
||||
InstallerType: Msi
|
||||
Sha256: ce8ebec7325e5c074186083f224712e913eb6d20c02cab620fcd072e5b8f9628
|
||||
Switches:
|
||||
Silent: /quiet
|
||||
SilentWithProgress: /passive
|
16
manifests/Amazon/Corretto/8.252.09.2.yaml
Normal file
16
manifests/Amazon/Corretto/8.252.09.2.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
Id: Amazon.Corretto
|
||||
Version: 8.252.09.2
|
||||
Name: Corretto 8.252.09.2 (x64)
|
||||
Publisher: Amazon
|
||||
Homepage: https://docs.aws.amazon.com/corretto/index.html
|
||||
License: GPL 2 with Classpath Exception
|
||||
LicenseUrl: https://github.com/corretto/corretto-8/blob/develop/LICENSE
|
||||
Description: No-cost, multiplatform, production-ready distribution of the Open Java Development Kit (OpenJDK).
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://corretto.aws/downloads/resources/8.252.09.2/amazon-corretto-8.252.09.2-windows-x64.msi
|
||||
InstallerType: Msi
|
||||
Sha256: c5634869417248bcd83425e942929ef75ed5aea0a84544c9e76a55027e24b988
|
||||
Switches:
|
||||
Silent: /quiet
|
||||
SilentWithProgress: /passive
|
16
manifests/Amazon/Kindle/1.29.58059.0.yaml
Normal file
16
manifests/Amazon/Kindle/1.29.58059.0.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
Id: Amazon.Kindle
|
||||
Publisher: Amazon
|
||||
Name: Kindle
|
||||
Version: 1.29.58059.0
|
||||
License: Copyright (c) Amazon.com, Inc. or its affiliates
|
||||
InstallerType: EXE
|
||||
LicenseUrl: https://www.amazon.com/gp/help/customer/display.html?nodeId=200699130
|
||||
AppMoniker: kindle
|
||||
Tags: reading, epub, reader, books, amazon, kindle
|
||||
Description: The Kindle app is available for most major smartphones, tablets and computers. That means with our free Kindle reading apps, you can buy a Kindle book once, and read it on any device with the Kindle app installed*. You can also read that same Kindle book on a Kindle device if you own one.
|
||||
Homepage: https://www.amazon.co.uk/kindle-dbs/fd/kcp
|
||||
Installers:
|
||||
- Arch: x86
|
||||
InstallerType: nullsoft
|
||||
Url: https://s3.amazonaws.com/kindleforpc/58059/KindleForPC-installer-1.29.58059.exe
|
||||
Sha256: 09B4D9CAB09B7D59384AC83436D0CBE22E6514EC373E02B315AD9A3ED6047D5E
|
11
manifests/Amazon/Music/7.12.0.2203.yaml
Normal file
11
manifests/Amazon/Music/7.12.0.2203.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
Id: Amazon.Music
|
||||
Version: 7.12.0.2203
|
||||
Name: AmazonMusic
|
||||
Publisher: Amazon
|
||||
License: Copyright Amazon.com Services LLC
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: https://images-na.ssl-images-amazon.com/images/G/01/digital/music/morpho/installers/20200523/023705232e/AmazonMusicInstaller.exe
|
||||
Sha256: 606AF53E2D975F37F7308B0F85B414604136E3674A5C35BF75B587400E2E42E3
|
||||
InstallerType: exe
|
||||
|
12
manifests/AmineMouafik/Ferdi/5.5.0.Yaml
Normal file
12
manifests/AmineMouafik/Ferdi/5.5.0.Yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
Id: AmineMouafik.Ferdi
|
||||
Version: 5.5.0
|
||||
Name: Ferdi
|
||||
Publisher: AmineMouafik
|
||||
Homepage: https://getferdi.com/
|
||||
License: Copyright © 2020 Amine Mouafik
|
||||
Description: Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/getferdi/ferdi/releases/download/v5.5.0/Ferdi-Setup-5.5.0.exe
|
||||
InstallerType: Nullsoft
|
||||
Sha256: 20249BE6771415B46DAAE2CD41AFB6BCA2477F4D86A3986D94DFD0E76E23F516
|
20
manifests/Anaconda/Miniconda3/4.8.2.yaml
Normal file
20
manifests/Anaconda/Miniconda3/4.8.2.yaml
Normal file
@@ -0,0 +1,20 @@
|
||||
Id: Anaconda.Miniconda3
|
||||
Name: Miniconda3
|
||||
AppMoniker: Miniconda3
|
||||
Version: 4.8.2
|
||||
Publisher: Anaconda
|
||||
Author: Anaconda
|
||||
License: BSD 3-Clause License
|
||||
LicenseUrl: https://docs.conda.io/en/latest/license.html
|
||||
Homepage: https://docs.conda.io/en/latest/miniconda.html
|
||||
Description: Miniconda is a free minimal installer for conda.
|
||||
Tags: "python"
|
||||
InstallerType: exe
|
||||
Switches:
|
||||
Custom: /InstallationType=JustMe /AddToPath=0 /RegisterPython=0
|
||||
Silent: /S
|
||||
SilentWithProgress: /S
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.2-Windows-x86_64.exe
|
||||
Sha256: 1701955cd637d1dad5a84958fd470649b79de973d1570541eb52857664b5056c
|
14
manifests/AngusJohnson/ResourceHacker/5.1.7.yaml
Normal file
14
manifests/AngusJohnson/ResourceHacker/5.1.7.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
Id: AngusJohnson.ResourceHacker
|
||||
Publisher: Angus Johnson
|
||||
Name: Resource Hacker
|
||||
AppMoniker: ResHack
|
||||
Version: 5.1.7
|
||||
License: Copyright © 1999-2019 Angus Johnson
|
||||
Description: A freeware resource compiler & decompiler for Windows® applications
|
||||
Homepage: http://www.angusj.com/resourcehacker/
|
||||
FileExtensions: exe, dll, scr, com, mui, res, efi
|
||||
Installers:
|
||||
- Arch: x86
|
||||
Url: http://www.angusj.com/resourcehacker/reshacker_setup.exe
|
||||
Sha256: 46431ddf68fd664b0f58dfb1625a52936af3ba48ee340cc05d89346024dd6601
|
||||
InstallerType: inno
|
14
manifests/Anki/Anki/2.1.26.yaml
Normal file
14
manifests/Anki/Anki/2.1.26.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
Id: Anki.Anki
|
||||
Version: 2.1.26
|
||||
Name: Anki
|
||||
Publisher: Anki
|
||||
License: AGPL-3.0-only
|
||||
LicenseUrl: https://raw.githubusercontent.com/ankitects/anki/master/LICENSE
|
||||
AppMoniker: anki
|
||||
Description: Powerful and intelligent flash cards
|
||||
Homepage: https://apps.ankiweb.net/
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/ankitects/anki/releases/download/2.1.26/anki-2.1.26-windows.exe
|
||||
Sha256: 5881A7424530EF75A2AFDD9F579A87BE288DD6D8248A9670A55B28E4F6EAE8A8
|
||||
InstallerType: nullsoft
|
14
manifests/Anki/Anki/2.1.28.yaml
Normal file
14
manifests/Anki/Anki/2.1.28.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
Id: Anki.Anki
|
||||
Version: 2.1.28
|
||||
Name: Anki
|
||||
Publisher: Anki
|
||||
License: AGPL-3.0-only
|
||||
LicenseUrl: https://raw.githubusercontent.com/ankitects/anki/master/LICENSE
|
||||
AppMoniker: anki
|
||||
Description: Powerful and intelligent flash cards
|
||||
Homepage: https://apps.ankiweb.net/
|
||||
Installers:
|
||||
- Arch: x64
|
||||
Url: https://github.com/ankitects/anki/releases/download/2.1.28/anki-2.1.28-windows.exe
|
||||
Sha256: 184467a2124e8309daef939d2612433390818f931f1d5761897bffebc00f0e46
|
||||
InstallerType: nullsoft
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user