1
0
mirror of https://github.com/GOSTSec/vanitygen synced 2025-02-07 04:14:15 +00:00

Bump version and update changelog.

This commit is contained in:
samr7 2011-08-08 12:03:16 -07:00
parent d0f4dd3b4b
commit e460371230
3 changed files with 12 additions and 2 deletions

View File

@ -69,3 +69,13 @@ Version 0.16, released August 2 2011:
- Performance tweaks to oclvanitygen kernel
- Add safe mode flag (-S) to oclvanitygen to disable optimizations
- Add -X flag to set numerical key type (patch from jackjack-jj)
Version 0.17, released August 8, 2011:
- Bugfix for private key encoder, could create encodings not
accepted by showwallet branch bitcoin
- Remove oclvanitygen #pragma unroll by default, enable for NVIDIA
(General performance improvement, hopeful resolution for crashing)
- Oclvanitygen work size configuration tweak for smaller GPUs
- New oclvanitygen add/subtract/compare functions for AMD Radeon
- Add support for AMD BFI_INT instruction in oclvanitygen hash functions
- Minor source code reorganization

View File

@ -41,7 +41,7 @@
#include "util.h"
const char *version = "0.16";
const char *version = "0.17";
const int debug = 0;
#define MAX_SLOT 2

View File

@ -32,7 +32,7 @@
#include "pattern.h"
#include "util.h"
const char *version = "0.16";
const char *version = "0.17";
typedef struct _vg_thread_context_s {
vg_exec_context_t base;