Release app 0.4.2 (#742)

* Add MacOS download link and update Windows download link

* Update electron manifest to latest app
This commit is contained in:
Guillaume Jenkins 2018-07-13 16:10:01 -04:00 committed by GitHub
parent bf4b1090fc
commit f8524cf1a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 4 deletions

View File

@ -14,7 +14,7 @@
} }
.ui.grid { .ui.grid {
background: rgb(170, 39, 143)!important; background: rgb(170, 39, 143) !important;
} }
.ui.inverted.content { .ui.inverted.content {
@ -388,9 +388,14 @@
} }
function downloadWin64() { function downloadWin64() {
// TODO: Keep this link up-to-date with the desired release version // TODO: Keep this link up-to-date with the desired release version
window.open("https://makecode.com/api/release/ev3/v0.3.6/win64"); window.open("https://makecode.com/api/release/ev3/v0.4.2/win64");
tickEvent("offlineapp.download", { "target": "ev3", "platform": "win64" }); tickEvent("offlineapp.download", { "target": "ev3", "platform": "win64" });
} }
function downloadMac64() {
// TODO: Keep this link up-to-date with the desired release version
window.open("https://makecode.com/api/release/ev3/v0.4.2/mac64");
tickEvent("offlineapp.download", { "target": "ev3", "platform": "mac64" });
}
</script> </script>
</head> </head>
@ -421,7 +426,7 @@
<span class="c4 c1">MICROSOFT PRE-RELEASE SOFTWARE LICENSE TERMS</span> <span class="c4 c1">MICROSOFT PRE-RELEASE SOFTWARE LICENSE TERMS</span>
</p> </p>
<p class="c11"> <p class="c11">
<span class="c4 c1">MICROSOFT MAKECODE SOFTWARE FOR LEGO MINDSTORMS EDUCATION EV3</span> <span class="c4 c1">MICROSOFT MAKECODE FOR LEGO MINDSTORMS EDUCATION EV3</span>
</p> </p>
<p class="c7"> <p class="c7">
<span class="c4 c1"></span> <span class="c4 c1"></span>
@ -768,6 +773,11 @@
<i class="download icon"></i> <i class="download icon"></i>
makecode-ev3-setup-win64.exe makecode-ev3-setup-win64.exe
</button> </button>
<h3 class="ui">Mac OS</h3>
<button class="ui icon button" onclick="downloadMac64()">
<i class="download icon"></i>
makecode-ev3-mac64.zip
</button>
</div> </div>
</div> </div>

View File

@ -15,6 +15,6 @@
"Maker": "maker" "Maker": "maker"
}, },
"electronManifest": { "electronManifest": {
"latest": "v0.3.6" "latest": "v0.4.2"
} }
} }