Cryptomator.iss 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. ;This file will be executed next to the application bundle image
  2. ;I.e. current directory will contain folder APPLICATION_NAME with application files
  3. [Setup]
  4. AppId={{PRODUCT_APP_IDENTIFIER}}
  5. AppName=APPLICATION_NAME
  6. AppVersion=APPLICATION_VERSION
  7. AppVerName=APPLICATION_NAME APPLICATION_VERSION
  8. AppPublisher=APPLICATION_VENDOR
  9. AppComments=APPLICATION_COMMENTS
  10. AppCopyright=APPLICATION_COPYRIGHT
  11. AppPublisherURL=https://cryptomator.org/
  12. ;AppSupportURL=http://java.com/
  13. ;AppUpdatesURL=http://java.com/
  14. DefaultDirName=APPLICATION_INSTALL_ROOT\APPLICATION_NAME
  15. DisableStartupPrompt=Yes
  16. DisableDirPage=No
  17. DisableProgramGroupPage=Yes
  18. DisableReadyPage=Yes
  19. DisableFinishedPage=No
  20. DisableWelcomePage=Yes
  21. DefaultGroupName=APPLICATION_GROUP
  22. ;Optional License
  23. LicenseFile=APPLICATION_LICENSE_FILE
  24. ;WinXP or above
  25. MinVersion=0,5.1
  26. OutputBaseFilename=INSTALLER_FILE_NAME
  27. Compression=lzma
  28. SolidCompression=yes
  29. PrivilegesRequired=admin
  30. SetupIconFile=APPLICATION_NAME\APPLICATION_NAME.ico
  31. UninstallDisplayIcon={app}\APPLICATION_NAME.ico
  32. UninstallDisplayName=APPLICATION_NAME
  33. WizardImageStretch=No
  34. WizardSmallImageFile=Cryptomator-setup-icon.bmp
  35. WizardImageBackColor=$ffffff
  36. ArchitecturesInstallIn64BitMode=ARCHITECTURE_BIT_MODE
  37. [Languages]
  38. Name: "english"; MessagesFile: "compiler:Default.isl"
  39. [Files]
  40. Source: "APPLICATION_NAME\APPLICATION_NAME.exe"; DestDir: "{app}"; Flags: ignoreversion
  41. Source: "APPLICATION_NAME\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
  42. [Icons]
  43. Name: "{group}\APPLICATION_NAME"; Filename: "{app}\APPLICATION_NAME.exe"; IconFilename: "{app}\APPLICATION_NAME.ico"; Check: APPLICATION_MENU_SHORTCUT()
  44. Name: "{commondesktop}\APPLICATION_NAME"; Filename: "{app}\APPLICATION_NAME.exe"; IconFilename: "{app}\APPLICATION_NAME.ico"; Check: APPLICATION_DESKTOP_SHORTCUT()
  45. [Run]
  46. Filename: "{app}\RUN_FILENAME.exe"; Description: "{cm:LaunchProgram,APPLICATION_NAME}"; Flags: nowait postinstall skipifsilent; Check: APPLICATION_NOT_SERVICE()
  47. Filename: "{app}\RUN_FILENAME.exe"; Parameters: "-install -svcName ""APPLICATION_NAME"" -svcDesc ""APPLICATION_DESCRIPTION"" -mainExe ""APPLICATION_LAUNCHER_FILENAME"" START_ON_INSTALL RUN_AT_STARTUP"; Check: APPLICATION_SERVICE()
  48. [UninstallRun]
  49. Filename: "{app}\RUN_FILENAME.exe "; Parameters: "-uninstall -svcName APPLICATION_NAME STOP_ON_UNINSTALL"; Check: APPLICATION_SERVICE()
  50. [Code]
  51. function returnTrue(): Boolean;
  52. begin
  53. Result := True;
  54. end;
  55. function returnFalse(): Boolean;
  56. begin
  57. Result := False;
  58. end;
  59. function InitializeSetup(): Boolean;
  60. begin
  61. // Possible future improvements:
  62. // if version less or same => just launch app
  63. // if upgrade => check if same app is running and wait for it to exit
  64. // Add pack200/unpack200 support?
  65. Result := True;
  66. end;