Bitcoin Forum
April 27, 2024, 07:54:28 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 [272] 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 ... 555 »
  Print  
Author Topic: [ANN][DCR] Decred - Community Governance | Bitcoin Devs | Lightning Network  (Read 1201066 times)
decred (OP)
Full Member
***
Offline Offline

Activity: 156
Merit: 236



View Profile WWW
June 23, 2016, 08:32:13 AM
Last edit: June 23, 2016, 08:48:51 AM by decred
 #5421

This development dispatch covers work completed since the Decred v0.1.5 release from June 7th, 2016. Since then, developers have merged 16 pull requests of code into 3 software repositories (for changes, see below). v0.1.6 includes a new tool, dcrinstall, to automate the install, upgrade, and setup process for the Decred software.

dcrinstall: https://github.com/decred/decred-release/releases/tag/v0.1.6
Binaries: https://github.com/decred/decred-binaries/releases/tag/v0.1.6

dcrd
  • Fixed an issue with memory alignment on 32-bit architectures (269-2bbfd5f)
  • Fixed an issue that interferes with the new dcrinstall package when checking if .dcrd exists (270-fa72e21)
  • Added a simnet option to the config file (272-e6beeb6)
  • Updated versioning (271-9279321)

dcrwallet
  • Moved prompting of passphrases and seed to a prompt package so other tools can call the same prompts (268-b3bd20e)
  • Modified the wallet package to import the database driver directly (269-f2a12cf)
  • Added a non-internal prompt package (273-dfb6bcd)
  • Fixed a build error for the test harness (274-697443a)
  • Updated documentation (275-7bdd976) and versioning (271-1ca9472)

dcrticketbuyer

Developer Notes
dcrinstall

dcrinstall is a tool to automate the install, upgrade, and setup process for the Decred software. In install mode dcrinstall downloads the latest released binaries of dcrd, dcrwallet, dcrctl, and dcrticketbuyer for your operating system and platform, installs them, sets up the config files, and creates a wallet for you. In upgrade mode, dcrinstall replaces your binaries with the latest copies but makes no changes to your configs.

Upgrading an existing installation

The following steps are required to upgrade a system with Decred that was not installed by dcrinstall. If you already have Decred installed you will need to follow these instructions the first time.

The dcrinstall tool expects the following directory layout. In order to upgrade you must copy your current configuration files into the correct location and ensure everything still works. You may also want to copy you executables to the directory dcrinstall expects as well.

If dcrinstall detects all configuration files it'll operate in upgrade mode. Upgrade mode only overwrites the binaries in %HOMEPATH%\decred (or ~/decred on a UNIX type OS). The dcrinstall tool records all actions in %HOMEPATH%\decred\dcrinstall.log (or ~/decred/dcrinstall.log on a UNIX type OS).

Windows configuration files:

Code:
%LOCALAPPDATA%\Dcrctl\dcrctl.conf
%LOCALAPPDATA%\Dcrd\dcrd.conf
%LOCALAPPDATA%\Dcrticketbuyer\ticketbuyer.conf
%LOCALAPPDATA%\Dcrwallet\dcrwallet.conf

Binaries directory:

Code:
%HOMEPATH%\decred\

OSX configuration files:

Code:
~/Library/Application Support/Dcrctl/dcrctl.conf
~/Library/Application Support/Dcrd/dcrd.conf
~/Library/Application Support/Dcrticketbuyer/ticketbuyer.conf
~/Library/Application Support/Dcrwallet/dcrwallet.conf

Binaries directory:

Code:
~/decred

UNIX configuration files:

Code:
~/.dcrctl/dcrctl.conf
~/.dcrd/dcrd.conf
~/.dcrticketbuyer/ticketbuyer.conf
~/.dcrwallet/dcrwallet.conf

Binaries directory:

Code:
~/decred

Run the software

Now that you have the files where dcrinstall can find them you can download and run dcrinstall. For Windows open a cmd.exe window then:

Code:
cd %HOMEPATH%\Download
dcrinstall.exe

For OSX and UNIX you will also need to make the file executable before runnning it:

Code:
cd Downloads/
chmod u+x dcrinstall
./dcrinstall

and your installation will be upgraded to the latest released version.

Clean install

