From 808d212bd815f34bb3ae8a8c2fbbcf3a9a84482a Mon Sep 17 00:00:00 2001 From: Kevin <6roebert@informatik.uni-hamburg.de> Date: Sun, 28 Nov 2021 23:20:39 +0100 Subject: [PATCH] v.0.6.0 + Changed to native image --- drasyl.nuspec | 12 ++++-------- tools/chocolateyinstall.ps1 | 11 ++++------- tools/chocolateyuninstall.ps1 | 2 +- 3 files changed, 9 insertions(+), 16 deletions(-) diff --git a/drasyl.nuspec b/drasyl.nuspec index 0f3eb8a..ed31fc0 100644 --- a/drasyl.nuspec +++ b/drasyl.nuspec @@ -3,13 +3,13 @@ drasyl - 0.5.0 + 0.6.0 https://github.com/drasyl-overlay/drasyl-choco Kevin R. drasyl Heiko B., Kevin R. https://drasyl.org - https://secure.gravatar.com/avatar/786199ac533ebf35ef2a48950198d880.jpg?s=512 + https://docs.drasyl.org/assets/img/drasyl.svg drasyl https://raw.githubusercontent.com/drasyl-overlay/drasyl/master/LICENSE true @@ -17,10 +17,8 @@ https://docs.drasyl.org/ https://github.com/drasyl-overlay/drasyl/issues drasyl overlay-network p2p - general-purpose overlay network framework for rapid development of distributed P2P applications + general-purpose overlay network framework for rapid development of distributed P2P applications. This package contains a pre-packed drasyl Node. It can be run via the command line interface. -**Note: This package comes without any Java dependency. You have to install a JRE or JDK by yourself.** - drasyl is a general-purpose overlay network framework for rapid development of distributed P2P applications. @@ -46,10 +44,8 @@ drasyl node without having to write configuration files or provide IP addresses ## Usage and Documentation -- [Getting Started](https://docs.drasyl.org/getting-started/) -- [Configuration](https://docs.drasyl.org/configuration/) -- [JavaDoc](https://www.javadoc.io/doc/org.drasyl/drasyl-core/latest/index.html) - [Command Line Interface](https://docs.drasyl.org/cli/) +- [Configuration](https://docs.drasyl.org/configuration/) - [Chat](https://gitter.im/drasyl-overlay/drasyl) ## License diff --git a/tools/chocolateyinstall.ps1 b/tools/chocolateyinstall.ps1 index 1457395..99d8e57 100644 --- a/tools/chocolateyinstall.ps1 +++ b/tools/chocolateyinstall.ps1 @@ -5,18 +5,15 @@ $ErrorActionPreference = 'Stop'; $packageName = $env:ChocolateyPackageName $packageVersion = $env:ChocolateyPackageVersion $toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" -$url = "https://github.com/drasyl-overlay/drasyl/releases/download/v$($packageVersion)/drasyl-$($packageVersion).zip" -$checksum = "ce1f869827be503a9aab73347233e5fd3c152ac12e6f2c69a95ac91eb4ff3a21" +$url = "https://github.com/drasyl-overlay/drasyl/releases/download/v$($packageVersion)/drasyl-$($packageVersion)-windows-amd64.zip" +$checksum = "547a95be3f0bbcbb98f171d319816fdd934d12ac808061c1e4809953470d4845" $checksumType = 'sha256' -$drasylHome = Join-Path $toolsDir "drasyl-$($packageVersion)" +$drasylHome = Join-Path $toolsDir "drasyl-$($packageVersion)-windows-amd64" Install-ChocolateyZipPackage $packageName $url $toolsDir -checksum $checksum -checksumType $checksumType -# Remove Unix file -Remove-Item "$($drasylHome)\bin\drasyl" - Install-ChocolateyEnvironmentVariable 'DRASYL_HOME' $drasylHome 'Machine' Install-ChocolateyPath "`%DRASYL_HOME`%\bin" 'Machine' -Write-Warning "You must start a new prompt, or re-read the environment for the drasyl command to be available in your command line environment." \ No newline at end of file +Write-Warning "You must start a new prompt, or re-read the environment for the drasyl command to be available in your command line environment." diff --git a/tools/chocolateyuninstall.ps1 b/tools/chocolateyuninstall.ps1 index 59fdcda..f406462 100644 --- a/tools/chocolateyuninstall.ps1 +++ b/tools/chocolateyuninstall.ps1 @@ -4,7 +4,7 @@ $ErrorActionPreference = 'Stop'; $packageName = $env:ChocolateyPackageName $packageVersion = $env:ChocolateyPackagVersion -$zipName = "drasyl-$($packageVersion).zip" +$zipName = "drasyl-$($packageVersion)-windows-amd64.zip" Uninstall-ChocolateyZipPackage $packageName $zipName