8bbc9dbff2
- Flutter + PocketBase dental lab management system - Clinic & lab dashboards, job tracking, patient management - Product catalog, finance tracking, multi-language support - AI assistant integration, realtime notifications - Windows installer (Inno Setup) included - Developed by kovakyazilim.com
50 lines
1.9 KiB
Plaintext
50 lines
1.9 KiB
Plaintext
; DLS - Dental Lab System Installer
|
||
; Developed by kovakyazilim.com
|
||
; Inno Setup Script
|
||
|
||
#define MyAppName "DLS - Dental Lab System"
|
||
#define MyAppVersion "1.0.0"
|
||
#define MyAppPublisher "kovakyazilim.com"
|
||
#define MyAppURL "https://kovakyazilim.com"
|
||
#define MyAppExeName "lab_app.exe"
|
||
|
||
[Setup]
|
||
AppId={{A1B2C3D4-E5F6-7890-ABCD-EF1234567890}
|
||
AppName={#MyAppName}
|
||
AppVersion={#MyAppVersion}
|
||
AppPublisher={#MyAppPublisher}
|
||
AppPublisherURL={#MyAppURL}
|
||
AppSupportURL={#MyAppURL}
|
||
AppUpdatesURL={#MyAppURL}
|
||
DefaultDirName={autopf}\DLS
|
||
DefaultGroupName=DLS
|
||
DisableProgramGroupPage=yes
|
||
OutputDir=..\build\installer
|
||
OutputBaseFilename=DLS_Setup_v{#MyAppVersion}
|
||
SetupIconFile=..\windows\runner\resources\app_icon.ico
|
||
Compression=lzma
|
||
SolidCompression=yes
|
||
WizardStyle=modern
|
||
PrivilegesRequired=admin
|
||
|
||
[Languages]
|
||
Name: "turkish"; MessagesFile: "compiler:Languages\Turkish.isl"
|
||
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||
|
||
[Tasks]
|
||
Name: "desktopicon"; Description: "Masa&üstü kısayolu oluştur"; GroupDescription: "Kısayollar:"
|
||
|
||
[Files]
|
||
Source: "..\build\windows\x64\runner\Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
|
||
Source: "..\build\windows\x64\runner\Release\flutter_windows.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||
Source: "..\build\windows\x64\runner\Release\share_plus_plugin.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||
Source: "..\build\windows\x64\runner\Release\url_launcher_windows_plugin.dll"; DestDir: "{app}"; Flags: ignoreversion
|
||
Source: "..\build\windows\x64\runner\Release\data\*"; DestDir: "{app}\data"; Flags: ignoreversion recursesubdirs createallsubdirs
|
||
|
||
[Icons]
|
||
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
||
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
||
|
||
[Run]
|
||
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|