Do a full install by default
authorHannah von Reth <vonreth@kde.org>
Sat, 22 Oct 2016 13:37:55 +0000 (15:37 +0200)
committerManuel Nickschas <sputnick@quassel-irc.org>
Wed, 4 Apr 2018 21:14:03 +0000 (23:14 +0200)
Closes GH-261.

(cherry picked from commit feb81a05d218102d525a09a1959a1cb98b323827)

scripts/build/NullsoftInstaller.nsi

index 81d9cf8..af69ad4 100644 (file)
@@ -33,7 +33,6 @@ Var StartMenuFolder
 !define MUI_STARTMENUPAGE_REGISTRY_KEY "${regkey}"
 !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
 
-InstType "Minimal"
 InstType "Full"
 ;--------------------------------
 
@@ -139,7 +138,7 @@ SectionEnd
 
 
 Section "Quassel"  QUASSEL_ALL_IN_ONE
-    SectionIn 1 2
+    SectionIn 1
     SetOutPath $INSTDIR
     StrCpy $ToBeRunned "$INSTDIR\quassel.exe"
     StrCpy $nameOfToBeRunend "Run Quassel"
@@ -149,8 +148,8 @@ Section "Quassel"  QUASSEL_ALL_IN_ONE
     !insertmacro MUI_STARTMENU_WRITE_END
 SectionEnd
 
-Section /o "QuasselClient"  QUASSEL_CLIENT
-    SectionIn 2
+Section "QuasselClient"  QUASSEL_CLIENT
+    SectionIn 1
     SetOutPath $INSTDIR
     ${If} $ToBeRunned == ""
         StrCpy $ToBeRunned "$INSTDIR\quasselclient.exe"
@@ -162,8 +161,8 @@ Section /o "QuasselClient"  QUASSEL_CLIENT
     !insertmacro MUI_STARTMENU_WRITE_END
 SectionEnd
 
-Section /o "QuasselCore"  QUASSEL_CORE
-    SectionIn 2
+Section "QuasselCore"  QUASSEL_CORE
+    SectionIn 1
     SetOutPath $INSTDIR
     ${If} $ToBeRunned == ""
         StrCpy $ToBeRunned "$INSTDIR\quasselcore.exe"