├── .ci ├── app.rc ├── ci.sh ├── debian_build.sh ├── debian_ci.sh ├── debian_docker.sh ├── debian_install.sh ├── donate.txt ├── dropbox_uploader.sh ├── gta5view.nsi ├── osx_build.sh ├── osx_ci.sh ├── osx_install.sh ├── windows_build.sh ├── windows_docker.sh ├── wininstall_build.sh └── wininstall_docker.sh ├── .drone.yml ├── .drone ├── TelemetryClassAuthenticator.cpp.enc └── drone.sh ├── .flatpak └── de.syping.gta5view.yaml ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab ├── TelemetryClassAuthenticator.cpp.enc └── gitlab.sh ├── .travis.yml ├── .travis ├── TelemetryClassAuthenticator.cpp.enc ├── dropbox_uploader.enc ├── source.sh ├── travis.sh └── ubuntu_travis.sh ├── AboutDialog.cpp ├── AboutDialog.h ├── AboutDialog.ui ├── AppEnv.cpp ├── AppEnv.h ├── CMakeLists.txt ├── CrewDatabase.cpp ├── CrewDatabase.h ├── DatabaseThread.cpp ├── DatabaseThread.h ├── ExportDialog.cpp ├── ExportDialog.h ├── ExportDialog.ui ├── ExportThread.cpp ├── ExportThread.h ├── GlobalString.cpp ├── GlobalString.h ├── IconLoader.cpp ├── IconLoader.h ├── ImportDialog.cpp ├── ImportDialog.h ├── ImportDialog.ui ├── JsonEditorDialog.cpp ├── JsonEditorDialog.h ├── JsonEditorDialog.ui ├── LICENSE ├── LICENSE.GPL ├── LICENSE.LGPL ├── MapLocationDialog.cpp ├── MapLocationDialog.h ├── MapLocationDialog.ui ├── MessageThread.cpp ├── MessageThread.h ├── OptionsDialog.cpp ├── OptionsDialog.h ├── OptionsDialog.ui ├── PictureDialog.cpp ├── PictureDialog.h ├── PictureDialog.ui ├── PictureExport.cpp ├── PictureExport.h ├── PictureWidget.cpp ├── PictureWidget.h ├── PlayerListDialog.cpp ├── PlayerListDialog.h ├── PlayerListDialog.ui ├── ProfileDatabase.cpp ├── ProfileDatabase.h ├── ProfileInterface.cpp ├── ProfileInterface.h ├── ProfileInterface.ui ├── ProfileLoader.cpp ├── ProfileLoader.h ├── ProfileWidget.cpp ├── ProfileWidget.h ├── README.md ├── RagePhoto.cpp ├── RagePhoto.h ├── SavegameCopy.cpp ├── SavegameCopy.h ├── SavegameData.cpp ├── SavegameData.h ├── SavegameDialog.cpp ├── SavegameDialog.h ├── SavegameDialog.ui ├── SavegameWidget.cpp ├── SavegameWidget.h ├── SavegameWidget.ui ├── SidebarGenerator.cpp ├── SidebarGenerator.h ├── SnapmaticEditor.cpp ├── SnapmaticEditor.h ├── SnapmaticEditor.ui ├── SnapmaticPicture.cpp ├── SnapmaticPicture.h ├── SnapmaticWidget.cpp ├── SnapmaticWidget.h ├── SnapmaticWidget.ui ├── StandardPaths.cpp ├── StandardPaths.h ├── StringParser.cpp ├── StringParser.h ├── TelemetryClass.cpp ├── TelemetryClass.h ├── TranslationClass.cpp ├── TranslationClass.h ├── UserInterface.cpp ├── UserInterface.h ├── UserInterface.ui ├── anpro ├── QrCode.cpp ├── QrCode.h ├── imagecropper.cpp ├── imagecropper.h ├── imagecropper_e.h └── imagecropper_p.h ├── config.h ├── gta5view.pro ├── lang └── README.txt ├── main.cpp ├── pcg ├── LICENSE.txt ├── pcg_basic.c └── pcg_basic.h ├── qjson4 ├── QJsonArray ├── QJsonArray.cpp ├── QJsonArray.h ├── QJsonDocument ├── QJsonDocument.cpp ├── QJsonDocument.h ├── QJsonObject ├── QJsonObject.cpp ├── QJsonObject.h ├── QJsonParseError ├── QJsonParseError.cpp ├── QJsonParseError.h ├── QJsonParser.cpp ├── QJsonParser.h ├── QJsonRoot ├── QJsonRoot.h ├── QJsonValue ├── QJsonValue.cpp ├── QJsonValue.h ├── QJsonValueRef ├── QJsonValueRef.cpp └── QJsonValueRef.h ├── res ├── 5sync.ico ├── add.svgz ├── app.rc ├── avatararea.png ├── avatarareaimport.png ├── back.svgz ├── btc.str ├── btc.svgz ├── de.syping.gta5view.desktop ├── de.syping.gta5view.metainfo.xml ├── de.syping.gta5view.png ├── de.syping.gta5view.xml ├── donate.qrc ├── donate.svgz ├── eth.str ├── eth.svgz ├── flag-de.png ├── flag-fr.png ├── flag-gb.png ├── flag-kr.png ├── flag-ru.png ├── flag-tw.png ├── flag-ua.png ├── flag-us.png ├── global.de.ini ├── global.en.ini ├── global.es.ini ├── global.es_MX.ini ├── global.fr.ini ├── global.it.ini ├── global.ja.ini ├── global.ko.ini ├── global.pl.ini ├── global.pt.ini ├── global.qrc ├── global.rcc ├── global.ru.ini ├── global.zh.ini ├── global.zh.loc ├── gta5sync.ts ├── gta5sync_de.qm ├── gta5sync_de.ts ├── gta5sync_en_US.qm ├── gta5sync_en_US.ts ├── gta5sync_fr.qm ├── gta5sync_fr.ts ├── gta5sync_ko.qm ├── gta5sync_ko.ts ├── gta5sync_ru.qm ├── gta5sync_ru.ts ├── gta5sync_uk.qm ├── gta5sync_uk.ts ├── gta5sync_zh_TW.qm ├── gta5sync_zh_TW.ts ├── gta5view-128.png ├── gta5view-16.png ├── gta5view-24.png ├── gta5view-256.png ├── gta5view-32.png ├── gta5view-40.png ├── gta5view-48.png ├── gta5view-512.png ├── gta5view-64.png ├── gta5view-96.png ├── gta5view.exe.manifest ├── gta5view.icns ├── img.cmake ├── img.qrc ├── ltc.str ├── ltc.svgz ├── mapcayoperico.jpg ├── mappreview.jpg ├── next.svgz ├── pointmaker-16.png ├── pointmaker-24.png ├── pointmaker-32.png ├── pointmaker-8.png ├── qt4 │ ├── qt_de.qm │ ├── qt_fr.qm │ ├── qt_ko.qm │ ├── qt_ru.qm │ ├── qt_uk.qm │ ├── qt_zh_TW.qm │ └── tr_qt.qrc ├── qt5 │ ├── qtbase_de.qm │ ├── qtbase_en_GB.qm │ ├── qtbase_en_GB.ts │ ├── qtbase_fr.qm │ ├── qtbase_ko.qm │ ├── qtbase_ru.qm │ ├── qtbase_uk.qm │ ├── qtbase_zh_TW.qm │ └── tr_qt.qrc ├── qt6 │ ├── qtbase_de.qm │ ├── qtbase_en_GB.qm │ ├── qtbase_en_GB.ts │ ├── qtbase_fr.qm │ ├── qtbase_ko.qm │ ├── qtbase_ru.qm │ ├── qtbase_uk.qm │ ├── qtbase_zh_TW.qm │ └── tr_qt.qrc ├── savegame.svgz ├── src │ ├── AvatarAreaProject.xcf │ ├── mainui.png │ ├── picture.png │ └── prop.png ├── template.g5e ├── template.qrc ├── tr_g5p.qrc ├── watermark_1b.png ├── watermark_2b.png ├── watermark_2r.png ├── xmr.str └── xmr.svgz ├── tmext ├── TelemetryClassAuthenticator.cpp └── TelemetryClassAuthenticator.h ├── uimod ├── JSHighlighter.cpp ├── JSHighlighter.h ├── UiModLabel.cpp ├── UiModLabel.h ├── UiModWidget.cpp └── UiModWidget.h └── wrapper.h /.ci/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/app.rc -------------------------------------------------------------------------------- /.ci/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/ci.sh -------------------------------------------------------------------------------- /.ci/debian_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/debian_build.sh -------------------------------------------------------------------------------- /.ci/debian_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/debian_ci.sh -------------------------------------------------------------------------------- /.ci/debian_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/debian_docker.sh -------------------------------------------------------------------------------- /.ci/debian_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/debian_install.sh -------------------------------------------------------------------------------- /.ci/donate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/donate.txt -------------------------------------------------------------------------------- /.ci/dropbox_uploader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/dropbox_uploader.sh -------------------------------------------------------------------------------- /.ci/gta5view.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/gta5view.nsi -------------------------------------------------------------------------------- /.ci/osx_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/osx_build.sh -------------------------------------------------------------------------------- /.ci/osx_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/osx_ci.sh -------------------------------------------------------------------------------- /.ci/osx_install.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Install packages 4 | brew upgrade cmake qt 5 | -------------------------------------------------------------------------------- /.ci/windows_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/windows_build.sh -------------------------------------------------------------------------------- /.ci/windows_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/windows_docker.sh -------------------------------------------------------------------------------- /.ci/wininstall_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/wininstall_build.sh -------------------------------------------------------------------------------- /.ci/wininstall_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.ci/wininstall_docker.sh -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.drone.yml -------------------------------------------------------------------------------- /.drone/TelemetryClassAuthenticator.cpp.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.drone/TelemetryClassAuthenticator.cpp.enc -------------------------------------------------------------------------------- /.drone/drone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.drone/drone.sh -------------------------------------------------------------------------------- /.flatpak/de.syping.gta5view.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.flatpak/de.syping.gta5view.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/TelemetryClassAuthenticator.cpp.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.gitlab/TelemetryClassAuthenticator.cpp.enc -------------------------------------------------------------------------------- /.gitlab/gitlab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.gitlab/gitlab.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/TelemetryClassAuthenticator.cpp.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.travis/TelemetryClassAuthenticator.cpp.enc -------------------------------------------------------------------------------- /.travis/dropbox_uploader.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.travis/dropbox_uploader.enc -------------------------------------------------------------------------------- /.travis/source.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.travis/source.sh -------------------------------------------------------------------------------- /.travis/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.travis/travis.sh -------------------------------------------------------------------------------- /.travis/ubuntu_travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/.travis/ubuntu_travis.sh -------------------------------------------------------------------------------- /AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/AboutDialog.cpp -------------------------------------------------------------------------------- /AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/AboutDialog.h -------------------------------------------------------------------------------- /AboutDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/AboutDialog.ui -------------------------------------------------------------------------------- /AppEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/AppEnv.cpp -------------------------------------------------------------------------------- /AppEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/AppEnv.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CrewDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/CrewDatabase.cpp -------------------------------------------------------------------------------- /CrewDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/CrewDatabase.h -------------------------------------------------------------------------------- /DatabaseThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/DatabaseThread.cpp -------------------------------------------------------------------------------- /DatabaseThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/DatabaseThread.h -------------------------------------------------------------------------------- /ExportDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ExportDialog.cpp -------------------------------------------------------------------------------- /ExportDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ExportDialog.h -------------------------------------------------------------------------------- /ExportDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ExportDialog.ui -------------------------------------------------------------------------------- /ExportThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ExportThread.cpp -------------------------------------------------------------------------------- /ExportThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ExportThread.h -------------------------------------------------------------------------------- /GlobalString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/GlobalString.cpp -------------------------------------------------------------------------------- /GlobalString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/GlobalString.h -------------------------------------------------------------------------------- /IconLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/IconLoader.cpp -------------------------------------------------------------------------------- /IconLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/IconLoader.h -------------------------------------------------------------------------------- /ImportDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ImportDialog.cpp -------------------------------------------------------------------------------- /ImportDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ImportDialog.h -------------------------------------------------------------------------------- /ImportDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ImportDialog.ui -------------------------------------------------------------------------------- /JsonEditorDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/JsonEditorDialog.cpp -------------------------------------------------------------------------------- /JsonEditorDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/JsonEditorDialog.h -------------------------------------------------------------------------------- /JsonEditorDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/JsonEditorDialog.ui -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/LICENSE.GPL -------------------------------------------------------------------------------- /LICENSE.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/LICENSE.LGPL -------------------------------------------------------------------------------- /MapLocationDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/MapLocationDialog.cpp -------------------------------------------------------------------------------- /MapLocationDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/MapLocationDialog.h -------------------------------------------------------------------------------- /MapLocationDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/MapLocationDialog.ui -------------------------------------------------------------------------------- /MessageThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/MessageThread.cpp -------------------------------------------------------------------------------- /MessageThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/MessageThread.h -------------------------------------------------------------------------------- /OptionsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/OptionsDialog.cpp -------------------------------------------------------------------------------- /OptionsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/OptionsDialog.h -------------------------------------------------------------------------------- /OptionsDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/OptionsDialog.ui -------------------------------------------------------------------------------- /PictureDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/PictureDialog.cpp -------------------------------------------------------------------------------- /PictureDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/PictureDialog.h -------------------------------------------------------------------------------- /PictureDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/PictureDialog.ui -------------------------------------------------------------------------------- /PictureExport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/PictureExport.cpp -------------------------------------------------------------------------------- /PictureExport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/PictureExport.h -------------------------------------------------------------------------------- /PictureWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/PictureWidget.cpp -------------------------------------------------------------------------------- /PictureWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/PictureWidget.h -------------------------------------------------------------------------------- /PlayerListDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/PlayerListDialog.cpp -------------------------------------------------------------------------------- /PlayerListDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/PlayerListDialog.h -------------------------------------------------------------------------------- /PlayerListDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/PlayerListDialog.ui -------------------------------------------------------------------------------- /ProfileDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ProfileDatabase.cpp -------------------------------------------------------------------------------- /ProfileDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ProfileDatabase.h -------------------------------------------------------------------------------- /ProfileInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ProfileInterface.cpp -------------------------------------------------------------------------------- /ProfileInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ProfileInterface.h -------------------------------------------------------------------------------- /ProfileInterface.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ProfileInterface.ui -------------------------------------------------------------------------------- /ProfileLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ProfileLoader.cpp -------------------------------------------------------------------------------- /ProfileLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ProfileLoader.h -------------------------------------------------------------------------------- /ProfileWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ProfileWidget.cpp -------------------------------------------------------------------------------- /ProfileWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/ProfileWidget.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/README.md -------------------------------------------------------------------------------- /RagePhoto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/RagePhoto.cpp -------------------------------------------------------------------------------- /RagePhoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/RagePhoto.h -------------------------------------------------------------------------------- /SavegameCopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SavegameCopy.cpp -------------------------------------------------------------------------------- /SavegameCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SavegameCopy.h -------------------------------------------------------------------------------- /SavegameData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SavegameData.cpp -------------------------------------------------------------------------------- /SavegameData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SavegameData.h -------------------------------------------------------------------------------- /SavegameDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SavegameDialog.cpp -------------------------------------------------------------------------------- /SavegameDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SavegameDialog.h -------------------------------------------------------------------------------- /SavegameDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SavegameDialog.ui -------------------------------------------------------------------------------- /SavegameWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SavegameWidget.cpp -------------------------------------------------------------------------------- /SavegameWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SavegameWidget.h -------------------------------------------------------------------------------- /SavegameWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SavegameWidget.ui -------------------------------------------------------------------------------- /SidebarGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SidebarGenerator.cpp -------------------------------------------------------------------------------- /SidebarGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SidebarGenerator.h -------------------------------------------------------------------------------- /SnapmaticEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SnapmaticEditor.cpp -------------------------------------------------------------------------------- /SnapmaticEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SnapmaticEditor.h -------------------------------------------------------------------------------- /SnapmaticEditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SnapmaticEditor.ui -------------------------------------------------------------------------------- /SnapmaticPicture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SnapmaticPicture.cpp -------------------------------------------------------------------------------- /SnapmaticPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SnapmaticPicture.h -------------------------------------------------------------------------------- /SnapmaticWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SnapmaticWidget.cpp -------------------------------------------------------------------------------- /SnapmaticWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SnapmaticWidget.h -------------------------------------------------------------------------------- /SnapmaticWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/SnapmaticWidget.ui -------------------------------------------------------------------------------- /StandardPaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/StandardPaths.cpp -------------------------------------------------------------------------------- /StandardPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/StandardPaths.h -------------------------------------------------------------------------------- /StringParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/StringParser.cpp -------------------------------------------------------------------------------- /StringParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/StringParser.h -------------------------------------------------------------------------------- /TelemetryClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/TelemetryClass.cpp -------------------------------------------------------------------------------- /TelemetryClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/TelemetryClass.h -------------------------------------------------------------------------------- /TranslationClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/TranslationClass.cpp -------------------------------------------------------------------------------- /TranslationClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/TranslationClass.h -------------------------------------------------------------------------------- /UserInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/UserInterface.cpp -------------------------------------------------------------------------------- /UserInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/UserInterface.h -------------------------------------------------------------------------------- /UserInterface.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/UserInterface.ui -------------------------------------------------------------------------------- /anpro/QrCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/anpro/QrCode.cpp -------------------------------------------------------------------------------- /anpro/QrCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/anpro/QrCode.h -------------------------------------------------------------------------------- /anpro/imagecropper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/anpro/imagecropper.cpp -------------------------------------------------------------------------------- /anpro/imagecropper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/anpro/imagecropper.h -------------------------------------------------------------------------------- /anpro/imagecropper_e.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/anpro/imagecropper_e.h -------------------------------------------------------------------------------- /anpro/imagecropper_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/anpro/imagecropper_p.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/config.h -------------------------------------------------------------------------------- /gta5view.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/gta5view.pro -------------------------------------------------------------------------------- /lang/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/lang/README.txt -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/main.cpp -------------------------------------------------------------------------------- /pcg/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/pcg/LICENSE.txt -------------------------------------------------------------------------------- /pcg/pcg_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/pcg/pcg_basic.c -------------------------------------------------------------------------------- /pcg/pcg_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/pcg/pcg_basic.h -------------------------------------------------------------------------------- /qjson4/QJsonArray: -------------------------------------------------------------------------------- 1 | #include "QJsonArray.h" 2 | -------------------------------------------------------------------------------- /qjson4/QJsonArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonArray.cpp -------------------------------------------------------------------------------- /qjson4/QJsonArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonArray.h -------------------------------------------------------------------------------- /qjson4/QJsonDocument: -------------------------------------------------------------------------------- 1 | #include "QJsonDocument.h" 2 | -------------------------------------------------------------------------------- /qjson4/QJsonDocument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonDocument.cpp -------------------------------------------------------------------------------- /qjson4/QJsonDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonDocument.h -------------------------------------------------------------------------------- /qjson4/QJsonObject: -------------------------------------------------------------------------------- 1 | #include "QJsonObject.h" 2 | -------------------------------------------------------------------------------- /qjson4/QJsonObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonObject.cpp -------------------------------------------------------------------------------- /qjson4/QJsonObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonObject.h -------------------------------------------------------------------------------- /qjson4/QJsonParseError: -------------------------------------------------------------------------------- 1 | #include "QJsonParseError.h" 2 | -------------------------------------------------------------------------------- /qjson4/QJsonParseError.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonParseError.cpp -------------------------------------------------------------------------------- /qjson4/QJsonParseError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonParseError.h -------------------------------------------------------------------------------- /qjson4/QJsonParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonParser.cpp -------------------------------------------------------------------------------- /qjson4/QJsonParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonParser.h -------------------------------------------------------------------------------- /qjson4/QJsonRoot: -------------------------------------------------------------------------------- 1 | #include "QJsonRoot.h" 2 | -------------------------------------------------------------------------------- /qjson4/QJsonRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonRoot.h -------------------------------------------------------------------------------- /qjson4/QJsonValue: -------------------------------------------------------------------------------- 1 | #include "QJsonValue.h" 2 | -------------------------------------------------------------------------------- /qjson4/QJsonValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonValue.cpp -------------------------------------------------------------------------------- /qjson4/QJsonValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonValue.h -------------------------------------------------------------------------------- /qjson4/QJsonValueRef: -------------------------------------------------------------------------------- 1 | #include "QJsonValueRef.h" 2 | -------------------------------------------------------------------------------- /qjson4/QJsonValueRef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonValueRef.cpp -------------------------------------------------------------------------------- /qjson4/QJsonValueRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/qjson4/QJsonValueRef.h -------------------------------------------------------------------------------- /res/5sync.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/5sync.ico -------------------------------------------------------------------------------- /res/add.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/add.svgz -------------------------------------------------------------------------------- /res/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/app.rc -------------------------------------------------------------------------------- /res/avatararea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/avatararea.png -------------------------------------------------------------------------------- /res/avatarareaimport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/avatarareaimport.png -------------------------------------------------------------------------------- /res/back.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/back.svgz -------------------------------------------------------------------------------- /res/btc.str: -------------------------------------------------------------------------------- 1 | Bitcoin -------------------------------------------------------------------------------- /res/btc.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/btc.svgz -------------------------------------------------------------------------------- /res/de.syping.gta5view.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/de.syping.gta5view.desktop -------------------------------------------------------------------------------- /res/de.syping.gta5view.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/de.syping.gta5view.metainfo.xml -------------------------------------------------------------------------------- /res/de.syping.gta5view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/de.syping.gta5view.png -------------------------------------------------------------------------------- /res/de.syping.gta5view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/de.syping.gta5view.xml -------------------------------------------------------------------------------- /res/donate.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/donate.qrc -------------------------------------------------------------------------------- /res/donate.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/donate.svgz -------------------------------------------------------------------------------- /res/eth.str: -------------------------------------------------------------------------------- 1 | Ethereum -------------------------------------------------------------------------------- /res/eth.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/eth.svgz -------------------------------------------------------------------------------- /res/flag-de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/flag-de.png -------------------------------------------------------------------------------- /res/flag-fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/flag-fr.png -------------------------------------------------------------------------------- /res/flag-gb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/flag-gb.png -------------------------------------------------------------------------------- /res/flag-kr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/flag-kr.png -------------------------------------------------------------------------------- /res/flag-ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/flag-ru.png -------------------------------------------------------------------------------- /res/flag-tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/flag-tw.png -------------------------------------------------------------------------------- /res/flag-ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/flag-ua.png -------------------------------------------------------------------------------- /res/flag-us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/flag-us.png -------------------------------------------------------------------------------- /res/global.de.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.de.ini -------------------------------------------------------------------------------- /res/global.en.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.en.ini -------------------------------------------------------------------------------- /res/global.es.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.es.ini -------------------------------------------------------------------------------- /res/global.es_MX.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.es_MX.ini -------------------------------------------------------------------------------- /res/global.fr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.fr.ini -------------------------------------------------------------------------------- /res/global.it.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.it.ini -------------------------------------------------------------------------------- /res/global.ja.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.ja.ini -------------------------------------------------------------------------------- /res/global.ko.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.ko.ini -------------------------------------------------------------------------------- /res/global.pl.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.pl.ini -------------------------------------------------------------------------------- /res/global.pt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.pt.ini -------------------------------------------------------------------------------- /res/global.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.qrc -------------------------------------------------------------------------------- /res/global.rcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.rcc -------------------------------------------------------------------------------- /res/global.ru.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.ru.ini -------------------------------------------------------------------------------- /res/global.zh.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/global.zh.ini -------------------------------------------------------------------------------- /res/global.zh.loc: -------------------------------------------------------------------------------- 1 | zh_TW 2 | -------------------------------------------------------------------------------- /res/gta5sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync.ts -------------------------------------------------------------------------------- /res/gta5sync_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_de.qm -------------------------------------------------------------------------------- /res/gta5sync_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_de.ts -------------------------------------------------------------------------------- /res/gta5sync_en_US.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_en_US.qm -------------------------------------------------------------------------------- /res/gta5sync_en_US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_en_US.ts -------------------------------------------------------------------------------- /res/gta5sync_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_fr.qm -------------------------------------------------------------------------------- /res/gta5sync_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_fr.ts -------------------------------------------------------------------------------- /res/gta5sync_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_ko.qm -------------------------------------------------------------------------------- /res/gta5sync_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_ko.ts -------------------------------------------------------------------------------- /res/gta5sync_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_ru.qm -------------------------------------------------------------------------------- /res/gta5sync_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_ru.ts -------------------------------------------------------------------------------- /res/gta5sync_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_uk.qm -------------------------------------------------------------------------------- /res/gta5sync_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_uk.ts -------------------------------------------------------------------------------- /res/gta5sync_zh_TW.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_zh_TW.qm -------------------------------------------------------------------------------- /res/gta5sync_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5sync_zh_TW.ts -------------------------------------------------------------------------------- /res/gta5view-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5view-128.png -------------------------------------------------------------------------------- /res/gta5view-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5view-16.png -------------------------------------------------------------------------------- /res/gta5view-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5view-24.png -------------------------------------------------------------------------------- /res/gta5view-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5view-256.png -------------------------------------------------------------------------------- /res/gta5view-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5view-32.png -------------------------------------------------------------------------------- /res/gta5view-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5view-40.png -------------------------------------------------------------------------------- /res/gta5view-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5view-48.png -------------------------------------------------------------------------------- /res/gta5view-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5view-512.png -------------------------------------------------------------------------------- /res/gta5view-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5view-64.png -------------------------------------------------------------------------------- /res/gta5view-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5view-96.png -------------------------------------------------------------------------------- /res/gta5view.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5view.exe.manifest -------------------------------------------------------------------------------- /res/gta5view.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/gta5view.icns -------------------------------------------------------------------------------- /res/img.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/img.cmake -------------------------------------------------------------------------------- /res/img.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/img.qrc -------------------------------------------------------------------------------- /res/ltc.str: -------------------------------------------------------------------------------- 1 | Litecoin -------------------------------------------------------------------------------- /res/ltc.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/ltc.svgz -------------------------------------------------------------------------------- /res/mapcayoperico.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/mapcayoperico.jpg -------------------------------------------------------------------------------- /res/mappreview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/mappreview.jpg -------------------------------------------------------------------------------- /res/next.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/next.svgz -------------------------------------------------------------------------------- /res/pointmaker-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/pointmaker-16.png -------------------------------------------------------------------------------- /res/pointmaker-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/pointmaker-24.png -------------------------------------------------------------------------------- /res/pointmaker-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/pointmaker-32.png -------------------------------------------------------------------------------- /res/pointmaker-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/pointmaker-8.png -------------------------------------------------------------------------------- /res/qt4/qt_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt4/qt_de.qm -------------------------------------------------------------------------------- /res/qt4/qt_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt4/qt_fr.qm -------------------------------------------------------------------------------- /res/qt4/qt_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt4/qt_ko.qm -------------------------------------------------------------------------------- /res/qt4/qt_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt4/qt_ru.qm -------------------------------------------------------------------------------- /res/qt4/qt_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt4/qt_uk.qm -------------------------------------------------------------------------------- /res/qt4/qt_zh_TW.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt4/qt_zh_TW.qm -------------------------------------------------------------------------------- /res/qt4/tr_qt.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt4/tr_qt.qrc -------------------------------------------------------------------------------- /res/qt5/qtbase_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt5/qtbase_de.qm -------------------------------------------------------------------------------- /res/qt5/qtbase_en_GB.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt5/qtbase_en_GB.qm -------------------------------------------------------------------------------- /res/qt5/qtbase_en_GB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt5/qtbase_en_GB.ts -------------------------------------------------------------------------------- /res/qt5/qtbase_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt5/qtbase_fr.qm -------------------------------------------------------------------------------- /res/qt5/qtbase_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt5/qtbase_ko.qm -------------------------------------------------------------------------------- /res/qt5/qtbase_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt5/qtbase_ru.qm -------------------------------------------------------------------------------- /res/qt5/qtbase_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt5/qtbase_uk.qm -------------------------------------------------------------------------------- /res/qt5/qtbase_zh_TW.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt5/qtbase_zh_TW.qm -------------------------------------------------------------------------------- /res/qt5/tr_qt.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt5/tr_qt.qrc -------------------------------------------------------------------------------- /res/qt6/qtbase_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt6/qtbase_de.qm -------------------------------------------------------------------------------- /res/qt6/qtbase_en_GB.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt6/qtbase_en_GB.qm -------------------------------------------------------------------------------- /res/qt6/qtbase_en_GB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt6/qtbase_en_GB.ts -------------------------------------------------------------------------------- /res/qt6/qtbase_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt6/qtbase_fr.qm -------------------------------------------------------------------------------- /res/qt6/qtbase_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt6/qtbase_ko.qm -------------------------------------------------------------------------------- /res/qt6/qtbase_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt6/qtbase_ru.qm -------------------------------------------------------------------------------- /res/qt6/qtbase_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt6/qtbase_uk.qm -------------------------------------------------------------------------------- /res/qt6/qtbase_zh_TW.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt6/qtbase_zh_TW.qm -------------------------------------------------------------------------------- /res/qt6/tr_qt.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/qt6/tr_qt.qrc -------------------------------------------------------------------------------- /res/savegame.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/savegame.svgz -------------------------------------------------------------------------------- /res/src/AvatarAreaProject.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/src/AvatarAreaProject.xcf -------------------------------------------------------------------------------- /res/src/mainui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/src/mainui.png -------------------------------------------------------------------------------- /res/src/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/src/picture.png -------------------------------------------------------------------------------- /res/src/prop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/src/prop.png -------------------------------------------------------------------------------- /res/template.g5e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/template.g5e -------------------------------------------------------------------------------- /res/template.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/template.qrc -------------------------------------------------------------------------------- /res/tr_g5p.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/tr_g5p.qrc -------------------------------------------------------------------------------- /res/watermark_1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/watermark_1b.png -------------------------------------------------------------------------------- /res/watermark_2b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/watermark_2b.png -------------------------------------------------------------------------------- /res/watermark_2r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/watermark_2r.png -------------------------------------------------------------------------------- /res/xmr.str: -------------------------------------------------------------------------------- 1 | Monero -------------------------------------------------------------------------------- /res/xmr.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/res/xmr.svgz -------------------------------------------------------------------------------- /tmext/TelemetryClassAuthenticator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/tmext/TelemetryClassAuthenticator.cpp -------------------------------------------------------------------------------- /tmext/TelemetryClassAuthenticator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/tmext/TelemetryClassAuthenticator.h -------------------------------------------------------------------------------- /uimod/JSHighlighter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/uimod/JSHighlighter.cpp -------------------------------------------------------------------------------- /uimod/JSHighlighter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/uimod/JSHighlighter.h -------------------------------------------------------------------------------- /uimod/UiModLabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/uimod/UiModLabel.cpp -------------------------------------------------------------------------------- /uimod/UiModLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/uimod/UiModLabel.h -------------------------------------------------------------------------------- /uimod/UiModWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/uimod/UiModWidget.cpp -------------------------------------------------------------------------------- /uimod/UiModWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/uimod/UiModWidget.h -------------------------------------------------------------------------------- /wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SyDevTeam/gta5view/HEAD/wrapper.h --------------------------------------------------------------------------------