If you are doing a clean install (no existing Decred configuration files) you can just run dcrinstall and it will setup and configure all the binaries. For Windows open a cmd.exe window and:

Code:
cd %HOMEPATH%\Download
dcrinstall.exe

For OSX and UNIX:

Code:
cd Downloads/
./dcrinstall

You will be asked to provide a passphrase for you wallet and given the opportunity to use and existing wallet seed if you have one.

Log file

dcrinstall saves a log file with information on everything it did which you may examine if you need more information. On Windows the file is located at:

Code:
%HOMEPATH%\decred\dcrinstaller.log

On OSX and UNIX the file is located at:

Code:
~/decred/dcrinstaller.log

Running Decred programs

On Windows open cmd.exe

Code:
%HOMEPATH%\decred\dcrd.exe

One OSX and UNIX like systems:

Code:
cd decred/
./dcrd

Alternatively you can add the directory to your path. For Windows see http://www.computerhope.com/issues/ch000549.htm For OSX and UNIX refer to the documentation for your shell.

Public keys

The file cmd/dcrinstall/pubkey.go contains the decred public key which is used to check the signed manifest in the release. You can compare the contents of this file to what you get from a keyserver to confirm that dcrinstaller is using the proper key.

Important

dcrinstall can only install Decred releases v0.1.6 or later (although as described above it can be used to upgrade from an older version). dcrinstall has been tested on Windows 10, Windows 7, OSX 10.11, Bitrig current, OpenBSD, Fedora, Ubuntu, and Raspbian. Due to an issue with the go cross-compiler, binaries are not available for linux-arm64. Users running Linux on arm64 should either build from source or contact the Decred developers for a binary for that platform.
1714247668
Hero Member
*
Offline Offline

Posts: 1714247668

View Profile Personal Message (Offline)

Ignore
1714247668
Reply with quote  #2

1714247668
Report to moderator
1714247668
Hero Member
*
Offline Offline

Posts: 1714247668

View Profile Personal Message (Offline)

Ignore
1714247668
Reply with quote  #2

1714247668
Report to moderator
1714247668
Hero Member
*
Offline Offline

Posts: 1714247668

View Profile Personal Message (Offline)

Ignore
1714247668
Reply with quote  #2

1714247668
Report to moderator
It is a common myth that Bitcoin is ruled by a majority of miners. This is not true. Bitcoin miners "vote" on the ordering of transactions, but that's all they do. They can't vote to change the network rules.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
myagui
Legendary
*
Offline Offline

Activity: 1154
Merit: 1001



View Profile
June 23, 2016, 11:27:47 AM
 #5422

Awesome update guys!  Smiley
I haven't updated my local node to the very latest yet, will you always make clear notice if a release is a critical upgrade? (I tend to be conservative in upgrading anything that I am not having issues with)

dbt1033
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000



View Profile
June 23, 2016, 02:09:26 PM
 #5423

Good job DCR team.  Thanks for the update, as always Cheesy
Dcrstats
Hero Member
*****
Offline Offline

Activity: 714
Merit: 529



View Profile
June 23, 2016, 03:04:08 PM
 #5424

New release is always a good reason to buy more DCR  Wink
marcus1986
Hero Member
*****
Offline Offline

Activity: 854
Merit: 1000


View Profile
June 23, 2016, 05:56:14 PM
 #5425

Awesome job devs! Thanks for the update.
danielj314
Hero Member
*****
Offline Offline

Activity: 532
Merit: 500



View Profile
June 24, 2016, 08:10:47 AM
 #5426

I continue to support the Decred project. Grateful for your good work and your detailed reports.

▬▬▬▬▬▬▬▬   STORM TOKEN    A decentralized micro-job marketplace    ▬▬▬▬▬▬▬▬
Facebook  |  Twitter  |  Blog*
▬▬▬▬▬▬▬▬▬▬▬▬▬     TOKEN GENERATION EVENT | Coming Soon    ▬▬▬▬▬▬▬▬▬▬▬▬▬
axxo
Hero Member
*****
Offline Offline

Activity: 916
Merit: 500



View Profile
June 24, 2016, 08:26:09 AM
 #5427

I haven't seen a crypto currency that gives constant development updates to the community like DCR. Great work team!

