remove upx compression step
This commit is contained in:
parent
55186e8b88
commit
07797f6e60
3 changed files with 2 additions and 3 deletions
|
@ -17,4 +17,3 @@ make depend && \
|
||||||
make -j 4 && \
|
make -j 4 && \
|
||||||
cp -Rf release/*.exe ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} && \
|
cp -Rf release/*.exe ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} && \
|
||||||
cd ${PROJECT_DIR}/assets && \
|
cd ${PROJECT_DIR}/assets && \
|
||||||
upx --best ${GTA5VIEW_EXECUTABLE}
|
|
||||||
|
|
|
@ -703,7 +703,7 @@ void OptionsDialog::setupSnapmaticPictureViewer()
|
||||||
#ifdef GTA5SYNC_WIN
|
#ifdef GTA5SYNC_WIN
|
||||||
#if QT_VERSION >= 0x050200
|
#if QT_VERSION >= 0x050200
|
||||||
settings->beginGroup("Interface");
|
settings->beginGroup("Interface");
|
||||||
ui->cbSnapmaticNavigationBar->setChecked(settings->value("NavigationBar", false).toBool());
|
ui->cbSnapmaticNavigationBar->setChecked(settings->value("NavigationBar", true).toBool());
|
||||||
settings->endGroup();
|
settings->endGroup();
|
||||||
#else
|
#else
|
||||||
ui->cbSnapmaticNavigationBar->setVisible(false);
|
ui->cbSnapmaticNavigationBar->setVisible(false);
|
||||||
|
|
|
@ -120,7 +120,7 @@ void SnapmaticWidget::on_cmdView_clicked()
|
||||||
{
|
{
|
||||||
QSettings settings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR);
|
QSettings settings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR);
|
||||||
settings.beginGroup("Interface");
|
settings.beginGroup("Interface");
|
||||||
bool navigationBar = settings.value("NavigationBar", false).toBool();
|
bool navigationBar = settings.value("NavigationBar", true).toBool();
|
||||||
settings.endGroup();
|
settings.endGroup();
|
||||||
|
|
||||||
PictureDialog *picDialog = new PictureDialog(profileDB, crewDB, profileName, this);
|
PictureDialog *picDialog = new PictureDialog(profileDB, crewDB, profileName, this);
|
||||||
|
|
Loading…
Reference in a new issue