Skip to content

Commit

Permalink
Removed text from icons. Version number is checked when building rele…
Browse files Browse the repository at this point in the history
…ase. Windows release is labeled as 32 bit
  • Loading branch information
markummitchell-tu committed Oct 30, 2015
1 parent 213b340 commit 591a3c1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
Binary file modified src/img/digitizer.ico
Binary file not shown.
2 changes: 0 additions & 2 deletions src/main/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,6 @@ const QString TSV_FILENAME_EXTENSION ("tsv");

const unsigned int MAX_RECENT_FILE_LIST_SIZE = 8;

const char *VERSION_NUMBER = "6.0";

MainWindow::MainWindow(const QString &errorReportFile,
bool isGnuplot,
QWidget *parent) :
Expand Down
2 changes: 2 additions & 0 deletions src/util/Version.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#include "Version.h"

const char *VERSION_NUMBER = "6.1";

QString engaugeWindowTitle()
{
QString str = QString ("Engauge - %1").arg (VERSION_NUMBER);
Expand Down
3 changes: 2 additions & 1 deletion windows/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
digit*.msi
*.wixobj
engauge.wixpdb
digit*.wixpdb
engauge*.wixpdb
staging
10 changes: 7 additions & 3 deletions windows/build_msi
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ ls -ls $FROMQHC | awk '{print $7,$8,$9,$10}'

read -p 'If the help input files are up to date, press Enter to continue'

fgrep -e 'char *VERSION_NUMBER' ../src/util/Version.cpp

read -p 'If the version number is correct, press Enter to continue'

echo "***Copying help input files"
mkdir -p documentation
cp $FROMQCH ../bin/documentation
Expand All @@ -29,15 +33,15 @@ cp $FROMICO ../bin
echo "***Rebuilding release executable" &&
export PATH=/C/QtOpenSource/Qt5.5.1/Tools/mingw492_32/bin:$PATH &&
export ENGAUGE_RELEASE=1 &&
cd ../src &&
cd .. &&
qmake engauge.pro &&
make clean &&
make &&
cd ../windows &&
cd windows &&
echo "***Rebuilding release directory" &&
windeployqt -release ../bin/engauge.exe &&
echo "***Compiling release files" &&
candle.exe engauge.wxs &&
candle.exe WixUI_InstallDir_NoLicense.wxs &&
echo "***Creating MSI" &&
light.exe -ext WixUIExtension -ext WixUtilExtension engauge.wixobj WixUI_InstallDir_NoLicense.wixobj -o digit-exe-windows-64-bit-installer-6_0.msi
light.exe -ext WixUIExtension -ext WixUtilExtension engauge.wixobj WixUI_InstallDir_NoLicense.wixobj -o digit-exe-windows-32-bit-installer-6_0.msi

0 comments on commit 591a3c1

Please sign in to comment.