Skip to content

Commit

Permalink
updated introduction
Browse files Browse the repository at this point in the history
  • Loading branch information
oxy86 committed Dec 10, 2024
1 parent 5f8fdb2 commit 57b1f98
Showing 1 changed file with 23 additions and 6 deletions.
29 changes: 23 additions & 6 deletions src/content/docs/manual/intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ description: "An introduction to Social Network Analysis and SocNetV"
layout: "../../../layouts/BaseLayout.astro"
---

import { LinkButton } from '@astrojs/starlight/components';
import Mermaid from "../../../components/Mermaid.astro";

## What is Social Network Analysis?
Expand Down Expand Up @@ -181,19 +182,35 @@ However, that is not always the most recent version. We urge you to use the AppI

### Development Version

To test the latest development version, clone the repository:
To test the latest development version of SocNetV, download the CI/CD binaries from the `continuous` tag in our GH releases:

<LinkButton href="https://github.com/socnetv/app/releases/tag/continuous" variant="secondary">
Get the development binaries
</LinkButton>


:::caution
Warning: The development code branch is not always stable. Use at your own risk!
:::

Alternatively, you can clone the development branch (called "develop") of the SocNetV code on your computer with this git command:

```bash
git clone -b develop --single-branch https://github.com/socnetv/app.git socnetv
```

A new directory called socnetv will be created. To build the development version, install the Qt5 libraries, and then change directory into socnetv:

```bash
cd socnetv
qmake
make
```

:::caution
The development version is <em>not always stable</em>.
:::
Enter the following commands to compile it:

```bash
qmake
make
```

---

Expand Down

0 comments on commit 57b1f98

Please sign in to comment.