Skip to content

Commit

Permalink
Merge pull request #1286 from wasmerio/wapm-wax
Browse files Browse the repository at this point in the history
Updated Windows Wasmer icons. Add wax
  • Loading branch information
syrusakbary authored Mar 11, 2020
2 parents ea64149 + a4a90df commit 603065f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## **[Unreleased]**

- [#1286](https://github.com/wasmerio/wasmer/pull/1286) Updated Windows Wasmer icons. Add wax
- [#1284](https://github.com/wasmerio/wasmer/pull/1284) Implement string and memory instructions in `wasmer-interface-types`
- [#1272](https://github.com/wasmerio/wasmer/pull/1272) Fix off-by-one error bug when accessing memory with a `WasmPtr` that contains the last valid byte of memory. Also changes the behavior of `WasmPtr<T, Array>` with a length of 0 and `WasmPtr<T>` where `std::mem::size_of::<T>()` is 0 to always return `None`

Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,8 @@ build-install-package:
mkdir -p ./install/bin
cp ./wapm-cli/target/release/wapm ./install/bin/
cp ./target/release/wasmer ./install/bin/
# Create the wax binary as symlink to wapm
cd ./install/bin/ && ln -s wapm wax
tar -C ./install -zcvf wasmer.tar.gz bin/wapm bin/wasmer

UNAME_S := $(shell uname -s)
Expand Down Expand Up @@ -315,7 +317,7 @@ endif
cp lib/runtime-c-api/doc/index.md ./capi/README.md
tar -C ./capi -zcvf wasmer-c-api.tar.gz lib include README.md LICENSE

WAPM_VERSION = 0.4.3
WAPM_VERSION = v0.5.0
build-wapm:
git clone --branch $(WAPM_VERSION) https://github.com/wasmerio/wapm-cli.git
cargo build --release --manifest-path wapm-cli/Cargo.toml --features "telemetry update-notifications"
Expand Down
Binary file modified src/installer/media/wizard_logo.ico
Binary file not shown.
Binary file modified src/installer/media/wizard_logo_2.bmp
Binary file not shown.
Binary file modified src/installer/media/wizard_logo_small.bmp
Binary file not shown.
1 change: 1 addition & 0 deletions src/installer/wasmer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Root: HKCU; Subkey: "Environment"; ValueType:string; ValueName: "WASMER_CACHE_DI
[Files]
Source: "..\..\target\release\wasmer.exe"; DestDir: "{app}\bin"
Source: "..\..\wapm-cli\target\release\wapm.exe"; DestDir: "{app}\bin"
Source: "wax.cmd"; DestDir: "{app}\bin"

[Dirs]
Name: "{%USERPROFILE}\.wasmer"
Expand Down
2 changes: 2 additions & 0 deletions src/installer/wax.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@echo off
wapm.exe execute %*

0 comments on commit 603065f

Please sign in to comment.