Compare commits
41 Commits
github/mas
...
develop
Author | SHA1 | Date | |
---|---|---|---|
c32f4dd936 | |||
f54157930d | |||
|
000746e625 | ||
dcc9c8446d | |||
0efd60ff0c | |||
|
dbf0bdb3b9 | ||
998f087c18 | |||
2955bc986f | |||
|
888242f1d4 | ||
6083f24a85 | |||
b0f64dd1e9 | |||
|
da187e849c | ||
1cf921dcb9 | |||
|
7e9a8a5dc0 | ||
93a4b7871a | |||
7c11ab6054 | |||
|
6a0d7eee46 | ||
e6c06ecb0d | |||
|
c58f42257a | ||
|
945b96c2cd | ||
|
cd47c27e0d | ||
|
638131c3eb | ||
|
26f554e7fb | ||
679871ba68 | |||
|
ad0a73946d | ||
|
d3742a6978 | ||
|
25db9414f9 | ||
916b229645 | |||
|
36b7081c42 | ||
|
adfc48d226 | ||
|
badab8c8e9 | ||
85362db058 | |||
|
36384614dd | ||
|
33913688a0 | ||
07a03cd110 | |||
|
7173352673 | ||
|
c1d6b364f8 | ||
|
e9e5cf61dc | ||
5455df4920 | |||
|
d9aeb582a2 | ||
|
99a6ee6ea2 |
@ -23,6 +23,6 @@ For more details, see the [README](./README.md#changes-in-v100).
|
||||
### Changed
|
||||
- For changes see origin repository: https://github.com/dgiagio/warp/releases
|
||||
|
||||
[unreleased]: https://github.com/kirbylink/warp/compare/master...HEAD
|
||||
[1.0.0]: https://github.com/kirbylink/warp/compare/v0.3.0...1.0.0
|
||||
[unreleased]: https://git.phoenix.ipv64.de/public/warp/compare/master...HEAD
|
||||
[1.0.0]: https://git.phoenix.ipv64.de/public/warp/compare/v0.3.0...1.0.0
|
||||
[v0.1.0 - v0.3.0]: https://github.com/dgiagio/warp/releases
|
14
README.md
14
README.md
@ -79,7 +79,7 @@ dgiagio@X1:~/Devel/myapp$ chmod +x launch
|
||||
If you save `warp-packer` in a directory in your PATH, you only need to download it once.
|
||||
```sh
|
||||
dgiagio@X1:~/Devel/myapp$ cd ..
|
||||
dgiagio@X1:~/Devel$ curl -Lo warp-packer https://github.com/kirbylink/warp/releases/download/1.0.0/linux-x64.warp-packer
|
||||
dgiagio@X1:~/Devel$ curl -Lo warp-packer https://git.phoenix.ipv64.de/public/warp/releases/download/1.0.0/linux-x64.warp-packer
|
||||
dgiagio@X1:~/Devel$ chmod +x warp-packer
|
||||
```
|
||||
|
||||
@ -164,7 +164,7 @@ Diegos-iMac:myapp dgiagio$ chmod +x launch
|
||||
If you save `warp-packer` in a directory in your PATH, you only need to download it once.
|
||||
```sh
|
||||
Diegos-iMac:myapp dgiagio$ cd ..
|
||||
Diegos-iMac:Devel dgiagio$ curl -Lo warp-packer https://github.com/kirbylink/warp/releases/download/1.0.0/macos-x64.warp-packer
|
||||
Diegos-iMac:Devel dgiagio$ curl -Lo warp-packer https://git.phoenix.ipv64.de/public/warp/releases/download/1.0.0/macos-x64.warp-packer
|
||||
Diegos-iMac:Devel dgiagio$ chmod +x warp-packer
|
||||
```
|
||||
|
||||
@ -245,7 +245,7 @@ EXIT /B %ERRORLEVEL%
|
||||
If you save `warp-packer` in a directory in your PATH, you only need to download it once.
|
||||
```powershell
|
||||
PS C:\Users\Diego\Devel\myapp> cd ..
|
||||
PS C:\Users\Diego\Devel> [Net.ServicePointManager]::SecurityProtocol = "tls12, tls11, tls" ; Invoke-WebRequest https://github.com/kirbylink/warp/releases/download/1.0.0/windows-x64.warp-packer.exe -OutFile warp-packer.exe
|
||||
PS C:\Users\Diego\Devel> [Net.ServicePointManager]::SecurityProtocol = "tls12, tls11, tls" ; Invoke-WebRequest https://git.phoenix.ipv64.de/public/warp/releases/download/1.0.0/windows-x64.warp-packer.exe -OutFile warp-packer.exe
|
||||
```
|
||||
|
||||
**Create your self-contained application**
|
||||
@ -293,7 +293,7 @@ The application should be published to `bin/Release/netcoreapp2.1/linux-x64/publ
|
||||
|
||||
If you save `warp-packer` in a directory in your PATH, you only need to download it once.
|
||||
```sh
|
||||
dgiagio@X1:~/Devel/myapp$ curl -Lo warp-packer https://github.com/kirbylink/warp/releases/download/1.0.0/linux-x64.warp-packer
|
||||
dgiagio@X1:~/Devel/myapp$ curl -Lo warp-packer https://git.phoenix.ipv64.de/public/warp/releases/download/1.0.0/linux-x64.warp-packer
|
||||
dgiagio@X1:~/Devel/myapp$ chmod +x warp-packer
|
||||
```
|
||||
|
||||
@ -345,7 +345,7 @@ The application should be published to `bin/Release/netcoreapp2.1/osx-x64/publis
|
||||
|
||||
If you save `warp-packer` in a directory in your PATH, you only need to download it once.
|
||||
```sh
|
||||
Diegos-iMac:myapp dgiagio$ curl -Lo warp-packer https://github.com/kirbylink/warp/releases/download/1.0.0/macos-x64.warp-packer
|
||||
Diegos-iMac:myapp dgiagio$ curl -Lo warp-packer https://git.phoenix.ipv64.de/public/warp/releases/download/1.0.0/macos-x64.warp-packer
|
||||
Diegos-iMac:myapp dgiagio$ chmod +x warp-packer
|
||||
```
|
||||
|
||||
@ -397,7 +397,7 @@ The application should be published to `bin/Release/netcoreapp2.1/win10-x64/publ
|
||||
|
||||
If you save `warp-packer` in a directory in your PATH, you only need to download it once.
|
||||
```powershell
|
||||
PS C:\Users\Diego\Devel\myapp> [Net.ServicePointManager]::SecurityProtocol = "tls12, tls11, tls" ; Invoke-WebRequest https://github.com/kirbylink/warp/releases/download/1.0.0/windows-x64.warp-packer.exe -OutFile warp-packer.exe
|
||||
PS C:\Users\Diego\Devel\myapp> [Net.ServicePointManager]::SecurityProtocol = "tls12, tls11, tls" ; Invoke-WebRequest https://git.phoenix.ipv64.de/public/warp/releases/download/1.0.0/windows-x64.warp-packer.exe -OutFile warp-packer.exe
|
||||
```
|
||||
|
||||
**Create your self-contained application**
|
||||
@ -507,7 +507,7 @@ Hello, world.
|
||||
If you save `warp-packer` in a directory in your PATH, you only need to download it once.
|
||||
|
||||
```bash
|
||||
$ wget -O warp-packer https://github.com/kirbylink/warp/releases/download/1.0.0/linux-x64.warp-packer
|
||||
$ wget -O warp-packer https://git.phoenix.ipv64.de/public/warp/releases/download/1.0.0/linux-x64.warp-packer
|
||||
$ chmod +x ./warp-packer
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user