gta5view/README.md

46 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

2016-12-05 22:27:31 +01:00
## gta5view
2021-05-27 02:28:41 +02:00
Open Source Snapmatic and Savegame viewer/editor for GTA V
2017-12-18 06:26:13 +01:00
- View Snapmatics with the ability to disable them in-game
- Edit Snapmatic pictures and properties in multiple ways
- Import/Export Snapmatics, Savegames and pictures
2020-10-11 17:46:45 +02:00
- Choose between multiple Social Club accounts as GTA V profiles IDs
#### Screenshots
2018-06-02 07:17:29 +02:00
![Snapmatic Picture Viewer](res/src/picture.png)
2018-06-02 07:15:07 +02:00
![User Interface](res/src/mainui.png)
![Snapmatic Properties](res/src/prop.png)
2018-02-08 12:39:57 +01:00
#### Build gta5view for Windows
2018-06-16 04:58:51 +02:00
# Note: Install Docker Community Edition and Git before continuing
2021-02-17 23:16:00 +01:00
docker pull sypingauto/gta5view-build:1.10-static
git clone https://gitlab.com/Syping/gta5view
docker run --rm -v "$PWD/gta5view:/gta5view" -it sypingauto/gta5view-build:1.10-static
mingw64-qt-cmake -B /gta5view/build /gta5view
cmake --build /gta5view/build
2018-06-16 04:58:51 +02:00
#### Build gta5view for Debian/Ubuntu
sudo apt-get install cmake git gcc g++ libqt5svg5-dev make qtbase5-dev qttranslations5-l10n
git clone https://gitlab.com/Syping/gta5view
cmake -B gta5view-build gta5view
cmake --build gta5view-build
sudo cmake --install gta5view-build
2018-06-16 04:58:51 +02:00
#### Build gta5view for Arch/Manjaro
2018-06-16 04:58:51 +02:00
sudo pacman -S cmake gcc git make qt5-base qt5-svg qt5-tools qt5-translations
git clone https://gitlab.com/Syping/gta5view
cmake -B gta5view-build gta5view
cmake --build gta5view-build
sudo cmake --install gta5view-build
#### Build gta5view for Fedora/RHEL
2018-02-08 12:39:57 +01:00
sudo dnf install cmake git gcc gcc-c++ make qt5-qtbase-devel qt5-qtsvg-devel qt5-qttranslations
git clone https://gitlab.com/Syping/gta5view
cmake -B gta5view-build gta5view
cmake --build gta5view-build
sudo cmake --install gta5view-build