1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-10-06 09:17:07 +02:00

Update choco package

This commit is contained in:
Elias Steurer 2023-07-02 12:15:45 +02:00
parent a27984d58e
commit 7abc937e0e
5 changed files with 7 additions and 7 deletions

View File

@ -7,7 +7,7 @@ choco pack
Install the generated nupkg: Install the generated nupkg:
``` ```
choco install screenplay.0.15.0-RC6.nupkg -dv -s . choco install screenplay.0.15.0.nupkg -dv -s .
``` ```
Set api key from [https://community.chocolatey.org/account](https://community.chocolatey.org/account): Set api key from [https://community.chocolatey.org/account](https://community.chocolatey.org/account):
@ -17,5 +17,5 @@ choco apikey --key AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAA --source https://push.chocol
Psuh: Psuh:
``` ```
choco push screenplay.0.15.0-RC6.nupkg --source https://push.chocolatey.org/ choco push screenplay.0.15.0.nupkg --source https://push.chocolatey.org/
``` ```

View File

@ -26,7 +26,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- version should MATCH as closely as possible with the underlying software --> <!-- version should MATCH as closely as possible with the underlying software -->
<!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages --> <!-- Is the version a prerelease of a version? https://docs.nuget.org/create/versioning#creating-prerelease-packages -->
<!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. --> <!-- Note that unstable versions like 0.0.1 can be considered a released version, but it's possible that one can release a 0.0.1-beta before you release a 0.0.1 version. If the version number is final, that is considered a released version and not a prerelease. -->
<version>0.15.0-RC6</version> <version>0.15.0</version>
<packageSourceUrl>https://gitlab.com/kelteseth/ScreenPlay/-/tree/master/Tools/chocolatey/ScreenPlay</packageSourceUrl> <packageSourceUrl>https://gitlab.com/kelteseth/ScreenPlay/-/tree/master/Tools/chocolatey/ScreenPlay</packageSourceUrl>
<!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. --> <!-- owners is a poor name for maintainers of the package. It sticks around by this name for compatibility reasons. It basically means you. -->
<owners>Elias Steurer</owners> <owners>Elias Steurer</owners>
@ -39,7 +39,7 @@ This is a nuspec. It mostly adheres to https://docs.nuget.org/create/Nuspec-Refe
<!-- projectUrl is required for the community feed --> <!-- projectUrl is required for the community feed -->
<projectUrl>https://gitlab.com/kelteseth/ScreenPlay</projectUrl> <projectUrl>https://gitlab.com/kelteseth/ScreenPlay</projectUrl>
<iconUrl>https://gitlab.com/kelteseth/ScreenPlay/-/blob/master/ScreenPlay/assets/icons/app.ico</iconUrl> <iconUrl>https://gitlab.com/kelteseth/ScreenPlay/-/blob/master/ScreenPlay/assets/icons/app.ico</iconUrl>
<copyright>Elias Steurer 2022</copyright> <copyright>Elias Steurer Tachiom</copyright>
<licenseUrl>https://gitlab.com/kelteseth/ScreenPlay/-/blob/master/Docs/Legal/ScreenPlay%20License.md</licenseUrl> <licenseUrl>https://gitlab.com/kelteseth/ScreenPlay/-/blob/master/Docs/Legal/ScreenPlay%20License.md</licenseUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance> <requireLicenseAcceptance>true</requireLicenseAcceptance>
<projectSourceUrl>https://gitlab.com/kelteseth/ScreenPlay/</projectSourceUrl> <projectSourceUrl>https://gitlab.com/kelteseth/ScreenPlay/</projectSourceUrl>

View File

@ -2,7 +2,7 @@
$ErrorActionPreference = 'Stop'; $ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = '' $url = ''
$url64 = 'https://kelteseth.com/releases/0.15.0-RC6/ScreenPlay-0.15.0-RC6-x64-windows-release.zip' $url64 = 'https://kelteseth.com/releases/0.15.0/ScreenPlay-0.15.0-x64-windows-release.zip'
$packageArgs = @{ $packageArgs = @{
packageName = $env:ChocolateyPackageName packageName = $env:ChocolateyPackageName
@ -14,7 +14,7 @@ $packageArgs = @{
softwareName = 'ScreenPlay*' softwareName = 'ScreenPlay*'
checksum = '' checksum = ''
checksumType = 'sha256' checksumType = 'sha256'
checksum64 = '278f86a888810bab63af17309dd153a59eae35831232cd813c93e3ddb4e32b99' checksum64 = 'f870de3a43fb5572021a2be0134dfa23585e8e56dd8067176ed8afe624c8cb4f'
checksumType64= 'sha256' checksumType64= 'sha256'
} }

View File

@ -18,7 +18,7 @@ elif sys.platform == "linux":
OS = "linux" OS = "linux"
QT_PLATFORM = "gcc_64" QT_PLATFORM = "gcc_64"
SCREENPLAY_VERSION = "0.15.0-RC6" SCREENPLAY_VERSION = "0.15.0"
QT_PATH = path = Path(os.path.join(os.path.realpath(__file__), "../../../aqt")).resolve() QT_PATH = path = Path(os.path.join(os.path.realpath(__file__), "../../../aqt")).resolve()
QT_VERSION = "6.5.1" QT_VERSION = "6.5.1"
QT_BIN_PATH = QT_PATH.joinpath(f"{QT_VERSION}/{QT_PLATFORM}/bin") QT_BIN_PATH = QT_PATH.joinpath(f"{QT_VERSION}/{QT_PLATFORM}/bin")