Skip to content

Commit

Permalink
2.1.1: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
acaldero committed Jul 5, 2020
1 parent c3eafa9 commit d42a3df
Show file tree
Hide file tree
Showing 22 changed files with 45 additions and 39 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
+ From Linux/Unix command line, please:
* Check you have installed Node 8.10.0+, and Bash 4.4.19+
* Download WepSIM by executing:
* wget https://github.com/acaldero/wepsim/releases/download/v2.1.0/wepsim-2.1.0.zip
* unzip wepsim-2.1.0.zip
* wget https://github.com/acaldero/wepsim/releases/download/v2.1.1/wepsim-2.1.1.zip
* unzip wepsim-2.1.1.zip
* Execute wepsim_node.sh with the help flag in order to show the available command switches:
* cd wepsim-2.1.0
* cd wepsim-2.1.1
* ./wepsim_node.sh help

<a name="install-wepsim-as-pwa"/>
Expand Down Expand Up @@ -299,11 +299,11 @@ Micropc at 0x0. Activated signals are: T2 C0. Associated actions are: Copy from
+ The following fragment is a example of how to use WepSIM command-line within Google Colab cell:

```html
!wget https://github.com/acaldero/wepsim/releases/download/v2.1.0/wepsim-2.1.0.zip
!unzip -o wepsim-2.1.0.zip
!rm -fr wepsim-2.1.0.zip
!./wepsim-2.1.0/wepsim_node.sh stepbystep ep ./wepsim-2.1.0/examples/microcode/mc-ep_base.txt ./wepsim-2.1.0/examples/assembly/asm-ep_s1_e1.txt > ./result.csv
!rm -fr wepsim-2.1.0
!wget https://github.com/acaldero/wepsim/releases/download/v2.1.1/wepsim-2.1.1.zip
!unzip -o wepsim-2.1.1.zip
!rm -fr wepsim-2.1.1.zip
!./wepsim-2.1.1/wepsim_node.sh stepbystep ep ./wepsim-2.1.1/examples/microcode/mc-ep_base.txt ./wepsim-2.1.1/examples/assembly/asm-ep_s1_e1.txt > ./result.csv
!rm -fr wepsim-2.1.1

import pandas as pd
import io
Expand Down Expand Up @@ -390,10 +390,10 @@ cordova plugin add cordova-plugin-whitelist

+ 2.1) Copy WepSIM files into the www directory:
```bash
wget https://github.com/acaldero/wepsim/releases/download/v2.1.0/wepsim-2.1.0.zip
unzip wepsim-2.1.0.zip
wget https://github.com/acaldero/wepsim/releases/download/v2.1.1/wepsim-2.1.1.zip
unzip wepsim-2.1.1.zip
mv www www.initial.$$
cp -a wepsim-2.1.0/ws_dist www
cp -a wepsim-2.1.1/ws_dist www
```

+ 2.2) Adapt path in "www/examples/hardware/ep/images/processor.svg" for Apache Cordova:
Expand Down
3 changes: 3 additions & 0 deletions docs/WS_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

# Changelog

## 2.1.0 -> 2.1.1:
* Minor bugs fixed and several refinaments added.

## 2.0.12 -> 2.1.0:
* Re-designed from scratch:
* Modals (dialogs) engine
Expand Down
4 changes: 2 additions & 2 deletions examples/configuration/desktop_dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"version": {
"upgrade": false,
"type": "string",
"value": "2.1.0"
"value": "2.1.1"
},
"build": {
"upgrade": true,
"type": "string",
"value": "2.1.0.20200529A"
"value": "2.1.1.20200529A"
},
"color_data_active": {
"upgrade": false,
Expand Down
4 changes: 2 additions & 2 deletions examples/configuration/desktop_light.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"version": {
"upgrade": false,
"type": "string",
"value": "2.1.0"
"value": "2.1.1"
},
"build": {
"upgrade": true,
"type": "string",
"value": "2.1.0.20200529A"
"value": "2.1.1.20200529A"
},
"color_data_active": {
"upgrade": false,
Expand Down
4 changes: 2 additions & 2 deletions examples/configuration/mobile_dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"version": {
"upgrade": false,
"type": "string",
"value": "2.1.0"
"value": "2.1.1"
},
"build": {
"upgrade": true,
"type": "string",
"value": "2.1.0.20200528A"
"value": "2.1.1.20200528A"
},
"color_data_active": {
"upgrade": false,
Expand Down
4 changes: 2 additions & 2 deletions examples/configuration/mobile_light.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"version": {
"upgrade": false,
"type": "string",
"value": "2.1.0"
"value": "2.1.1"
},
"build": {
"upgrade": true,
"type": "string",
"value": "2.1.0.20200528A"
"value": "2.1.1.20200528A"
},
"color_data_active": {
"upgrade": false,
Expand Down
4 changes: 2 additions & 2 deletions sim_core/sim_cfg.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@
{
var wscfg = {
/* version */
"version": { upgrade:false, type:"string", value:"2.1.0" },
"build": { upgrade:true, type:"string", value:"2.1.0.20200702A" },
"version": { upgrade:false, type:"string", value:"2.1.1" },
"build": { upgrade:true, type:"string", value:"2.1.1.20200702A" },

/* simulation screen: SVG */
"color_data_active": { upgrade:false, type:"string", value:"#0066FF" },
Expand Down
2 changes: 1 addition & 1 deletion wepsim/web/wepsim_web_classic.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.0" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.1" />
<meta name="msapplication-TileImage" content="images/arcos.svg" />
<meta name="msapplication-TileColor" content="#2F3BA2" />
<meta name="theme-color" content="#ffffff" />
Expand Down
2 changes: 1 addition & 1 deletion wepsim/web/wepsim_web_compact.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.0" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.1" />
<meta name="msapplication-TileImage" content="images/arcos.svg" />
<meta name="msapplication-TileColor" content="#2F3BA2" />
<meta name="theme-color" content="#ffffff" />
Expand Down
2 changes: 1 addition & 1 deletion wepsim/web/wepsim_web_null.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.0" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.1" />
<meta name="msapplication-TileImage" content="images/arcos.svg" />
<meta name="msapplication-TileColor" content="#2F3BA2" />
<meta name="theme-color" content="#ffffff" />
Expand Down
3 changes: 3 additions & 0 deletions ws_dist/docs/WS_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

# Changelog

## 2.1.0 -> 2.1.1:
* Minor bugs fixed and several refinaments added.

## 2.0.12 -> 2.1.0:
* Re-designed from scratch:
* Modals (dialogs) engine
Expand Down
4 changes: 2 additions & 2 deletions ws_dist/examples/configuration/desktop_dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"version": {
"upgrade": false,
"type": "string",
"value": "2.1.0"
"value": "2.1.1"
},
"build": {
"upgrade": true,
"type": "string",
"value": "2.1.0.20200529A"
"value": "2.1.1.20200529A"
},
"color_data_active": {
"upgrade": false,
Expand Down
4 changes: 2 additions & 2 deletions ws_dist/examples/configuration/desktop_light.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"version": {
"upgrade": false,
"type": "string",
"value": "2.1.0"
"value": "2.1.1"
},
"build": {
"upgrade": true,
"type": "string",
"value": "2.1.0.20200529A"
"value": "2.1.1.20200529A"
},
"color_data_active": {
"upgrade": false,
Expand Down
4 changes: 2 additions & 2 deletions ws_dist/examples/configuration/mobile_dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"version": {
"upgrade": false,
"type": "string",
"value": "2.1.0"
"value": "2.1.1"
},
"build": {
"upgrade": true,
"type": "string",
"value": "2.1.0.20200528A"
"value": "2.1.1.20200528A"
},
"color_data_active": {
"upgrade": false,
Expand Down
4 changes: 2 additions & 2 deletions ws_dist/examples/configuration/mobile_light.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
"version": {
"upgrade": false,
"type": "string",
"value": "2.1.0"
"value": "2.1.1"
},
"build": {
"upgrade": true,
"type": "string",
"value": "2.1.0.20200528A"
"value": "2.1.1.20200528A"
},
"color_data_active": {
"upgrade": false,
Expand Down
2 changes: 1 addition & 1 deletion ws_dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.0" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.1" />
<meta name="msapplication-TileImage" content="images/arcos.svg" />
<meta name="msapplication-TileColor" content="#2F3BA2" />
<meta name="theme-color" content="#ffffff" />
Expand Down
2 changes: 1 addition & 1 deletion ws_dist/min.sim_all.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ws_dist/min.wepsim_node.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ws_dist/min.wepsim_web.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ws_dist/wepsim-classic.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.0" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.1" />
<meta name="msapplication-TileImage" content="images/arcos.svg" />
<meta name="msapplication-TileColor" content="#2F3BA2" />
<meta name="theme-color" content="#ffffff" />
Expand Down
2 changes: 1 addition & 1 deletion ws_dist/wepsim-compact.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.0" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.1" />
<meta name="msapplication-TileImage" content="images/arcos.svg" />
<meta name="msapplication-TileColor" content="#2F3BA2" />
<meta name="theme-color" content="#ffffff" />
Expand Down
2 changes: 1 addition & 1 deletion ws_dist/wepsim-null.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.0" />
<meta name="apple-mobile-web-app-title" content="WepSIM 2.1.1" />
<meta name="msapplication-TileImage" content="images/arcos.svg" />
<meta name="msapplication-TileColor" content="#2F3BA2" />
<meta name="theme-color" content="#ffffff" />
Expand Down

0 comments on commit d42a3df

Please sign in to comment.