Skip to content

Commit fb85904

Browse files
author
graemes
committed
v1.5.1
1 parent afdefe6 commit fb85904

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ FROM nvidia/cuda:9.1-base
3737

3838
LABEL maintainer="graemes@graemes.com"
3939

40+
ENV UID 8777
41+
ENV GID 8777
42+
4043
RUN apt-get update && apt-get install -y \
4144
libcurl3 \
4245
libjansson4 \
@@ -46,10 +49,11 @@ RUN apt-get update && apt-get install -y \
4649
RUN mkdir /conf
4750
VOLUME ["/conf"]
4851

52+
RUN groupadd -r -g ${GID} miner && useradd --no-log-init -m -u ${UID} -g miner miner
4953
RUN mkdir /log
54+
RUN chown -R miner:miner /log
5055
VOLUME ["/log"]
5156

52-
RUN groupadd -r miner && useradd --no-log-init -m -g miner miner
5357
USER miner
5458
WORKDIR /home/miner
5559

ccminer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2241,7 +2241,7 @@ static void *stratum_thread(void *userdata)
22412241
if (switchn != pool_switch_count) goto pool_switched;
22422242
}
22432243
if (!stratum_full) {
2244-
if (!opt_quiet) applog(LOG_WARNING, "Stratum connection timed out");
2244+
//if (!opt_quiet) applog(LOG_WARNING, "Stratum connection timed out");
22452245
s = NULL;
22462246
} else
22472247
s = stratum_recv_line(&stratum);

compat/ccminer-config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
#define PACKAGE_URL "http://github.com/graemes/poolparty-x16r"
165165

166166
/* Define to the version of this package. */
167-
#define PACKAGE_VERSION "1.5.0"
167+
#define PACKAGE_VERSION "1.5.1"
168168

169169
/* If using the C implementation of alloca, define if you know the
170170
direction of stack growth for your system; otherwise it will be

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([poolparty], [1.5.0], [], [poolparty], [https://github.com/graemes/poolparty-x16r])
1+
AC_INIT([poolparty], [1.5.1], [], [poolparty], [https://github.com/graemes/poolparty-x16r])
22

33
AC_PREREQ([2.59c])
44
AC_CANONICAL_SYSTEM

res/poolparty.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ IDI_ICON1 ICON "raven.ico"
6060
//
6161

6262
VS_VERSION_INFO VERSIONINFO
63-
FILEVERSION 1,5,0,0
64-
PRODUCTVERSION 1,5,0,0
63+
FILEVERSION 1,5,1,0
64+
PRODUCTVERSION 1,5,1,0
6565
FILEFLAGSMASK 0x3fL
6666
#ifdef _DEBUG
6767
FILEFLAGS 0x21L
@@ -76,10 +76,10 @@ BEGIN
7676
BEGIN
7777
BLOCK "040904e4"
7878
BEGIN
79-
VALUE "FileVersion", "1.5.0"
79+
VALUE "FileVersion", "1.5.1"
8080
VALUE "LegalCopyright", "Copyright (C) 2018"
8181
VALUE "ProductName", "poolparty"
82-
VALUE "ProductVersion", "1.5.0"
82+
VALUE "ProductVersion", "1.5.1"
8383
END
8484
END
8585
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)