Skip to content

Commit

Permalink
mend wavesim ram viewer - bump to 1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcl committed Feb 13, 2021
1 parent ea21058 commit 3f3796b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
]
},
"fable": {
"version": "3.1.0",
"version": "3.1.2",
"commands": [
"fable"
]
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "issie",
"version": "1.1.4",
"version": "1.1.5",
"description": "Schematic editor and Simulator",
"homepage": "https://github.com/tomcl/issie",
"bugs": {
Expand Down Expand Up @@ -39,7 +39,7 @@
"title": true
},
"build": {
"appId": "ISSIE.114",
"appId": "ISSIE.115",
"asar": true,
"win": {
"target": "zip"
Expand Down
2 changes: 1 addition & 1 deletion src/Renderer/Interface/Version.fs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Version
let VERSION = [ 1 ; 1 ; 4]
let VERSION = [ 1 ; 1 ; 5]

// The first 12 white-space separated words in this file must be in the above format - note that spaces are required.
// This works as valid F# data for displaying the code version and can also be read programmatically from the master branch github file
Expand Down
6 changes: 3 additions & 3 deletions src/Renderer/UI/WaveSimHelpers.fs
Original file line number Diff line number Diff line change
Expand Up @@ -285,10 +285,10 @@ let getRamInfoToDisplay wSMod path =
match sCompOpt with
| None -> "", []
| Some sComp ->
match sComp.Type with
| RAM dat | ROM dat | AsyncROM dat ->
match sComp.State with
| RamState m ->
let lab = match sComp.Label with | ComponentLabel lab -> lab
lab, formatMemory dat
lab, formatMemory m
| _ -> "", []


Expand Down

0 comments on commit 3f3796b

Please sign in to comment.