Skip to content

Commit 1601e88

Browse files
committed
2 parents fa9cf95 + 46dd69d commit 1601e88

File tree

4 files changed

+813
-800
lines changed

4 files changed

+813
-800
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7-
## [Unreleased]
7+
## [3.5.9.0] - 2017-06-05
88
### Added
9+
- Added execute unspentreport (shows proof of unspent coins in wallet).
910
- Add RPC commands for changing debug flags: debug, debugnet, debug2, debug3,
1011
debug4, debug5, debug10. #309 (@Foggyx420).
1112
- Add support for themes via stylesheets, #233 (@skcin).
@@ -17,6 +18,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1718
#175 (@fooforever).
1819

1920
### Changed
21+
- Upgraded security on voting system - voting proof of balance and proof of
22+
magnitude.
23+
- Security enhancement (@tomasbrod)
2024
- Wallet overview cleanup, #233 (@skcin)
2125
- The main overview page is now cleaner, more structured and holds more of
2226
the recent transactions.

gridcoinresearch.pro

+3-6
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,12 @@ DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE
66
CONFIG += no_include_pwd thread c++11 exceptions concurrent
77
QT += core gui network
88

9-
win32
10-
{
9+
win32 {
1110
DEFINES += _WIN32_WINNT=0x0501 WINVER=0x0501
12-
lessThan(QT_VERSION, 5.0.0)
13-
{
11+
lessThan(QT_VERSION, 5.0.0) {
1412
CONFIG += qaxcontainer
1513
}
16-
else
17-
{
14+
else {
1815
QT += axcontainer
1916
}
2017

src/makefile.osx

+4-3
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,20 @@ OBJS= \
8888
obj/script.o \
8989
obj/sync.o \
9090
obj/util.o \
91-
obj/upgrader.o \
91+
obj/upgrader.o \
9292
obj/wallet.o \
9393
obj/walletdb.o \
9494
obj/noui.o \
9595
obj/kernel.o \
9696
obj/pbkdf2.o \
9797
obj/scrypt.o \
98-
obj/scrypt-arm.o \
9998
obj/scrypt-x86.o \
10099
obj/scrypt-x86_64.o \
101100
obj/cpid.o \
102101
obj/upgrader.o \
103-
obj/block.o
102+
obj/block.o \
103+
obj/beacon.o \
104+
obj/boinc.o
104105

105106
ifndef USE_UPNP
106107
override USE_UPNP = -

0 commit comments

Comments
 (0)