Skip to content

Commit

Permalink
More Merges!
Browse files Browse the repository at this point in the history
  • Loading branch information
micryon committed May 16, 2014
1 parent c2d68fb commit 4a9f028
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 24 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@


AsiaCoin is a 100% pure POS currency

AsiaCoin v2.1.0.0 (non breaking update)
Expand Down
4 changes: 2 additions & 2 deletions contrib/debian/examples/novacoin.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
#proxy=127.0.0.1:9050

# Use as many addnode= settings as you like to connect to specific peers
#addnode=188.120.246.137:15714
#addnode=188.120.246.137:7777

# ... or use as many connect= settings as you like to connect ONLY
# to specific peers:
#connect=188.120.246.137:15714
#connect=188.120.246.137:7777

# Do not use Internet Relay Chat (irc.lfnet.org #novacoin channel) to
# find other peers.
Expand Down
3 changes: 2 additions & 1 deletion doc/README
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
AsiaCoin 0.4.4 BETA
AsiaCoin 2.1.0 BETA

Copyright (c) 2014 AsiaCoin Developers
Copyright (c) 2013 NovaCoin Developers
Copyright (c) 2011-2012 PPCoin Developers
Distributed under the MIT/X11 software license, see the accompanying
Expand Down
2 changes: 1 addition & 1 deletion doc/assets-attribution.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ Site: https://bitcointalk.org/index.php?topic=32273.0
License: Public domain

AsiaCoin Logo
Designer: Evan
Designer:
License: Creative Commons Attribution 4.0 International License
2 changes: 1 addition & 1 deletion doc/build-osx.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ but you can get the current version from http://developer.apple.com

1. Clone the github tree to get the source code:

git clone git@github.com:rat4/asiacoin.git asiacoin
git clone https://github.com/micryon/asiacoin-bc.git asiacoin

2. Download and install MacPorts from http://www.macports.org/

Expand Down
36 changes: 17 additions & 19 deletions share/setup.nsi
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Name NovaCoin
Name AsiaCoin

RequestExecutionLevel highest
SetCompressor /SOLID lzma

# General Symbol Definitions
!define REGKEY "SOFTWARE\$(^Name)"
!define VERSION 0.3.0
!define COMPANY "NovaCoin project"
!define URL http://www.novacoin.ru/
!define VERSION 2.1.0
!define COMPANY "AsiaCoin project"
!define URL http://www.thecoin.asia/

# MUI Symbol Definitions
!define MUI_ICON "../share/pixmaps/novacoin.ico"
!define MUI_ICON "../share/pixmaps/asiacoin.ico"
!define MUI_WELCOMEFINISHPAGE_BITMAP "../share/pixmaps/nsis-wizard.bmp"
!define MUI_HEADERIMAGE
!define MUI_HEADERIMAGE_RIGHT
Expand All @@ -19,8 +19,8 @@ SetCompressor /SOLID lzma
!define MUI_STARTMENUPAGE_REGISTRY_ROOT HKLM
!define MUI_STARTMENUPAGE_REGISTRY_KEY ${REGKEY}
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME StartMenuGroup
!define MUI_STARTMENUPAGE_DEFAULTFOLDER NovaCoin
#!define MUI_FINISHPAGE_RUN $INSTDIR\novacoin-qt.exe
!define MUI_STARTMENUPAGE_DEFAULTFOLDER AsiaCoin
#!define MUI_FINISHPAGE_RUN $INSTDIR\asiacoin-qt.exe
!define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico"
!define MUI_UNWELCOMEFINISHPAGE_BITMAP "../share/pixmaps/nsis-wizard.bmp"
!define MUI_UNFINISHPAGE_NOAUTOCLOSE
Expand All @@ -45,14 +45,14 @@ Var StartMenuGroup
!insertmacro MUI_LANGUAGE English

