Skip to content

Commit 8f47dca

Browse files
committed
Added help file database to installer
1 parent af33928 commit 8f47dca

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

install/mushclient.nsi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ Section "-MUSHclient program (required)"
108108
File "..\WinRel\lua5.1.dll"
109109
File "..\lua5.1.lib"
110110
File "..\mushclient.HLP"
111+
File "..\help.db"
111112
File "..\mushclient.cnt"
112113
File "..\install\mushclient.ico"
113114
File "..\tips.txt"
@@ -530,6 +531,7 @@ Section Uninstall
530531
Delete "$INSTDIR\lua5.1.lib"
531532
Delete "$INSTDIR\MUSHclient.ico"
532533
Delete "$INSTDIR\MUSHclient.hlp"
534+
Delete "$INSTDIR\help.db"
533535
Delete "$INSTDIR\MUSHclient.cnt"
534536
Delete "$INSTDIR\license.txt"
535537

localize.bat

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ lua5.1.exe generate_documentation.lua
66
echo Creating documentation help.db file ...
77
del help.db
88
sqlite3 help.db < documentation_fixed.sql
9+
echo Vacuuming the database ...
10+
sqlite3 help.db vacuum
11+
echo Anlyzing the database ...
12+
sqlite3 help.db analyze
913

1014
echo Building list of files to process ...
1115
lua5.1.exe build_files_list.lua

0 commit comments

Comments
 (0)