▄░░▄█▄░░▄
▄▄█░░▄█▀█▄░░█▄▄
▄▄▄█▀▀░░░█▀░░░▀█░░░▀▀█▄▄▄
██▀░░░░░▄█▀░░░░▀█▄░░░░░▀██
██░░░░░▄█░░▄███▄░░█▄░░░░░██
██░░░░██░░▄█▀░▀█▄░░██░░░░██
██░░▄█▀░▄█▀░▄█▄░▀█▄░▀█▄░░██
██░██░░▄█▀░▄███▄░▀█▄░░██░██
███▀░░▄█░░▄█████▄░░█▄░░▀███
██▀░▄█▀░░▄███████▄░░▀█▄░▀██
▀█▀░░▄█████████▄░░▀█▀
▀▀█████████▀▀
▀▀█▀▀



▄▄▄▄▄
▐██▀██
██▌░██
▐██░░██
██▌░░██
███████
▀▀░░░▀▀



░▄▄▄▄▄
██▀▀▀██
██░░░▀▀
████
██
██
▀▀



░▄▄▄▄▄
██▀▀▀██
██░░░▀▀
████
██
██
▀▀



▄▄▄▄▄▄
▀▀██▀▀
██
██
██
▄▄██▄▄
▀▀▀▀▀▀



▄▄▄▄▄▄▄
██▀▀▀██
██
██
██
██
▀▀



▄▄▄▄▄▄
██▀▀▀██
██░░░██
▀██████
██▀██
██▀░██
▀▀▀░░▀▀



▄▄░░░▄▄
██░░░██
██░░░██
██░░░██
██░░░██
██▄▄▄██
▀▀▀▀▀



▄▄░░░▄▄
███░███
███████
██▀█▀██
██░░░██
██░░░██
▀▀░░░▀▀
.








▄▄▄███████▄▄▄
▄▄█████████████████▄▄
▄███████████████████████▄
███████████████████████████
█████████████████████████████
.
█████████████████████████████
███████████████████████████
▀███████████████████████▀
▀▀█████████████████▀▀
▀▀▀███████▀▀▀
▄███████████████████████████▄
█████████████████████████████
█████████████████████████████
██████▀█████████▀▀▀▀█▀███████
██████▌░▀▀████▀░░░░░░░▄██████
██████▀░░░░░░░░░░░░░░▐███████
███████▄░░░░░░░░░░░░░████████
███████▄░░░░░░░░░░░▄█████████
██████▀▀▀░░░░░░░▄▄███████████

████████▄▄▄▄▄▄███████████████
█████████████████████████████

█████████████████████████████
▀███████████████████████████▀
▄███████████████████████████▄
█████████████████████████████
█████████████████████████████
███████████████████▀▀▀███████
█████████████▀▀▀░░▄░░▐███████
███████▀▀▀░░░░▄▄▀▀░░░████████
█████▄▄▄░░▄▄█▀▀░░░░░▐████████
█████████▌▐▀░░░░░░░░█████████
██████████▄░▄█▄▄░░░▐█████████

██████████████████▄██████████
█████████████████████████████

█████████████████████████████
▀███████████████████████████▀
Fassa Sissona
Member
**
Offline Offline

Activity: 78
Merit: 10


View Profile
June 24, 2016, 09:45:12 AM
 #5428

I haven't seen a crypto currency that gives constant development updates to the community like DCR. Great work team!

I agree with you.

I hope they'll keep on going this way.

Communication is the first key to attract investors.

Great job, dev team!!!
Penttikuisma
Full Member
***
Offline Offline

Activity: 157
Merit: 100



View Profile
June 24, 2016, 10:02:38 AM
 #5429

Good job, since from the start.
rajeshgarnaik
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
June 24, 2016, 11:19:20 AM
 #5430

good job dev team. decred will rise

magalhanze
Sr. Member
****
Offline Offline

Activity: 368
Merit: 250



View Profile
June 24, 2016, 05:20:27 PM
 #5431

good job dev team. decred will rise

once we have the GUI wallet both price and POS ticket price will rise a lot
coralreefer
Sr. Member
****
Offline Offline

Activity: 464
Merit: 260


View Profile
June 25, 2016, 12:54:58 AM
 #5432

I haven't seen a crypto currency that gives constant development updates to the community like DCR. Great work team!

