Skip to content

Commit

Permalink
v.0.6.0
Browse files Browse the repository at this point in the history
+ Changed to native image
  • Loading branch information
KevinRoebert committed Nov 28, 2021
1 parent bf0417d commit 808d212
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 16 deletions.
12 changes: 4 additions & 8 deletions drasyl.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,22 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>drasyl</id>
<version>0.5.0</version>
<version>0.6.0</version>
<packageSourceUrl>https://github.com/drasyl-overlay/drasyl-choco</packageSourceUrl>
<owners>Kevin R.</owners>
<title>drasyl</title>
<authors>Heiko B., Kevin R.</authors>
<projectUrl>https://drasyl.org</projectUrl>
<iconUrl>https://secure.gravatar.com/avatar/786199ac533ebf35ef2a48950198d880.jpg?s=512</iconUrl>
<iconUrl>https://docs.drasyl.org/assets/img/drasyl.svg</iconUrl>
<copyright>drasyl</copyright>
<licenseUrl>https://raw.githubusercontent.com/drasyl-overlay/drasyl/master/LICENSE</licenseUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<projectSourceUrl>https://github.com/drasyl-overlay/drasyl</projectSourceUrl>
<docsUrl>https://docs.drasyl.org/</docsUrl>
<bugTrackerUrl>https://github.com/drasyl-overlay/drasyl/issues</bugTrackerUrl>
<tags>drasyl overlay-network p2p</tags>
<summary>general-purpose overlay network framework for rapid development of distributed P2P applications</summary>
<summary>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.</summary>
<description>
**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.

Expand All @@ -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
Expand Down
11 changes: 4 additions & 7 deletions tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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."
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."
2 changes: 1 addition & 1 deletion tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 808d212

Please sign in to comment.