Skip to content
This repository has been archived by the owner on Dec 26, 2017. It is now read-only.

Commit

Permalink
Merge pull request #5 from lateminer/v3.0.3.0-dev
Browse files Browse the repository at this point in the history
Update 3.0.3.0
  • Loading branch information
dopecoin-dev authored Nov 9, 2016
2 parents 998a667 + 2400ef2 commit fac4cc6
Show file tree
Hide file tree
Showing 160 changed files with 3,961 additions and 8,916 deletions.
4 changes: 2 additions & 2 deletions COPYING
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Copyright (c) 2014 Dopecoin Developers
Copyright (c) 2011-2012 PPCoin Developers
Copyright (c) 2014-2016 Dopecoin Developers
Copyright (c) 2011-2016 Peercoin, Novacoin, Shadowcash Developers
Copyright (c) 2009-2012 Bitcoin Developers

Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
34 changes: 16 additions & 18 deletions Dopecoin-qt.pro
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
TEMPLATE = app
TARGET = DopeCoin-Qt
VERSION = 3.0.2.0
VERSION = 3.0.3.0
INCLUDEPATH += src src/json src/qt
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE BOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN __NO_SYSTEM_INCLUDES
CONFIG += no_include_pwd
CONFIG += thread
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

win32 {
CONFIG += static
Expand All @@ -16,6 +17,20 @@ QT += network
# UNCOMMENT THIS SECTION TO BUILD ON WINDOWS
# Change paths if needed, these use the foocoin/deps.git repository locations

win32 {
OPENSSL_LIB_PATH = C:\deps\openssl-1.0.2g
OPENSSL_INCLUDE_PATH = C:\deps\openssl-1.0.2g\include
MINIUPNPC_INCLUDE_PATH = C:\deps
MINIUPNPC_LIB_PATH = C:\deps\miniupnpc
QRENCODE_INCLUDE_PATH = C:\deps\qrencode-3.4.4
QRENCODE_LIB_PATH = C:\deps\qrencode-3.4.4\.libs
BDB_INCLUDE_PATH = C:\deps\db-4.8.30.NC\build_unix
BDB_LIB_PATH = C:\deps\db-4.8.30.NC\build_unix
BOOST_LIB_SUFFIX=-mgw53-mt-s-1_57
BOOST_INCLUDE_PATH = C:\deps\boost_1_57_0
BOOST_LIB_PATH = C:\deps\boost_1_57_0\stage\lib
}

macx {
OPENSSL_LIB_PATH = /usr/local/opt/openssl/lib
OPENSSL_INCLUDE_PATH = /usr/local/opt/openssl/include
Expand Down Expand Up @@ -93,18 +108,6 @@ contains(USE_DBUS, 1) {
QT += dbus
}

# use: qmake "USE_IPV6=1" ( enabled by default; default)
# or: qmake "USE_IPV6=0" (disabled by default)
# or: qmake "USE_IPV6=-" (not supported)
contains(USE_IPV6, -) {
message(Building without IPv6 support)
} else {
message(Building with IPv6 support)
count(USE_IPV6, 0) {
USE_IPV6=1
}
DEFINES += USE_IPV6=$$USE_IPV6
}

contains(BITCOIN_NEED_QT_PLUGINS, 1) {
DEFINES += BITCOIN_NEED_QT_PLUGINS
Expand Down Expand Up @@ -208,8 +211,6 @@ HEADERS += src/qt/bitcoingui.h \
src/clientversion.h \
src/qt/dopesend.h \
src/qt/httpsocket.h \
src/qt/serveur.h \
src/qt/chatwindow.h \
src/qt/sendmessagesdialog.h \
src/qt/sendmessagesentry.h \
src/qt/messagemodel.h \
Expand Down Expand Up @@ -294,8 +295,6 @@ SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \
src/pbkdf2.cpp \
src/qt/dopesend.cpp \
src/qt/httpsocket.cpp \
src/qt/serveur.cpp \
src/qt/chatwindow.cpp \
src/lz4/lz4.c \
src/xxhash/xxhash.c \
src/qt/blockbrowser.cpp
Expand All @@ -316,7 +315,6 @@ FORMS += \
src/qt/forms/askpassphrasedialog.ui \
src/qt/forms/rpcconsole.ui \
src/qt/forms/optionsdialog.ui \
src/qt/forms/chatwindow.ui \
src/qt/forms/sendmessagesdialog.ui \
src/qt/forms/sendmessagesentry.ui \
src/qt/forms/messagepage.ui \
Expand Down
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@ DopeCoinV3

Builds:

v.3.0.3.0:

- Set block spacing to 60 seconds (fork at block 1375000)
- Added checkpoints
- Added RPC calls addnode, stakesplitthreshold, gettxfee
- Added -wallet option to specify wallet file
- repairwallet will remove wrong transactions
- Check only 500 blocks on startup
- Moved to Qt5
- Removed IRC
- Reverted to the old coin logo
- GUI fixes
- Multiple fixes and code cleanup

v.3.0.2.0:

- Fix to make chain move again

v.3.0.1.0:

- Block Explorer
Expand Down
8 changes: 4 additions & 4 deletions contrib/debian/bin/novacoin-qt → contrib/debian/bin/dopecoin-qt
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ set -e

umask 077

basedir=~/.novacoin
basedir=~/.dopecoin
dbfile="$basedir/DB_CONFIG"
cfgfile="$basedir/novacoin.conf"
cfgfile="$basedir/dopecoin.conf"

[ -e "$basedir" ] || mkdir "$basedir"

# Novacoin does not clean up DB log files by default
# Dopecoin does not clean up DB log files by default
[ -e "$dbfile" ] || echo 'set_flags DB_LOG_AUTOREMOVE' > "$dbfile"

exec /usr/lib/novacoin/novacoin-qt "$@"
exec /usr/lib/dopecoin/dopecoin-qt "$@"
14 changes: 0 additions & 14 deletions contrib/debian/bin/novacoind

This file was deleted.

6 changes: 0 additions & 6 deletions contrib/debian/changelog

This file was deleted.

1 change: 0 additions & 1 deletion contrib/debian/compat

This file was deleted.

59 changes: 0 additions & 59 deletions contrib/debian/control

This file was deleted.

166 changes: 0 additions & 166 deletions contrib/debian/copyright

This file was deleted.

Loading

0 comments on commit fac4cc6

Please sign in to comment.