Add help entry and set PATH in windows installer.
This commit is contained in:
parent
ca65deb369
commit
254af3c351
4 changed files with 244 additions and 1 deletions
|
@ -2,5 +2,5 @@ include MANIFEST.in
|
||||||
include COPYING Makefile requirements.txt
|
include COPYING Makefile requirements.txt
|
||||||
include doc/Makefile doc/*.txt doc/*.1 doc/*.html
|
include doc/Makefile doc/*.txt doc/*.1 doc/*.html
|
||||||
include doc/css/*.css doc/js/*.js
|
include doc/css/*.css doc/js/*.js
|
||||||
include scripts/*.py scripts/*.sh scripts/*.bat
|
include scripts/*.py scripts/*.sh scripts/*.bat scripts/*.iss
|
||||||
recursive-include tests *.py
|
recursive-include tests *.py
|
||||||
|
|
|
@ -7,6 +7,8 @@ Features:
|
||||||
Changes:
|
Changes:
|
||||||
- comics: Always use connection pooling when downloading pages or files.
|
- comics: Always use connection pooling when downloading pages or files.
|
||||||
- cmdline: Replace the deprecated argument parser optparse with argparse.
|
- cmdline: Replace the deprecated argument parser optparse with argparse.
|
||||||
|
- installation: The Windows installer now adds a help entry to the start menu
|
||||||
|
and has a flag to add dosage.exe to the PATH.
|
||||||
|
|
||||||
Fixes:
|
Fixes:
|
||||||
- comics: Correct the list of characters not to quote for URL path encoding.
|
- comics: Correct the list of characters not to quote for URL path encoding.
|
||||||
|
|
219
scripts/modpath.iss
Normal file
219
scripts/modpath.iss
Normal file
|
@ -0,0 +1,219 @@
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Inno Setup Ver: 5.4.2
|
||||||
|
// Script Version: 1.4.2
|
||||||
|
// Author: Jared Breland <jbreland@legroom.net>
|
||||||
|
// Homepage: http://www.legroom.net/software
|
||||||
|
// License: GNU Lesser General Public License (LGPL), version 3
|
||||||
|
// http://www.gnu.org/licenses/lgpl.html
|
||||||
|
//
|
||||||
|
// Script Function:
|
||||||
|
// Allow modification of environmental path directly from Inno Setup installers
|
||||||
|
//
|
||||||
|
// Instructions:
|
||||||
|
// Copy modpath.iss to the same directory as your setup script
|
||||||
|
//
|
||||||
|
// Add this statement to your [Setup] section
|
||||||
|
// ChangesEnvironment=true
|
||||||
|
//
|
||||||
|
// Add this statement to your [Tasks] section
|
||||||
|
// You can change the Description or Flags
|
||||||
|
// You can change the Name, but it must match the ModPathName setting below
|
||||||
|
// Name: modifypath; Description: &Add application directory to your environmental path; Flags: unchecked
|
||||||
|
//
|
||||||
|
// Add the following to the end of your [Code] section
|
||||||
|
// ModPathName defines the name of the task defined above
|
||||||
|
// ModPathType defines whether the 'user' or 'system' path will be modified;
|
||||||
|
// this will default to user if anything other than system is set
|
||||||
|
// setArrayLength must specify the total number of dirs to be added
|
||||||
|
// Result[0] contains first directory, Result[1] contains second, etc.
|
||||||
|
// const
|
||||||
|
// ModPathName = 'modifypath';
|
||||||
|
// ModPathType = 'user';
|
||||||
|
//
|
||||||
|
// function ModPathDir(): TArrayOfString;
|
||||||
|
// begin
|
||||||
|
// setArrayLength(Result, 1);
|
||||||
|
// Result[0] := ExpandConstant('{app}');
|
||||||
|
// end;
|
||||||
|
// #include "modpath.iss"
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
procedure ModPath();
|
||||||
|
var
|
||||||
|
oldpath: String;
|
||||||
|
newpath: String;
|
||||||
|
updatepath: Boolean;
|
||||||
|
pathArr: TArrayOfString;
|
||||||
|
aExecFile: String;
|
||||||
|
aExecArr: TArrayOfString;
|
||||||
|
i, d: Integer;
|
||||||
|
pathdir: TArrayOfString;
|
||||||
|
regroot: Integer;
|
||||||
|
regpath: String;
|
||||||
|
|
||||||
|
begin
|
||||||
|
// Get constants from main script and adjust behavior accordingly
|
||||||
|
// ModPathType MUST be 'system' or 'user'; force 'user' if invalid
|
||||||
|
if ModPathType = 'system' then begin
|
||||||
|
regroot := HKEY_LOCAL_MACHINE;
|
||||||
|
regpath := 'SYSTEM\CurrentControlSet\Control\Session Manager\Environment';
|
||||||
|
end else begin
|
||||||
|
regroot := HKEY_CURRENT_USER;
|
||||||
|
regpath := 'Environment';
|
||||||
|
end;
|
||||||
|
|
||||||
|
// Get array of new directories and act on each individually
|
||||||
|
pathdir := ModPathDir();
|
||||||
|
for d := 0 to GetArrayLength(pathdir)-1 do begin
|
||||||
|
updatepath := true;
|
||||||
|
|
||||||
|
// Modify WinNT path
|
||||||
|
if UsingWinNT() = true then begin
|
||||||
|
|
||||||
|
// Get current path, split into an array
|
||||||
|
RegQueryStringValue(regroot, regpath, 'Path', oldpath);
|
||||||
|
oldpath := oldpath + ';';
|
||||||
|
i := 0;
|
||||||
|
|
||||||
|
while (Pos(';', oldpath) > 0) do begin
|
||||||
|
SetArrayLength(pathArr, i+1);
|
||||||
|
pathArr[i] := Copy(oldpath, 0, Pos(';', oldpath)-1);
|
||||||
|
oldpath := Copy(oldpath, Pos(';', oldpath)+1, Length(oldpath));
|
||||||
|
i := i + 1;
|
||||||
|
|
||||||
|
// Check if current directory matches app dir
|
||||||
|
if pathdir[d] = pathArr[i-1] then begin
|
||||||
|
// if uninstalling, remove dir from path
|
||||||
|
if IsUninstaller() = true then begin
|
||||||
|
continue;
|
||||||
|
// if installing, flag that dir already exists in path
|
||||||
|
end else begin
|
||||||
|
updatepath := false;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
// Add current directory to new path
|
||||||
|
if i = 1 then begin
|
||||||
|
newpath := pathArr[i-1];
|
||||||
|
end else begin
|
||||||
|
newpath := newpath + ';' + pathArr[i-1];
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
// Append app dir to path if not already included
|
||||||
|
if (IsUninstaller() = false) AND (updatepath = true) then
|
||||||
|
newpath := newpath + ';' + pathdir[d];
|
||||||
|
|
||||||
|
// Write new path
|
||||||
|
RegWriteStringValue(regroot, regpath, 'Path', newpath);
|
||||||
|
|
||||||
|
// Modify Win9x path
|
||||||
|
end else begin
|
||||||
|
|
||||||
|
// Convert to shortened dirname
|
||||||
|
pathdir[d] := GetShortName(pathdir[d]);
|
||||||
|
|
||||||
|
// If autoexec.bat exists, check if app dir already exists in path
|
||||||
|
aExecFile := 'C:\AUTOEXEC.BAT';
|
||||||
|
if FileExists(aExecFile) then begin
|
||||||
|
LoadStringsFromFile(aExecFile, aExecArr);
|
||||||
|
for i := 0 to GetArrayLength(aExecArr)-1 do begin
|
||||||
|
if IsUninstaller() = false then begin
|
||||||
|
// If app dir already exists while installing, skip add
|
||||||
|
if (Pos(pathdir[d], aExecArr[i]) > 0) then
|
||||||
|
updatepath := false;
|
||||||
|
break;
|
||||||
|
end else begin
|
||||||
|
// If app dir exists and = what we originally set, then delete at uninstall
|
||||||
|
if aExecArr[i] = 'SET PATH=%PATH%;' + pathdir[d] then
|
||||||
|
aExecArr[i] := '';
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
// If app dir not found, or autoexec.bat didn't exist, then (create and) append to current path
|
||||||
|
if (IsUninstaller() = false) AND (updatepath = true) then begin
|
||||||
|
SaveStringToFile(aExecFile, #13#10 + 'SET PATH=%PATH%;' + pathdir[d], True);
|
||||||
|
|
||||||
|
// If uninstalling, write the full autoexec out
|
||||||
|
end else begin
|
||||||
|
SaveStringsToFile(aExecFile, aExecArr, False);
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
// Split a string into an array using passed delimeter
|
||||||
|
procedure MPExplode(var Dest: TArrayOfString; Text: String; Separator: String);
|
||||||
|
var
|
||||||
|
i: Integer;
|
||||||
|
begin
|
||||||
|
i := 0;
|
||||||
|
repeat
|
||||||
|
SetArrayLength(Dest, i+1);
|
||||||
|
if Pos(Separator,Text) > 0 then begin
|
||||||
|
Dest[i] := Copy(Text, 1, Pos(Separator, Text)-1);
|
||||||
|
Text := Copy(Text, Pos(Separator,Text) + Length(Separator), Length(Text));
|
||||||
|
i := i + 1;
|
||||||
|
end else begin
|
||||||
|
Dest[i] := Text;
|
||||||
|
Text := '';
|
||||||
|
end;
|
||||||
|
until Length(Text)=0;
|
||||||
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
procedure CurStepChanged(CurStep: TSetupStep);
|
||||||
|
var
|
||||||
|
taskname: String;
|
||||||
|
begin
|
||||||
|
taskname := ModPathName;
|
||||||
|
if CurStep = ssPostInstall then
|
||||||
|
if IsTaskSelected(taskname) then
|
||||||
|
ModPath();
|
||||||
|
end;
|
||||||
|
|
||||||
|
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
|
||||||
|
var
|
||||||
|
aSelectedTasks: TArrayOfString;
|
||||||
|
i: Integer;
|
||||||
|
taskname: String;
|
||||||
|
regpath: String;
|
||||||
|
regstring: String;
|
||||||
|
appid: String;
|
||||||
|
begin
|
||||||
|
// only run during actual uninstall
|
||||||
|
if CurUninstallStep = usUninstall then begin
|
||||||
|
// get list of selected tasks saved in registry at install time
|
||||||
|
appid := '{#emit SetupSetting("AppId")}';
|
||||||
|
if appid = '' then appid := '{#emit SetupSetting("AppName")}';
|
||||||
|
regpath := ExpandConstant('Software\Microsoft\Windows\CurrentVersion\Uninstall\'+appid+'_is1');
|
||||||
|
RegQueryStringValue(HKLM, regpath, 'Inno Setup: Selected Tasks', regstring);
|
||||||
|
if regstring = '' then RegQueryStringValue(HKCU, regpath, 'Inno Setup: Selected Tasks', regstring);
|
||||||
|
|
||||||
|
// check each task; if matches modpath taskname, trigger patch removal
|
||||||
|
if regstring <> '' then begin
|
||||||
|
taskname := ModPathName;
|
||||||
|
MPExplode(aSelectedTasks, regstring, ',');
|
||||||
|
if GetArrayLength(aSelectedTasks) > 0 then begin
|
||||||
|
for i := 0 to GetArrayLength(aSelectedTasks)-1 do begin
|
||||||
|
if comparetext(aSelectedTasks[i], taskname) = 0 then
|
||||||
|
ModPath();
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
end;
|
||||||
|
|
||||||
|
function NeedRestart(): Boolean;
|
||||||
|
var
|
||||||
|
taskname: String;
|
||||||
|
begin
|
||||||
|
taskname := ModPathName;
|
||||||
|
if IsTaskSelected(taskname) and not UsingWinNT() then begin
|
||||||
|
Result := True;
|
||||||
|
end else begin
|
||||||
|
Result := False;
|
||||||
|
end;
|
||||||
|
end;
|
22
setup.py
22
setup.py
|
@ -267,12 +267,16 @@ class InnoScript:
|
||||||
print("[Setup]", file=fd)
|
print("[Setup]", file=fd)
|
||||||
print("AppName=%s" % self.name, file=fd)
|
print("AppName=%s" % self.name, file=fd)
|
||||||
print("AppVerName=%s %s" % (self.name, self.version), file=fd)
|
print("AppVerName=%s %s" % (self.name, self.version), file=fd)
|
||||||
|
print("ChangesEnvironment=true", file=fd)
|
||||||
print(r"DefaultDirName={pf}\%s" % self.name, file=fd)
|
print(r"DefaultDirName={pf}\%s" % self.name, file=fd)
|
||||||
print("DefaultGroupName=%s" % self.name, file=fd)
|
print("DefaultGroupName=%s" % self.name, file=fd)
|
||||||
print("OutputBaseFilename=%s" % self.distfilebase, file=fd)
|
print("OutputBaseFilename=%s" % self.distfilebase, file=fd)
|
||||||
print("OutputDir=..", file=fd)
|
print("OutputDir=..", file=fd)
|
||||||
print("SetupIconFile=%s" % self.icon, file=fd)
|
print("SetupIconFile=%s" % self.icon, file=fd)
|
||||||
print(file=fd)
|
print(file=fd)
|
||||||
|
print("[Tasks]", file=fd)
|
||||||
|
print("Name: modifypath; Description: Add application directory to %PATH%; Flags: checked", file=fd)
|
||||||
|
print(file=fd)
|
||||||
# List of source files
|
# List of source files
|
||||||
files = self.windows_exe_files + \
|
files = self.windows_exe_files + \
|
||||||
self.console_exe_files + \
|
self.console_exe_files + \
|
||||||
|
@ -287,12 +291,30 @@ class InnoScript:
|
||||||
for path in self.windows_exe_files:
|
for path in self.windows_exe_files:
|
||||||
print(r'Name: "{group}\%s"; Filename: "{app}\%s"' %
|
print(r'Name: "{group}\%s"; Filename: "{app}\%s"' %
|
||||||
(self.name, path), file=fd)
|
(self.name, path), file=fd)
|
||||||
|
for path in self.console_exe_files:
|
||||||
|
name = os.path.basename(path).capitalize()
|
||||||
|
print(r'Name: "{group}\%s help"; Filename: "cmd.exe"; Parameters "/C %s --help";' % (name, path), file=fd)
|
||||||
print(r'Name: "{group}\Uninstall %s"; Filename: "{uninstallexe}"' % self.name, file=fd)
|
print(r'Name: "{group}\Uninstall %s"; Filename: "{uninstallexe}"' % self.name, file=fd)
|
||||||
print(file=fd)
|
print(file=fd)
|
||||||
# Uninstall optional log files
|
# Uninstall optional log files
|
||||||
print('[UninstallDelete]', file=fd)
|
print('[UninstallDelete]', file=fd)
|
||||||
print(r'Type: files; Name: "{pf}\%s\dosage*.exe.log"' % self.name, file=fd)
|
print(r'Type: files; Name: "{pf}\%s\dosage*.exe.log"' % self.name, file=fd)
|
||||||
print(file=fd)
|
print(file=fd)
|
||||||
|
# Add app dir to PATH
|
||||||
|
print("[Code]", file=fd)
|
||||||
|
print("""\
|
||||||
|
const
|
||||||
|
ModPathName = 'modifypath';
|
||||||
|
ModPathType = 'user';
|
||||||
|
|
||||||
|
function ModPathDir(): TArrayOfString;
|
||||||
|
begin
|
||||||
|
setArrayLength(Result, 1)
|
||||||
|
Result[0] := ExpandConstant('{app}');
|
||||||
|
end;
|
||||||
|
#include "modpath.iss"
|
||||||
|
""", file=fd)
|
||||||
|
shutil.copy(r"scripts\modpath.iss", "dist")
|
||||||
|
|
||||||
def compile (self):
|
def compile (self):
|
||||||
"""Compile Inno script with iscc.exe."""
|
"""Compile Inno script with iscc.exe."""
|
||||||
|
|
Loading…
Reference in a new issue