I agree with you.

I hope they'll keep on going this way.

Communication is the first key to attract investors.

Great job, dev team!!!

Same here, communication is the key to a crypto-currency.  Regardless of what the price is doing, getting these updates and seeing the progress allows investors to decide based on facts...not hype.  I really like DCR, keep up the great work devs.
gtzanap
Sr. Member
****
Offline Offline

Activity: 409
Merit: 250



View Profile
June 25, 2016, 06:59:33 AM
 #5433

Awesome update guys!  Smiley
I haven't updated my local node to the very latest yet, will you always make clear notice if a release is a critical upgrade? (I tend to be conservative in upgrading anything that I am not having issues with)

I just stick to the latest stable release. 0.13 has been the latest stable for a while now

            ▄▄████▄▄
        ▄▄██████████████▄▄
      ███████████████████████▄▄
      ▀▀█████████████████████████
██▄▄       ▀▀█████████████████████
██████▄▄        ▀█████████████████
███████████▄▄       ▀▀████████████
███████████████▄▄        ▀████████
████████████████████▄▄       ▀▀███
 ▀▀██████████████████████▄▄
     ▀▀██████████████████████▄▄
▄▄        ▀██████████████████████▄
████▄▄        ▀▀██████████████████
█████████▄▄        ▀▀█████████████
█████████████▄▄        ▀▀█████████
██████████████████▄▄        ▀▀████
▀██████████████████████▄▄
  ▀▀████████████████████████
      ▀▀█████████████████▀▀
           ▀▀███████▀▀



.SEMUX
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
  Semux uses 100% original codebase
  Superfast with 30 seconds instant finality
  Tested 5000 tx per block on open network
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
█ █
Netnox
Legendary
*
Offline Offline

Activity: 2044
Merit: 1008



View Profile
June 28, 2016, 02:50:51 PM
 #5434

Seems Decred isnt really catching on? Not really traded with nice volume, are devs serious about this coin? Any killer features? Marketing?
dbt1033
Legendary
*
Offline Offline

Activity: 1274
Merit: 1000



View Profile
June 28, 2016, 06:35:28 PM
 #5435

Seems Decred isnt really catching on? Not really traded with nice volume, are devs serious about this coin? Any killer features? Marketing?

Do you even research bro?

Nice 50 btc market buys yesterday  Grin
myagui
Legendary
*
Offline Offline

Activity: 1154
Merit: 1001



View Profile
June 28, 2016, 08:31:49 PM
 #5436

Seems Decred isnt really catching on? Not really traded with nice volume, are devs serious about this coin? Any killer features? Marketing?

Do you even research bro?

Nice 50 btc market buys yesterday  Grin

I didn't even take the post seriously enough to respond...  Roll Eyes

bubilas
Hero Member
*****
Offline Offline

Activity: 661
Merit: 557



View Profile
June 29, 2016, 06:18:33 AM
Last edit: June 29, 2016, 08:01:31 AM by bubilas
 #5437

buy DCR by fixed price @0.0028, many
PM please

Here is a empty place for now
liquidfunds
Full Member
***
Offline Offline

Activity: 125
Merit: 100


View Profile
June 29, 2016, 07:50:06 AM
 #5438

How long will it take to get my DCR unlocked if I stop pos?

bspus
Legendary
*
Offline Offline

Activity: 2165
Merit: 1002



View Profile
June 29, 2016, 11:14:38 AM
 #5439

How long will it take to get my DCR unlocked if I stop pos?

How can you stop pos? You buy tickets and wait until either they vote or expire (6 months without vote I think) but I don't think you can cancel tickets otherwise.

So 24 hours after your last ticket votes you should have all your dcr spendable

myagui
Legendary
*
Offline Offline

Activity: 1154
Merit: 1001



View Profile
June 29, 2016, 11:15:57 AM
 #5440

How long will it take to get my DCR unlocked if I stop pos?

How can you stop pos? You buy tickets and wait until either they vote or expire (6 months without vote I think) but I don't think you can cancel tickets otherwise.

So 24 hours after your last ticket votes you should have all your dcr spendable

Ticket expiration without getting picked to vote is about ~4.7 months (with some 99% chance that it gets picked before expiration).

Pages: « 1 ... 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 [272] 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 ... 555 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!