Skip to content

Tags: freicoin/freicoin-old

Tags

v0.0.2-2

Toggle v0.0.2-2's commit message
freicoin 0.0.2-2

  [Mark Friedenbach]
    * Add the new difficulty adjustment algorithm, which replaces the simple
      average over 2016 blocks with a faster-acting 144-tap Parks and
      McClellan FIR filter, and adjustments every 9 blocks with a gain of
      0.1025 and limiter of 1.055.
    * Prepare for deployment of difficulty adjustment filter to production
      network by adding a threshold block after which the new difficulty
      adjustment algorithm takes over, for both mainnet and testnet.
    * Added Python simulator of new difficulty adjustment algorithm.
    * Fixed two related bugs in the freicoin "accounts" system. First, the
      'move' RPC command now generates AccountingEntry records with the
      current reference height rather than refheight=0. Second, the
      'listaccounts' RPC command properly time-value adjusts AccountingEntry
      records.
    * Fix unwanted transaction de-prioritization. Now calculates both inputs
      and outputs of a transaction based on the transaction's reference
      height, as opposed to the current block height, which was previously
      being used for the inputs. This was resulting in smaller (or even
      negative) fees for the purposes of priority calculation, thereby
      resulting in transactions that had trouble getting on the block chain.
    * Change nVersion on Freicoin Foundation addresses to testnet format, so
      that budgets validate correctly. This enables mining on testnet.
    * Modified output of 'getblocktemplate' RPC command to include a 'budget'
      array specifying budgetary requirements.

  [Clark Minor]
    * Fix forking bug due to truncation of initial distribution calculation.

v0.0.2

Toggle v0.0.2's commit message
Release v0.0.2

  [Mark Friedenbach]
    * Merge of upstream v0.7.2 bitcoind source tree.

  [Roman Mindalev]
    * New translations and updates of existing translations.
    * Improved artwork and GUI tweaks.

v0.0.1-4

Toggle v0.0.1-4's commit message
freicoin 0.0.1-4

  [ Mark Friedenbach ]
    * Add extra check that coinbase transaction has reference height equal to
      the block height.

v0.0.1-3

Toggle v0.0.1-3's commit message
freicoin 0.0.1-3

  [ Mark Friedenbach ]
    * Fix bug that was causing amounts to be rounded to the nearest COIN in
      JSON-RPC commands.

v0.0.1-2

Toggle v0.0.1-2's commit message
freicoin 0.0.1-2

  [ Mark Friedenbach ]
    * Checkpoint at block 10080.

v0.0.1

Toggle v0.0.1's commit message
freicoin 0.0.1

  [ Mark Friedenbach ]
    * Block chain reset for final release.

  [ Roman Mindalev ]
    * [GUI] Extended height of About dialog to fit text on all platforms.

v0.0.1rc1

Toggle v0.0.1rc1's commit message
freicoin 0.0.0+1rc1

  [ Mark Friedenbach ]
    * Block chain reset for release candidate.
    * Added about menu crediting developers and Indiegogo supporters, as well
      as the big man himself, Silvio Gesell.
    * Added messages to the genesis block in preparation for release
      candidate.

  [ Roman Mindalev ]
    * [GUI] Fix transaction fee in uFRC; change step for up and down arrows
      on GUI widget to be 0.01 units for uFRC (1 satoshi).

v0.0.1beta5-4

Toggle v0.0.1beta5-4's commit message
freicoin 0.0.0+1beta5-4

  [ Mark Friedenbach ]
    * Revert FreicoinAmountField to work with qint64 values, as a temporary
      workaround to get the GUI field working again.
    * Remove extra, unused digits of precision from FreicoinUnits::format().
    * Explicitly set the budget address for the genesis block, so that we're
      able to load under fTestNet conditions as well.

v0.0.1beta5-3

Toggle v0.0.1beta5-3's commit message
Freicoin 0.0.1beta5-3

  [ Mark Friedenbach ]
    * JSON-RPC commands were parsing money values incorrectly--returning the
      numerical value in units of satoshis, not coins. This is now fixed.
    * FreicoinUnits::amountDigits() now returns the correct value (previous
      off-by-one error due to a simple arithmetic mistake).
    * Fixed logical error in ParseMoney() which was causing amounts less than
      1 COIN to be parsed in octal, leading to incorrect values or even
      abnormal program termination (if non-octal digits are encountered).

  [ Roman Mindalev ]
    * Update remaining images from bitcoin -> freicoin.

v0.0.1beta5

Toggle v0.0.1beta5's commit message
Fixed bug where indeterminate values were being returned by RoundAbso…

…lute() with mode ROUND_SIGNAL; resulting in incorrect blocks being generated on some platforms including Ubuntu 12.04 amd64; also added various debugging outputs that were useful for tracking down this error.