Skip to content

Commit

Permalink
versioning: add LTS for squeak60 / docs: update installation instruct…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
LinqLover committed Nov 19, 2022
1 parent 908e39a commit 49757ae
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ Key features:

Read the [exposés and the product visions](./docs/) for more details about the aims and USPs of this project.
In the [`studies`](./studies/) folders, you can also find the documentation of all experiments that have been conducted so far.
There are many open interesting [issues](https://github.com/hpi-swa-lab/squeak-tracedebugger/issues) for future work.
There are many interesting open [issues](https://github.com/hpi-swa-lab/squeak-tracedebugger/issues) for future work.

## Installation

We offer a pre-configured all-in-one image. Please go to the [releases section](https://github.com/hpi-swa-lab/squeak-tracedebugger/releases), download and extract the latest `TraceDebugger-*.zip` archive, and execute it.
We offer a **pre-configured all-in-one image** for the latest [Squeak Trunk](https://files.squeak.org/trunk/). Please go to the [releases section](https://github.com/hpi-swa-lab/squeak-tracedebugger/releases), download and extract the latest `TraceDebugger-*.zip` archive, and execute it.

To install the TraceDebugger manually, evaluate the following in a workspace:
To install the TraceDebugger manually **for the latest Squeak Trunk,** evaluate the following in a workspace:

```smalltalk
Metacello new
Expand All @@ -43,6 +43,16 @@ Metacello new
load.
```

For the LTS (long-term support) version **for Squeak 6.0,** you can use the following:

```smalltalk
Metacello new
baseline: 'TraceDebugger';
repository: 'github://hpi-swa-lab/squeak-tracedebugger:squeak60';
get;
load.
```

You can also check out the repository via [Squot](https://github.com/hpi-swa/Squot) and install all dependencies manually.

To install updates, evaluate the following:
Expand Down

0 comments on commit 49757ae

Please sign in to comment.