Skip to content

Commit

Permalink
May Improvements (#103)
Browse files Browse the repository at this point in the history
* Make the original layout default for now

* Add buttons to jump to edge start/end

* Improvements to the SDFV Settings API

* Allow all settings to be set via the URL method

* Deserializer compatibility for compressed SDFGs

* Scroll navigation, fit to width, bugfixes

* Update package-lock

* Build
  • Loading branch information
phschaad authored Jun 14, 2023
1 parent f5681c9 commit ddf3326
Show file tree
Hide file tree
Showing 24 changed files with 389 additions and 529 deletions.
Binary file removed dist/0c35d18bf06992036b69.woff2
Binary file not shown.
Binary file removed dist/219aa9140e099e6c72ed.woff2
Binary file not shown.
Binary file removed dist/3a4004a46a653d4b2166.woff
Binary file not shown.
Binary file removed dist/3baa5b8f3469222b822d.woff
Binary file not shown.
Binary file removed dist/4d73cb90e394b34b7670.woff
Binary file not shown.
Binary file removed dist/4ef4218c522f1eb6b5b1.woff2
Binary file not shown.
Binary file removed dist/5d681e2edae8c60630db.woff
Binary file not shown.
Binary file removed dist/6f420cf17cc0d7676fad.woff2
Binary file not shown.
Binary file removed dist/c380809fd3677d7d6903.woff2
Binary file not shown.
Binary file removed dist/f882956fd323fd322f31.woff
Binary file not shown.
9 changes: 0 additions & 9 deletions dist/sdfv.js

This file was deleted.

223 changes: 0 additions & 223 deletions dist/sdfv.js.LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion dist/sdfv.js.map

This file was deleted.

10 changes: 8 additions & 2 deletions package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,12 @@
"dagre": "^0.8.5",
"jquery": "^3.6.3",
"material-icons": "^1.13.1",
"material-symbols": "^0.6.0",
"mathjs": "^11.5.0",
"patch-package": "^6.5.1",
"pixi-viewport": "4.24",
"pixi.js": "6.1.3",
"process": "^0.11.10",
"stream-browserify": "^3.0.0"
}
}
}
4 changes: 2 additions & 2 deletions sdfv.css
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ body {
animation: animateright 0.4s;
}

#sidebar button {
#sidebar #menuclose {
cursor: pointer;
width: 100%;
display: block;
Expand All @@ -117,7 +117,7 @@ body {
outline: 0;
}

#sidebar button:hover {
#sidebar #menuclose:hover {
background-color: #ccc;
}

Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ export * from './utils/sdfg/sdfg_parser';
export * from './utils/sdfg/sdfg_utils';
export * from './utils/sdfg/traversal';
export * from './utils/bounding_box';
export * from './utils/context_menu';
export * from './utils/lerp_matrix';
export * from './utils/sanitization';
export * from './utils/utils';
Expand Down
5 changes: 3 additions & 2 deletions src/overlays/memory_location_overlay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,10 @@ export class MemoryLocationOverlay extends GenericSdfgOverlay {
if (ttContainer) {
if (storageType.originalType)
ttContainer.innerHTML = 'Location: ' +
storageType.originalType + ' → ' + storageType;
storageType.originalType + ' → ' +
storageType.type;
else
ttContainer.innerHTML = 'Location: ' + storageType;
ttContainer.innerHTML = 'Location: ' + storageType.type;
}
});
}
Expand Down
Loading

0 comments on commit ddf3326

Please sign in to comment.