Skip to content

Releases: riley0122/ITT

Windows support

09 Oct 11:55
f5e2413
Compare
Choose a tag to compare

How to install

On Windows

Download the itt.exe file.
Then download imagemagick.
The top one should do fine (tested with: ImageMagick-7.1.1-20-Q16-HDRI-x64-dll.exe).
When installing imageMagick MAKE SURE TO SELECT "Install development headers and libraries for C and C++"!

then you can run itt (or in ps ./itt.exe).

On Linux

Download the itt file
Then install the dependencies with:
$ sudo apt-get install libx11-dev libpng-dev libjpeg-dev zlib1g-dev imagemagick ✔️ (tested)
or
$ sudo dnf install libX11-devel libpng-devel libjpeg-devel zlib-devel imagemagick ➖ (untested)
or
$ sudo pacman -S libx11 libpng libjpeg-turbo zlib imagemagick ➖ (untested)

Then you make the itt file an executeable with chmod +x ./itt.

Then you can run it with ./itt

Building

if you want to build it yourself, download the source code and compile with:

on linux: ./build.sh
on windows: g++ main.cpp -I YOURPATH -o itt.exe -lgdi32

Release 1.0.0

06 Oct 17:08
38c6a25
Compare
Choose a tag to compare

I made the thing, it will not be receiving that much updates. Maybe someday i will add windows support.

How to install

Download the source code, then run the build.sh file, remember to first make it runnable with $ chmod +x build.sh.
OR
download the itt file and run it with ./itt (tested on ubuntu)

then you need to make it an executable
`$ chmod +x ./itt

you do also need the dependencies, you can install them with these commands:

debian based:
$ sudo apt-get install libx11-dev libpng-dev libjpeg-dev zlib1g-dev imagemagick

red hat/fedora:
$ sudo dnf install libX11-devel libpng-devel libjpeg-devel zlib-devel imagemagick

Full Changelog: https://github.com/lucasammer/ITT/commits/v1.0.0