mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-22 10:42:29 +01:00
Update choco package
This commit is contained in:
parent
a27984d58e
commit
7abc937e0e
Binary file not shown.
@ -7,7 +7,7 @@ choco pack
|
||||
|
||||
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):
|
||||
@ -17,5 +17,5 @@ choco apikey --key AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAA --source https://push.chocol
|
||||
|
||||
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/
|
||||
```
|
@ -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 -->
|
||||
<!-- 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. -->
|
||||
<version>0.15.0-RC6</version>
|
||||
<version>0.15.0</version>
|
||||
<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>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>https://gitlab.com/kelteseth/ScreenPlay</projectUrl>
|
||||
<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>
|
||||
<requireLicenseAcceptance>true</requireLicenseAcceptance>
|
||||
<projectSourceUrl>https://gitlab.com/kelteseth/ScreenPlay/</projectSourceUrl>
|
||||
|
@ -2,7 +2,7 @@
|
||||
$ErrorActionPreference = 'Stop';
|
||||
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
|
||||
$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 = @{
|
||||
packageName = $env:ChocolateyPackageName
|
||||
@ -14,7 +14,7 @@ $packageArgs = @{
|
||||
softwareName = 'ScreenPlay*'
|
||||
checksum = ''
|
||||
checksumType = 'sha256'
|
||||
checksum64 = '278f86a888810bab63af17309dd153a59eae35831232cd813c93e3ddb4e32b99'
|
||||
checksum64 = 'f870de3a43fb5572021a2be0134dfa23585e8e56dd8067176ed8afe624c8cb4f'
|
||||
checksumType64= 'sha256'
|
||||
}
|
||||
|
||||
|
@ -18,7 +18,7 @@ elif sys.platform == "linux":
|
||||
OS = "linux"
|
||||
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_VERSION = "6.5.1"
|
||||
QT_BIN_PATH = QT_PATH.joinpath(f"{QT_VERSION}/{QT_PLATFORM}/bin")
|
||||
|
Loading…
Reference in New Issue
Block a user