Page 1 of 1

[ANN] Namecoin v0.3.80

Posted: Thu Dec 18, 2014 4:26 pm
by phelix
Namecoin v0.3.80

This release will simplify the transition to a new Namecoin codebase derived from the latest version of Bitcoin.

Full Changelog


Backup
Be safe and make an encrypted backup of your wallet.dat file before updating.


Source
https://github.com/namecoin/namecoin/tr ... nq-release
Domob signed a "nc0.3.80" tag, you can check for his signature with: git tag -v nc0.3.80


.bit domain resolving
You will also need to install NMControl (Early Windows Binaries).

Binaries
Windows installer: http://namecoin.info/files/Namecoin_v0.3.80_setup.exe (see hash and signature below)
For Linux/Mac binaries see http://namecoin.info/?p=download


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


Namecoin_v0.3.80_setup.exe
SHA256: e4fbe7305682cc12e5bfa9aed45e2fbc9012efc2c9a6c4834ca272f4a93e6cd0


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.22 (MingW32)

iQEcBAEBAgAGBQJUkvt6AAoJEMv5QLdyEy4Y5pkH/1kdvyJ4fI/ZZ/UhtmnZMccX
6cIpTtOpemNb/4uzIwmQlrg87fLCiQ6LMNyrRj1ylXueQfjE4dXl/1frSULGGfz2
6OCTLUt1qbdTnVE/jvjTPNR1FM7EqjRUZhukhFUIDwrXgu68pgFgq6VTbXX9OTYk
wKRONW7OkLVbGXGDRc9OCB8j2+LkowhMMnwL4vLpNSIjJy8jS0KT9bWUl7eeM9Hq
bsqkzU4UDOm3x12U/uS9R3LhqcDK4a7SyArGXpG4fQJeGOZRjypLx5GapPIcHLP2
8FiG8FipidklxMXqQHXVEdDw2g7Gkz4jTOxQluU9VEDQJQD4EZeVqkm6jZnrrxc=
=8jma
-----END PGP SIGNATURE-----

Re: [ANN] Namecoin v0.3.80

Posted: Tue Dec 23, 2014 8:42 am
by dave111223
Receiving this error when trying to build version 3.8 from source (in Debian Wheezy):

Code: Select all

main.cpp:74:13: error: operator '-' has no right operand
make: *** [obj/nogui/main.o] Error 1

Re: [ANN] Namecoin v0.3.80

Posted: Tue Dec 23, 2014 9:31 am
by domob
dave111223 wrote:Receiving this error when trying to build version 3.8 from source (in Debian Wheezy):

Code: Select all

main.cpp:74:13: error: operator '-' has no right operand
make: *** [obj/nogui/main.o] Error 1
This seems strange, the code around line 74 of main.cpp is for me:
int nLimitProcessors = 1;
int fMinimizeToTray = true;
int fMinimizeOnClose = true;
#if USE_UPNP
int fUseUPnP = true;
#else
int fUseUPnP = false;
#endif
I see no '-' operator anywhere and it builds fine for me (I'm on Wheezy, too).

Since this line is related to UPNP: I've always disabled UPNP. Maybe try that.

Re: [ANN] Namecoin v0.3.80

Posted: Tue Dec 23, 2014 1:16 pm
by dave111223
Sorry stupid mistake on my part.

Was putting "USE_UPNP=-" instead of "USE_UPNP=" (for UPNP disabled)