Skip to content

Commit

Permalink
Version 1.0 release !
Browse files Browse the repository at this point in the history
  • Loading branch information
cvermot committed Dec 17, 2018
1 parent ea1b6f0 commit c146bd6
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
Binary file added releases/1.0/QEnergyLoggerDecoder-1.0-setup.exe
Binary file not shown.
Binary file added releases/1.0/QEnergyLoggerDecoder-1.0.zip
Binary file not shown.
7 changes: 7 additions & 0 deletions src/qenergyloggerdecoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,10 @@ void QEnergyLoggerDecoder::runFilesDecoding()
elfp->moveToThread(thread);

statusBar()->showMessage("Decoding files... Please wait !");

runPushButton->setText(tr("Decoding files, please wait !"));
runPushButton->setEnabled(false);

thread->start();

connect(thread, SIGNAL(finished()), thread, SLOT(deleteLater()));
Expand Down Expand Up @@ -233,6 +237,9 @@ void QEnergyLoggerDecoder::populateTable()
tableWidget->resizeColumnsToContents();
tableWidget->setMinimumWidth(tableWidget->horizontalHeader()->length() + tableWidget->verticalHeader()->width() +30);

runPushButton->setText(tr("Run"));
runPushButton->setEnabled(true);

statusBar()->showMessage("Files decoding successful");
}

Expand Down
49 changes: 49 additions & 0 deletions windowsInstaller/innoSetup_1.0.iss
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "QEnergyLoggerDecoder"
#define MyAppVersion "1.0"
#define MyAppPublisher "QEnergyLoggerDecoder dev team"
#define MyAppURL "http://afterflight.org"
#define MyAppExeName "QEnergyLoggerDecoder.exe"

[Setup]
; NOTE: The value of AppId uniquely identifies this application.
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{530F9977-A889-4F6E-9018-876F106378D4}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={pf}\{#MyAppName}
DisableProgramGroupPage=yes
LicenseFile=..\LICENSE
OutputBaseFilename=QEnergyLoggerDecoder-1.0-setup
Compression=lzma
SolidCompression=yes

[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
Name: "french"; MessagesFile: "compiler:Languages\French.isl"

[Tasks]
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
Name: "quicklaunchicon"; Description: "{cm:CreateQuickLaunchIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked; OnlyBelowVersion: 0,6.1

[Files]
Source: "..\releases\1.0\QEnergyLoggerDecoder-1.0\QEnergyLoggerDecoder.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "..\releases\1.0\QEnergyLoggerDecoder-1.0\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Name: "{commonprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
Name: "{userappdata}\Microsoft\Internet Explorer\Quick Launch\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: quicklaunchicon

[Run]
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent

0 comments on commit c146bd6

Please sign in to comment.