Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEion Robb <eion@robbmob.com>2008-07-08 07:53:55 +0400
committerEion Robb <eion@robbmob.com>2008-07-08 07:53:55 +0400
commitcd8e3fc6a53e8e37e52e4a05213c85c6ac1658d7 (patch)
tree5146e1a792c19f1a611b5cdf0a7902703928e57e /skype4pidgin.nsi
parentd0f904c4e7d200f68eb48c4b795048b7fc503240 (diff)
Fix the annoying error when installing
Diffstat (limited to 'skype4pidgin.nsi')
-rwxr-xr-xskype4pidgin.nsi7
1 files changed, 4 insertions, 3 deletions
diff --git a/skype4pidgin.nsi b/skype4pidgin.nsi
index 097283c..7616bec 100755
--- a/skype4pidgin.nsi
+++ b/skype4pidgin.nsi
@@ -7,7 +7,7 @@ SetCompressor lzma
; todo: SetBrandingImage
; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "skype4pidgin"
-!define PRODUCT_VERSION "03-Jul-2008"
+!define PRODUCT_VERSION "08-Jul-2008"
!define PRODUCT_PUBLISHER "Eion Robb"
!define PRODUCT_WEB_SITE "http://skype4pidgin.googlecode.com/"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
@@ -64,7 +64,7 @@ Section "MainSection" SEC01
;Check for pidgin installation
Call GetPidginInstPath
;WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "SOFTWARE\skype4pidgin" "pidgindir" "$PidginDir"
-
+
SetOverwrite try
SetOutPath "$PidginDir\pixmaps\pidgin"
@@ -105,6 +105,7 @@ Section "MainSection" SEC01
cancel:
Abort "Installation of skype4pidgin aborted"
after_copy:
+ Call RegisterURIHandler
SectionEnd
@@ -147,6 +148,6 @@ Function UnInstOld
; Abort "Uninstalling of the previous version gave an error. Install aborted."
cont:
- DeleteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
+ DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}"
FunctionEnd