Skip to content

Commit

Permalink
update 1.0.1 installer
Browse files Browse the repository at this point in the history
  • Loading branch information
squinky86 committed Jul 6, 2020
1 parent 8cf016e commit e0b3cd0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
## 1.0.1
## 1.0.1 20200706
- General fixes and code cleanups
- Fix very verbose debugging (issue #57)
- Add "Fix Text" contents to Detailed Findings Report (issue #64)
- Add STIG editor (issue #59)
- Support new STIG format with legacy IDs (issue #69)
- Allow mapping to all CCIs under CM-6 (issue #70)
- Indexing fixes (issue #77)
- New logo

## 1.0.0 20200131
- Stabilized database (reverse compatibility will be maintained)
Expand Down
9 changes: 7 additions & 2 deletions STIGQter-Win64.nsi
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
!include x64.nsh
OutFile "STIGQter-Win64.exe"
InstallDir $PROGRAMFILES\STIGQter
InstallDir $PROGRAMFILES64\STIGQter
InstallDirRegKey HKLM 'Software\STIGQter' InstallDir
!define LANG_ENGLISH 1033-English
VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductName" "STIGQter"
Expand All @@ -8,8 +9,12 @@ VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalCopyright" "2018-2020 Jon Hood"
VIAddVersionKey /LANG=${LANG_ENGLISH} "CompanyName" "Jon Hood"
VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "1.0.1-1"
VIProductVersion "1.0.1.0"
RequestExecutionLevel user
RequestExecutionLevel admin
Section
${IfNot} ${RunningX64}
MessageBox MB_OK|MB_ICONSTOP '64-bit Windows required.'
Quit
${EndIf}
SetOutPath $INSTDIR
WriteUninstaller "$INSTDIR\uninstall.exe"
CreateShortCut "$SMPROGRAMS\uninstall.lnk" "$INSTDIR\uninstall.exe"
Expand Down

0 comments on commit e0b3cd0

Please sign in to comment.