Skip to content

Commit

Permalink
Added help file database to installer
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgammon committed Jun 14, 2011
1 parent af33928 commit 8f47dca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions install/mushclient.nsi
Expand Up @@ -108,6 +108,7 @@ Section "-MUSHclient program (required)"
File "..\WinRel\lua5.1.dll"
File "..\lua5.1.lib"
File "..\mushclient.HLP"
File "..\help.db"
File "..\mushclient.cnt"
File "..\install\mushclient.ico"
File "..\tips.txt"
Expand Down Expand Up @@ -530,6 +531,7 @@ Section Uninstall
Delete "$INSTDIR\lua5.1.lib"
Delete "$INSTDIR\MUSHclient.ico"
Delete "$INSTDIR\MUSHclient.hlp"
Delete "$INSTDIR\help.db"
Delete "$INSTDIR\MUSHclient.cnt"
Delete "$INSTDIR\license.txt"

Expand Down
4 changes: 4 additions & 0 deletions localize.bat
Expand Up @@ -6,6 +6,10 @@ lua5.1.exe generate_documentation.lua
echo Creating documentation help.db file ...
del help.db
sqlite3 help.db < documentation_fixed.sql
echo Vacuuming the database ...
sqlite3 help.db vacuum
echo Anlyzing the database ...
sqlite3 help.db analyze

echo Building list of files to process ...
lua5.1.exe build_files_list.lua
Expand Down

0 comments on commit 8f47dca

Please sign in to comment.