Skip to content

Commit 216fdda

Browse files
committed
feat: direct download links in README
1 parent 33def33 commit 216fdda

File tree

1 file changed

+19
-13
lines changed

1 file changed

+19
-13
lines changed

README.md

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Image viewer and comparison tool for graphics people.
44

55
- __Lightning fast:__ starts up instantly, loads hundreds of images in seconds.
6-
- __Versatile:__ supports many [file formats](#file-formats), tonemapping operators, error metrics, histograms, and pixel peeping.
6+
- __Versatile:__ supports many [file formats](#file-formats), histograms, pixel-peeping, tonemaps, and error metrics.
77
- __HDR:__ displays true HDR on Apple EDR displays.
88

99

@@ -12,29 +12,25 @@ _A false-color comparison of two multi-layer OpenEXR images of a beach ball. Ima
1212

1313
## Installation
1414

15-
### Windows
15+
Download __tev__ for
16+
- __Windows__: [Installer (.msi)](https://github.com/Tom94/tev/releases/latest/download/tev-installer.msi), [portable executable (.exe)](https://github.com/Tom94/tev/releases/latest/download/tev.exe)
17+
- __Linux__: [AppImage (.appimage)](https://github.com/Tom94/tev/releases/latest/download/tev.appimage) ([how to run AppImages](https://docs.appimage.org/introduction/quickstart.html))
18+
- __macOS__: [Installer (.dmg)](https://github.com/Tom94/tev/releases/latest/download/tev.dmg)
1619

17-
Download the __tev__ executable (.exe) from the [releases page](https://github.com/Tom94/tev/releases).
20+
Or install __tev__ via package managers:
1821

19-
### macOS
22+
#### macOS
2023

21-
Download the __tev__ application (.dmg) from the [releases page](https://github.com/Tom94/tev/releases) or install it via homebrew.
2224
```bash
2325
brew install --cask tev
2426
```
2527

26-
### Linux
27-
28-
Download the __tev__ application (.appimage) from the [releases page](https://github.com/Tom94/tev/releases).
29-
See [how to run AppImages](https://appimage.org/).
30-
Or use one of the alternative methods below:
31-
32-
Arch Linux (Arch User Repository):
28+
#### Arch Linux (Arch User Repository)
3329
```bash
3430
yay -S tev
3531
```
3632

37-
NixOS:
33+
#### NixOS
3834
```nix
3935
# In your inputs
4036
inputs = {
@@ -49,6 +45,16 @@ environment.systemPackages = with pkgs; [
4945
];
5046
```
5147

48+
#### Install from source
49+
50+
Or install tev yourself from source. See the [building tev](#building-tev) section below for details. TL;DR:
51+
```sh
52+
$ git clone --recursive https://github.com/Tom94/tev
53+
$ cmake . -B build
54+
$ cmake --build build --config Release -j
55+
$ cmake --install build
56+
```
57+
5258
## Usage
5359

5460
### Graphical User Interface

0 commit comments

Comments
 (0)