Subversion Repositories lightgame

Rev

Rev 5 | Go to most recent revision | Details | 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
8
AppCopyright=© Copyright 2009 - 2018 ViaThinkSoft.
9
AppPublisher=ViaThinkSoft
10
AppPublisherURL=http://www.viathinksoft.de/
11
AppSupportURL=http://www.daniel-marschall.de/
12
AppUpdatesURL=http://www.viathinksoft.de/
13
DefaultDirName={pf}\LightGame
14
DefaultGroupName=LightGame
15
UninstallDisplayIcon={app}\LightGame.exe
16
VersionInfoCompany=ViaThinkSoft
17
VersionInfoCopyright=© Copyright 2009 - 2018 ViaThinkSoft.
18
VersionInfoDescription=LightGame Setup
19
VersionInfoTextVersion=1.0.0.0
20
VersionInfoVersion=1.
21
OutputBaseFilename=LightGameSetup
22
Compression=zip/9
23
 
24
[Languages]
25
Name: de; MessagesFile: "compiler:Languages\German.isl"
26
 
27
[Files]
28
; Allgemein
29
Source: "LightGame.exe"; DestDir: "{app}"
30
 
31
[Folders]
32
Name: "{group}\Webseiten"; Languages: de
33
 
34
[Icons]
35
; Allgemein
36
Name: "{group}\LightGame"; Filename: "{app}\LightGame.exe"
37
; Deutsch
38
Name: "{group}\Deinstallieren"; Filename: "{uninstallexe}"
39
Name: "{group}\Webseiten\Daniel Marschall"; Filename: "https://www.daniel-marschall.de/"
40
Name: "{group}\Webseiten\ViaThinkSoft"; Filename: "https://www.viathinksoft.de/"
41
Name: "{group}\Webseiten\Projektseite auf ViaThinkSoft"; Filename: "https://www.viathinksoft.de/projects/lightgame"
42
 
43
[Run]
44
Filename: "{app}\LightGame.exe"; Description: "LightGame"; Flags: nowait postinstall skipifsilent
45
 
46
[Code]
47
function InitializeSetup(): Boolean;
48
begin
49
  if CheckForMutexes('LightGameSetup')=false then
50
  begin
51
    Createmutex('LightGameSetup');
52
    Result := true;
53
  end
54
  else
55
  begin
56
    Result := False;
57
  end;
58
end;
59