Subversion Repositories lightgame

Rev

Rev 4 | Rev 6 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4 daniel-mar 1
; (De)Coder Script für InnoSetup
2
; Fehler bei Uninstallation: ReadOnly, Anwendung in Benutzung
3
 
4
[Setup]
5
AppName=LightGame
6
AppVerName=LightGame
7
AppVersion=1.0
5 daniel-mar 8
AppCopyright=© Copyright 2009 - 2024 ViaThinkSoft.
4 daniel-mar 9
AppPublisher=ViaThinkSoft
10
AppPublisherURL=http://www.viathinksoft.de/
11
AppSupportURL=http://www.daniel-marschall.de/
12
AppUpdatesURL=http://www.viathinksoft.de/
5 daniel-mar 13
DefaultDirName={commonpf}\LightGame
4 daniel-mar 14
DefaultGroupName=LightGame
15
UninstallDisplayIcon={app}\LightGame.exe
16
VersionInfoCompany=ViaThinkSoft
5 daniel-mar 17
VersionInfoCopyright=© Copyright 2009 - 2024 ViaThinkSoft.
4 daniel-mar 18
VersionInfoDescription=LightGame Setup
19
VersionInfoTextVersion=1.0.0.0
20
VersionInfoVersion=1.
21
OutputBaseFilename=LightGameSetup
22
Compression=zip/9
5 daniel-mar 23
; Configure Sign Tool in InnoSetup at "Tools => Configure Sign Tools" (adjust the path to your SVN repository location)
24
; Name    = sign_single   
25
; Command = "C:\SVN\...\sign_single.bat" $f
26
SignTool=sign_single
27
SignedUninstaller=yes
4 daniel-mar 28
 
29
[Languages]
30
Name: de; MessagesFile: "compiler:Languages\German.isl"
31
 
32
[Files]
33
; Allgemein
34
Source: "LightGame.exe"; DestDir: "{app}"
35
 
36
[Folders]
37
Name: "{group}\Webseiten"; Languages: de
38
 
39
[Icons]
40
; Allgemein
41
Name: "{group}\LightGame"; Filename: "{app}\LightGame.exe"
42
; Deutsch
43
Name: "{group}\Deinstallieren"; Filename: "{uninstallexe}"
44
Name: "{group}\Webseiten\Daniel Marschall"; Filename: "https://www.daniel-marschall.de/"
45
Name: "{group}\Webseiten\ViaThinkSoft"; Filename: "https://www.viathinksoft.de/"
46
Name: "{group}\Webseiten\Projektseite auf ViaThinkSoft"; Filename: "https://www.viathinksoft.de/projects/lightgame"
47
 
48
[Run]
49
Filename: "{app}\LightGame.exe"; Description: "LightGame"; Flags: nowait postinstall skipifsilent
50
 
51
[Code]
52
function InitializeSetup(): Boolean;
53
begin
54
  if CheckForMutexes('LightGameSetup')=false then
55
  begin
56
    Createmutex('LightGameSetup');
57
    Result := true;
58
  end
59
  else
60
  begin
61
    Result := False;
62
  end;
63
end;
64