Use new blueprint repo craft-blueprints-quassel
[quassel.git] / scripts / build / SnoreNotify.nsh
diff --git a/scripts/build/SnoreNotify.nsh b/scripts/build/SnoreNotify.nsh
deleted file mode 100644 (file)
index a83aecd..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-!include LogicLib.nsh
-!include WordFunc.nsh
-
-Function SnoreWinVer
-    ReadRegStr $R0 HKLM "SOFTWARE\Microsoft\Windows NT\CurrentVersion" CurrentVersion
-    ${VersionCompare} "6.2" $R0 $R0
-    ${If} $R0 == 1
-        Push "NotWin8"
-    ${Else}
-        Push "AtLeastWin8"
-    ${EndIf}
-FunctionEnd
-
-!macro SnoreShortcut path exe appID
-    Call SnoreWinVer
-    Pop $0
-    ${If} $0 == "AtLeastWin8"
-        nsExec::ExecToLog '"${SnoreToastExe}" -install "${path}" "${exe}" "${appID}"'
-    ${Else}
-        CreateShortCut "${path}" "${exe}"
-    ${EndIf}
-!macroend