Skip to content

Commit

Permalink
fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
LinqLover authored Feb 20, 2024
1 parent f27ca00 commit 230acde
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This project aims to improve program comprehension by visualizing traces of object-oriented programs through animated 2.5D object maps.
Program traces are created in [Squeak](https://squeak.org) using the [TraceDebugger](https://github.com/hpi-swa-lab/squeak-tracedebugger) and visualized in the browser using [three.js](https://threejs.org).

- **[Read the paper (preprint)](https://linqlover.github.io/trace4d/paper.pdf)** [![PDF](https://img.shields.io/badge/PDF-blue)](https://linqlover.github.io/trace4d/paper.pdf) [![HTML](https://img.shields.io/badge/HTML-blue)](https://linqlover.github.io/trace4d/paper.html)
- **[Read the paper (preprint)](https://linqlover.github.io/trace4d/paper-ivapp.pdf)** [![PDF](https://img.shields.io/badge/PDF-blue)](https://linqlover.github.io/trace4d/paper-ivapp.pdf) [![HTML](https://img.shields.io/badge/HTML-blue)](https://linqlover.github.io/trace4d/paper-ivapp.html)
- **[Try the demo](https://linqlover.github.io/trace4d/)**

![Screenshot of trace4d](./assets/trace4d.png)
Expand Down
13 changes: 11 additions & 2 deletions packages/frontend/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,21 @@ <h1 class="text-body-emphasis">trace4d</h1>
<div class="mb-5">
<a href="https://github.com/LinqLover/trace4d" class="btn btn-secondary px-3 my-1" target="_blank">Browse GitHub repository</a>
<div class="btn-group my-1">
<a href="https://linqlover.github.io/trace4d/paper.pdf" class="btn btn-secondary px-3" target="_blank">Read paper (preprint)</a>
<a href="https://linqlover.github.io/trace4d/poster-ivapp.pdf" class="btn btn-secondary px-3" target="_blank">Read poster</a>
<button type="button" class="btn btn-secondary dropdown-toggle dropdown-toggle-split" data-bs-toggle="dropdown" aria-expanded="false">
<span class="visually-hidden">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="https://linqlover.github.io/trace4d/paper.html" target="_blank">Read paper (HTML)</a></li>
<li><a class="dropdown-item" href="https://linqlover.github.io/trace4d/poster-ivapp.html" target="_blank">Read poster (HTML)</a></li>
</ul>
</div>
<div class="btn-group my-1">
<a href="https://linqlover.github.io/trace4d/paper-ivapp.pdf" class="btn btn-secondary px-3" target="_blank">Read paper (preprint)</a>
<button type="button" class="btn btn-secondary dropdown-toggle dropdown-toggle-split" data-bs-toggle="dropdown" aria-expanded="false">
<span class="visually-hidden">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="https://linqlover.github.io/trace4d/paper-ivapp.html" target="_blank">Read paper (HTML)</a></li>
</ul>
</div>
</div>
Expand Down

0 comments on commit 230acde

Please sign in to comment.