From 49757ae9aa4004baa96a81cd0eba26b2c09c7903 Mon Sep 17 00:00:00 2001 From: Christoph Thiede Date: Sat, 19 Nov 2022 01:45:32 +0100 Subject: [PATCH] versioning: add LTS for squeak60 / docs: update installation instructions --- README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 636a1ba8..66923a3f 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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: