back to development

Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
Nicola Murino
2024-11-15 20:50:54 +01:00
parent a79cb30cdc
commit 59833fba0d
4 changed files with 18 additions and 14 deletions

View File

@@ -3,13 +3,13 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>sftpgo</id>
<version>2.6.2</version>
<version>2.6.3</version>
<packageSourceUrl>https://github.com/drakkan/sftpgo/tree/main/pkgs/choco</packageSourceUrl>
<owners>asheroto</owners>
<title>SFTPGo</title>
<authors>Nicola Murino</authors>
<projectUrl>https://github.com/drakkan/sftpgo</projectUrl>
<iconUrl>https://cdn.statically.io/gh/drakkan/sftpgo/v2.6.2/static/img/logo.png</iconUrl>
<projectUrl>https://sftpgo.com</projectUrl>
<iconUrl>https://cdn.statically.io/gh/drakkan/sftpgo/v2.6.3/static/img/logo.png</iconUrl>
<licenseUrl>https://github.com/drakkan/sftpgo/blob/main/LICENSE</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectSourceUrl>https://github.com/drakkan/sftpgo</projectSourceUrl>
@@ -32,7 +32,7 @@ You can find more info [here](https://docs.sftpgo.com/2.6/).
* This package installs SFTPGo as Windows Service.
* After the first installation please take a look at the [Getting Started Guide](https://docs.sftpgo.com/2.6/initial-configuration/).</description>
<releaseNotes>https://github.com/drakkan/sftpgo/releases/tag/v2.6.2</releaseNotes>
<releaseNotes>https://github.com/drakkan/sftpgo/releases/tag/v2.6.3</releaseNotes>
</metadata>
<files>
<file src="**" exclude="**\*.md;**\icon.png;**\icon.jpg;**\icon.svg" />

View File

@@ -1,8 +1,8 @@
$ErrorActionPreference = 'Stop'
$packageName = 'sftpgo'
$softwareName = 'SFTPGo'
$url = 'https://github.com/drakkan/sftpgo/releases/download/v2.6.2/sftpgo_v2.6.2_windows_x86_64.exe'
$checksum = '40905AED44A7189C5DF6164631DB07BCBB53FAB7A63503A6BE7AD1328D9986D5'
$url = 'https://github.com/drakkan/sftpgo/releases/download/v2.6.3/sftpgo_v2.6.3_windows_x86_64.exe'
$checksum = '276B0332C4FFF312D0A97FEC99457FC5C7282C8C884A974328302A26E86F273D'
$silentArgs = '/VERYSILENT'
$validExitCodes = @(0)
@@ -44,11 +44,9 @@ Write-Output "`t$EnvDirPath"
Write-Output "If the SFTPGo service does not start, make sure that TCP ports 2022 and 8080 are"
Write-Output "not used by other services or change the SFTPGo configuration to suit your needs."
Write-Output ""
Write-Output "General information (README) location:"
Write-Output "`thttps://github.com/drakkan/sftpgo"
Write-Output "General information:"
Write-Output "`thttps://sftpgo.com"
Write-Output "Documentation location:"
Write-Output "`thttps://docs.sftpgo.com/"
Write-Output "Commercial support:"
Write-Output "`thttps://sftpgo.com/"
Write-Output ""
Write-Output "---------------------------"