Skip to content

Commit

Permalink
AU: 1 updated - lightworks
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Oct 17, 2018
1 parent 5ef6179 commit a6123c8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion automatic/lightworks/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img src="https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/11eb42db9030a5a8d735fd56e2ad8bf62d365cff/icons/lightworks.png" width="48" height="48"/> [lightworks](https://chocolatey.org/packages/lightworks)
# <img src="https://cdn.jsdelivr.net/gh/chocolatey/chocolatey-coreteampackages@11eb42db9030a5a8d735fd56e2ad8bf62d365cff/icons/lightworks.png" width="48" height="48"/> [lightworks](https://chocolatey.org/packages/lightworks)


__Lightworks__ is Academy and Emmy award-winning, professional Non-Linear Editing (NLE) software supporting resolutions up to 4K.
Expand Down
4 changes: 2 additions & 2 deletions automatic/lightworks/lightworks.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>lightworks</id>
<title>Lightworks</title>
<version>14.0.0.20171007</version>
<version>14.5</version>
<authors>EditShare LLC</authors>
<owners>Redsandro</owners>
<summary>Lightworks is a professional NLE for editing and mastering digital video.</summary>
Expand Down Expand Up @@ -35,7 +35,7 @@ For a feature comparison, see [www.lwks.com](https://www.lwks.com/index.php?opti
<copyright></copyright>
<licenseUrl>https://en.wikipedia.org/wiki/Freemium</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/11eb42db9030a5a8d735fd56e2ad8bf62d365cff/icons/lightworks.png</iconUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey/chocolatey-coreteampackages@11eb42db9030a5a8d735fd56e2ad8bf62d365cff/icons/lightworks.png</iconUrl>
<dependencies>
<dependency id="chocolatey-core.extension" version="1.3.3" />
</dependencies>
Expand Down
8 changes: 4 additions & 4 deletions automatic/lightworks/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
$packageArgs = @{
packageName = 'lightworks'
fileType = 'EXE'
url = 'https://s3.amazonaws.com/lightworks/lightworks_v14.0.0_full_32bit_setup.exe'
url64bit = 'https://s3.amazonaws.com/lightworks/lightworks_v14.0.0_full_64bit_setup.exe'
checksum = '4b7a1dd5033bf8501eda63e877d3e498dbbb9c4cd86031690b386da6370c658a'
checksum64 = '86c7f33d569e2fa1f3151c9856706008a40806501bb13a335aaea751c45ecae6'
url = 'https://downloads.lwks.com/v14-5/lightworks_v14.5.0_full_32bit_setup.exe'
url64bit = 'https://downloads.lwks.com/v14-5/lightworks_v14.5.0_full_64bit_setup.exe'
checksum = 'a921c043b01d8804fc1365580a4cf29a4022d1812d1d5101d33eccc5fc978921'
checksum64 = '55b75aa1d8c35a49920576f59c4a9f336c9fa0498c8a0c580e2c2004ece594af'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/S'
Expand Down
4 changes: 2 additions & 2 deletions automatic/lightworks/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ $packageArgs = @{

[array] $key = Get-UninstallRegistryKey $packageName
if ($key.Count -eq 1) {
$key | % {
$key | ForEach-Object {
$packageArgs.file = "$($_.UninstallString.Replace(' /x86=0', ''))" #"C:\Program Files\OpenSSH\uninstall.exe" /x86=0
Uninstall-ChocolateyPackage @packageArgs
}
Expand All @@ -24,6 +24,6 @@ elseif ($key.Count -gt 1) {
Write-Warning "$key.Count matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $_.DisplayName"}
$key | ForEach-Object {Write-Warning "- $_.DisplayName"}
}

0 comments on commit a6123c8

Please sign in to comment.