Skip to content

Commit

Permalink
AU: 1 updated - jubler
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Jan 9, 2024
1 parent b2bff3b commit da3b952
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion automatic/jubler/Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# <img src="https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@a8fa14d8c3ca49fd8bd8f856d9091b1a9103ada1/icons/jubler.png" width="48" height="48"/> [jubler](https://chocolatey.org/packages/jubler)
# <img src="https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@a8fa14d8c3ca49fd8bd8f856d9091b1a9103ada1/icons/jubler.png" width="48" height="48"/> [jubler](https://chocolatey.org/packages/jubler)


Jubler is a tool to edit text-based subtitles. It can be used as an authoring software for new subtitles or as a tool to convert, transform, correct and refine existing subtitles. The most popular subtitle formats can be used. Preview of the subtitles in realtime or in design time, spell checking, translation mode and styles editing are some of the main features.
Expand Down
6 changes: 3 additions & 3 deletions automatic/jubler/jubler.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>jubler</id>
<version>7.0.3</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-coreteampackages/tree/master/automatic/jubler</packageSourceUrl>
<version>8.0.0</version>
<packageSourceUrl>https://github.com/chocolatey-community/chocolatey-packages/tree/master/automatic/jubler</packageSourceUrl>
<owners>chocolatey-community, AdmiringWorm</owners>
<title>Jubler Subtitle Editor</title>
<authors>Panayotis Katsaloulis</authors>
<projectUrl>http://www.jubler.org/index.html</projectUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@a8fa14d8c3ca49fd8bd8f856d9091b1a9103ada1/icons/jubler.png</iconUrl>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@a8fa14d8c3ca49fd8bd8f856d9091b1a9103ada1/icons/jubler.png</iconUrl>
<copyright>(C) 2005-2018 Panayotis Katsaloulis</copyright>
<licenseUrl>https://github.com/teras/Jubler/blob/master/LICENCE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
Expand Down
4 changes: 2 additions & 2 deletions automatic/jubler/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ and can be verified by doing the following:

1. Download the following:
32-Bit software: <https://github.com/teras/Jubler/releases/download/v7.0.3/Jubler-7.0.3.x32.exe>
64-Bit software: <https://github.com/teras/Jubler/releases/download/v7.0.3/Jubler-7.0.3.x64.exe>
64-Bit software: <https://github.com/teras/Jubler/releases/download/v8.0.0/Jubler-8.0.0.x64.exe>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type: sha256
checksum32: D87DC5CCBADAD1EF277D0069F4951C9DCC06DF1F0AB5AD496FCAFC20CF6E8613
checksum64: 799AB85C4D8F5D68E83D42F45C5EE9A78625D09843504668E101178BCB056D0E
checksum64: B67B7EB6AD94F3367F76C05CDC8AAE08185F022C2F616B094719EC8969E75933

The file 'LICENSE.txt' has been obtained from <https://sourceforge.net/p/jubler/code/ci/jubler/tree/LICENCE?format=raw>
2 changes: 1 addition & 1 deletion automatic/jubler/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ $packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
file = "$toolsPath\Jubler-7.0.3.x32.exe"
file64 = "$toolsPath\Jubler-7.0.3.x64.exe"
file64 = "$toolsPath\Jubler-8.0.0.x64.exe"
softwareName = 'Jubler subtitle editor'
silentArgs = '/S'
validExitCodes = @(0)
Expand Down
10 changes: 5 additions & 5 deletions automatic/jubler/update.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import-module au
import-module au
Import-Module "$PSScriptRoot\..\..\scripts\au_extensions.psm1"

$releases = 'http://www.jubler.org/download.html'
Expand Down Expand Up @@ -35,13 +35,13 @@ function global:au_GetLatest {
$download_page = Invoke-WebRequest -UseBasicParsing -Uri $releases

$re = 'jubler.*\.exe'
$urls = $download_page.links | ? href -match $re | select -First 2 -expand href
$urls = $download_page.links | Where-Object href -match $re | Select-Object -First 2 -expand href

$version = $urls[0] -split '\/v?' | select -Last 1 -Skip 1
$version = $urls[0] -split '\/v?' | Select-Object -Last 1 -Skip 1

@{
URL32 = $urls -notmatch "64\.exe" | select -first 1
URL64 = $urls -match "64\.exe" | select -first 1
URL32 = $urls -notmatch "64\.exe" | Select-Object -first 1
URL64 = $urls -match "64\.exe" | Select-Object -first 1
Version = $version
FileType = 'exe'
}
Expand Down

0 comments on commit da3b952

Please sign in to comment.