mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
installer: internal cosmetic changes
git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@692 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
parent
88e812091b
commit
6865f20421
@ -1,5 +1,6 @@
|
||||
@ECHO OFF
|
||||
SETLOCAL
|
||||
|
||||
SET "VERSION=3.2"
|
||||
SET "SEVENZIP_PATH=%PROGRAMFILES%\7-Zip\7z.exe"
|
||||
|
||||
|
@ -26,7 +26,7 @@
|
||||
#error Update your Inno Setup version
|
||||
#endif
|
||||
|
||||
#define installer_build_number "20"
|
||||
#define installer_build_number "21"
|
||||
|
||||
#define app_copyright "Copyright © 2001-2011, Nikse"
|
||||
#define VerMajor
|
||||
@ -88,8 +88,6 @@ OutputBaseFilename=SubtitleEdit-{#simple_app_version}-setup
|
||||
AllowNoIcons=yes
|
||||
Compression=lzma2/ultra
|
||||
SolidCompression=yes
|
||||
EnableDirDoesntExistWarning=no
|
||||
DirExistsWarning=auto
|
||||
ShowTasksTreeLines=yes
|
||||
DisableReadyPage=yes
|
||||
PrivilegesRequired=admin
|
||||
@ -169,6 +167,9 @@ Source: {#bindir}\Icons\SpellCheck.png; DestDir: {app}\Icons;
|
||||
Source: {#bindir}\Icons\VideoToogle.png; DestDir: {app}\Icons; Flags: ignoreversion; Components: main
|
||||
Source: {#bindir}\Icons\VisualSync.png; DestDir: {app}\Icons; Flags: ignoreversion; Components: main
|
||||
Source: {#bindir}\Icons\WaveFormToogle.png; DestDir: {app}\Icons; Flags: ignoreversion; Components: main
|
||||
Source: ..\Tesseract\leptonlib.dll; DestDir: {app}\Tesseract; Flags: ignoreversion; Components: main
|
||||
Source: ..\Tesseract\tessdata\eng.traineddata; DestDir: {app}\Tesseract\tessdata; Flags: ignoreversion; Components: main
|
||||
Source: ..\Tesseract\tesseract.exe; DestDir: {app}\Tesseract; Flags: ignoreversion; Components: main
|
||||
|
||||
; Uncomment the language files when they are ready to be distributed again
|
||||
#ifdef localize
|
||||
@ -205,9 +206,6 @@ Source: ..\Dictionaries\ru_RU_names_etc.xml; DestDir: {userappdata}\Subtit
|
||||
Source: ..\Dictionaries\ru_RU_user.xml; DestDir: {userappdata}\Subtitle Edit\Dictionaries; Flags: ignoreversion onlyifdoesntexist uninsneveruninstall; Components: main
|
||||
Source: ..\Dictionaries\rus_OCRFixReplaceList.xml; DestDir: {userappdata}\Subtitle Edit\Dictionaries; Flags: ignoreversion onlyifdoesntexist uninsneveruninstall; Components: main
|
||||
Source: ..\Dictionaries\swe_OCRFixReplaceList.xml; DestDir: {userappdata}\Subtitle Edit\Dictionaries; Flags: ignoreversion onlyifdoesntexist uninsneveruninstall; Components: main
|
||||
Source: ..\Tesseract\tessdata\eng.traineddata; DestDir: {app}\Tesseract\tessdata; Flags: ignoreversion onlyifdoesntexist; Components: main
|
||||
Source: ..\Tesseract\leptonlib.dll; DestDir: {app}\Tesseract; Flags: ignoreversion onlyifdoesntexist; Components: main
|
||||
Source: ..\Tesseract\tesseract.exe; DestDir: {app}\Tesseract; Flags: ignoreversion onlyifdoesntexist; Components: main
|
||||
|
||||
|
||||
[Icons]
|
||||
@ -434,7 +432,8 @@ begin
|
||||
if CheckForMutexes(installer_mutex_name) AND NOT WizardSilent() then begin
|
||||
SuppressibleMsgBox(ExpandConstant('{cm:msg_SetupIsRunningWarning}'), mbError, MB_OK, MB_OK);
|
||||
Result := False;
|
||||
end else begin
|
||||
end
|
||||
else begin
|
||||
Result := True;
|
||||
CreateMutex(installer_mutex_name);
|
||||
|
||||
@ -465,15 +464,15 @@ end;
|
||||
|
||||
function InitializeUninstall(): Boolean;
|
||||
begin
|
||||
// Check if app is running during uninstallation
|
||||
if IsModuleLoadedU('SubtitleEdit.exe') then begin
|
||||
SuppressibleMsgBox(ExpandConstant('{cm:msg_AppIsRunning}'), mbError, MB_OK, MB_OK);
|
||||
if CheckForMutexes(installer_mutex_name) then begin
|
||||
SuppressibleMsgBox(ExpandConstant('{cm:msg_SetupIsRunningWarning}'), mbError, MB_OK, MB_OK);
|
||||
Result := False;
|
||||
end else
|
||||
Result := True;
|
||||
|
||||
if NOT IsModuleLoadedU('SubtitleEdit.exe') AND CheckForMutexes(installer_mutex_name) then begin
|
||||
SuppressibleMsgBox(ExpandConstant('{cm:msg_SetupIsRunningWarning}'), mbError, MB_OK, MB_OK);
|
||||
// Check if app is running during uninstallation
|
||||
if IsModuleLoadedU('SubtitleEdit.exe') then begin
|
||||
SuppressibleMsgBox(ExpandConstant('{cm:msg_AppIsRunning}'), mbError, MB_OK, MB_OK);
|
||||
Result := False;
|
||||
end else
|
||||
CreateMutex(installer_mutex_name);
|
||||
|
Loading…
Reference in New Issue
Block a user