Skip to content

Commit

Permalink
Updates for v0.09-beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
haukex committed Mar 3, 2019
1 parent 22b608c commit 6f2173d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
9 changes: 7 additions & 2 deletions Changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@ WebPerl Changelog
=================


not yet released: v0.09-beta
2019-03-03: v0.09-beta
----------------------

- Updated for Emscripten 1.38.28 and Perl v5.28.1
- Added experimental Perl 6 support
- Added modules Future, Digest::MD5, and Digest::SHA
- Added Perl.exitStatus
- Updated regex_tester.html
- Added modules Future, Digest::MD5, and Digest::SHA
- Added "Code Demo Editor" in web/democode/
- Added "cpanfile"s for dependencies
- Minor fixes and updates to build.pl


2018-09-04: v0.07-beta
Expand Down
5 changes: 2 additions & 3 deletions web/democode/perlrunner.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
-->

<script src="../webperl.js"></script>
<!--script src="https://webperlcdn.zero-g.net/v0.07-beta/webperl.js"
integrity="sha256-jL8SB7St5ou4+hb0frK0k6VCQXsWQ1wolDrdU7i4juc=" crossorigin="anonymous"></script-->
<!--script src="https://webperlcdn.zero-g.net/v0.09-beta/webperl.js"
integrity="sha256-1RaYAh/WfDl3WZl+BDpSuSycg4x88pfkAFSxhWjBONk=" crossorigin="anonymous"></script-->
<script>
"use strict";

Expand All @@ -60,7 +60,6 @@
}

Perl.addStateChangeListener(function (from,to) {
if (from==to) return; // won't be needed as of v0.09-beta
if (to=="Ended" && currentClient) {
for (var chan=1;chan<=2;chan++) // flush buffers
if (stdbuf[chan].length) {
Expand Down
8 changes: 4 additions & 4 deletions web/regex_tester.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@
</style>

<script src="webperl.js"></script>
<!--script src="https://webperlcdn.zero-g.net/v0.07-beta/webperl.js"
integrity="sha256-jL8SB7St5ou4+hb0frK0k6VCQXsWQ1wolDrdU7i4juc=" crossorigin="anonymous"></script-->
<!--script src="https://webperlcdn.zero-g.net/v0.09-beta/webperl.js"
integrity="sha256-1RaYAh/WfDl3WZl+BDpSuSycg4x88pfkAFSxhWjBONk=" crossorigin="anonymous"></script-->
<!--cacheable--><script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>

<script type="text/perl">
Expand Down Expand Up @@ -164,8 +164,8 @@
<html>
<head>
<script src="__WEBPERLURL__"></scr__ipt>
<!--script src="https://webperlcdn.zero-g.net/v0.07-beta/webperl.js"
integrity="sha256-jL8SB7St5ou4+hb0frK0k6VCQXsWQ1wolDrdU7i4juc=" crossorigin="anonymous"></scr__ipt-->
<!--script src="https://webperlcdn.zero-g.net/v0.09-beta/webperl.js"
integrity="sha256-1RaYAh/WfDl3WZl+BDpSuSycg4x88pfkAFSxhWjBONk=" crossorigin="anonymous"></scr__ipt-->
<script>
Perl.noMountIdbfs=true; // we're sandboxed
</scr__ipt>
Expand Down
2 changes: 1 addition & 1 deletion web/webperl.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var Perl = {
trace: false, // user may enable this
endAfterMain: false, // user may enable this (before Perl.init)
noMountIdbfs: false, // user may enable this (before Perl.start)
WebPerlVersion: 'v0.07-beta', // user may read (only!) this
WebPerlVersion: 'v0.09-beta', // user may read (only!) this
state: "Uninitialized", // user may read (only!) this
exitStatus: undefined, // user may read (only!) this
Util: {},
Expand Down

0 comments on commit 6f2173d

Please sign in to comment.