# Installer attributes
OutFile novacoin-0.3.0-win32-setup.exe
InstallDir $PROGRAMFILES\NovaCoin
OutFile asiacoin-2.1.0-win32-setup.exe
InstallDir $PROGRAMFILES\AsiaCoin
CRCCheck on
XPStyle on
BrandingText " "
ShowInstDetails show
VIProductVersion 0.3.0.0
VIAddVersionKey ProductName NovaCoin
VIAddVersionKey ProductName AsiaCoin
VIAddVersionKey ProductVersion "${VERSION}"
VIAddVersionKey CompanyName "${COMPANY}"
VIAddVersionKey CompanyWebsite "${URL}"
Expand All @@ -66,18 +66,18 @@ ShowUninstDetails show
Section -Main SEC0000
SetOutPath $INSTDIR
SetOverwrite on
#File ../release/novacoin-qt.exe
#File ../release/asiacoin-qt.exe
File /oname=license.txt ../COPYING
File /oname=readme.txt ../doc/README_windows.txt
SetOutPath $INSTDIR\daemon
File ../src/novacoind.exe
File ../src/asiacoin.exe
SetOutPath $INSTDIR\src
File /r /x *.exe /x *.o ../src\*.*
SetOutPath $INSTDIR
WriteRegStr HKCU "${REGKEY}\Components" Main 1

# Remove old wxwidgets-based-bitcoin executable and locales:
#Delete /REBOOTOK $INSTDIR\novacoin.exe
#Delete /REBOOTOK $INSTDIR\asiacoin.exe
#RMDir /r /REBOOTOK $INSTDIR\locale
SectionEnd

Expand All @@ -87,7 +87,7 @@ Section -post SEC0001
WriteUninstaller $INSTDIR\uninstall.exe
!insertmacro MUI_STARTMENU_WRITE_BEGIN Application
CreateDirectory $SMPROGRAMS\$StartMenuGroup
CreateShortcut "$SMPROGRAMS\$StartMenuGroup\Uninstall NovaCoin.lnk" $INSTDIR\uninstall.exe
CreateShortcut "$SMPROGRAMS\$StartMenuGroup\Uninstall AsiaCoin.lnk" $INSTDIR\uninstall.exe
!insertmacro MUI_STARTMENU_WRITE_END
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" DisplayName "$(^Name)"
WriteRegStr HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)" DisplayVersion "${VERSION}"
Expand Down Expand Up @@ -120,7 +120,7 @@ done${UNSECTION_ID}:

# Uninstaller sections
Section /o -un.Main UNSEC0000
#Delete /REBOOTOK $INSTDIR\novacoin-qt.exe
#Delete /REBOOTOK $INSTDIR\asiacoin-qt.exe
Delete /REBOOTOK $INSTDIR\license.txt
Delete /REBOOTOK $INSTDIR\readme.txt
RMDir /r /REBOOTOK $INSTDIR\daemon
Expand All @@ -130,17 +130,15 @@ SectionEnd

Section -un.post UNSEC0001
DeleteRegKey HKCU "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$(^Name)"
Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\Uninstall NovaCoin.lnk"
#Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\Bitcoin.lnk"
#Delete /REBOOTOK "$SMSTARTUP\Bitcoin.lnk"
Delete /REBOOTOK "$SMPROGRAMS\$StartMenuGroup\Uninstall Asiacoin.lnk"
Delete /REBOOTOK $INSTDIR\uninstall.exe
Delete /REBOOTOK $INSTDIR\debug.log
Delete /REBOOTOK $INSTDIR\db.log
DeleteRegValue HKCU "${REGKEY}" StartMenuGroup
DeleteRegValue HKCU "${REGKEY}" Path
DeleteRegKey /IfEmpty HKCU "${REGKEY}\Components"
DeleteRegKey /IfEmpty HKCU "${REGKEY}"
DeleteRegKey HKCR "novacoin"
DeleteRegKey HKCR "asiacoin"
RmDir /REBOOTOK $SMPROGRAMS\$StartMenuGroup
RmDir /REBOOTOK $INSTDIR
Push $R0
Expand Down

0 comments on commit 4a9f028

Please sign in to comment.