Commit graph

3309 commits

Author SHA1 Message Date
Jonathan Ma
d9c89b91f3 Update guide_block_chain.md
Remove a redundant "of".
2017-07-06 12:27:56 +08:00
Will Binns
89ef8e107c Merge pull request #1658 from mitchellcash/mobile_table
Better table formatting on small screen devices
2017-07-02 09:57:23 -06:00
Will Binns
04f76bad92 Merge pull request #1656 from bitcoin-dot-org/wbnns-maintenance-0701171
Add events and an additional exchange
2017-07-02 08:27:24 -06:00
Mitchell Cash
c4f33935be
Better table formatting on small screen devices 2017-07-02 21:42:27 +10:00
Will Binns
1bd21a71f9
events: Add BitBrighton (Brighton)
Closes #1654
2017-07-01 19:19:57 -06:00
Will Binns
7e67a7c66f
events: Add World Blockchain Forum (London)
Closes #1648
2017-07-01 19:17:44 -06:00
Will Binns
f46bc80d42
exchanges: Add Bitsewa (Nepal) 2017-07-01 19:12:01 -06:00
Will Binns
2a26ef1a5f Merge pull request #1650 from Mirobit/exfix
Exchanges fixes
2017-07-01 18:33:19 -06:00
Will Binns
a22e77a6ef Merge pull request #1651 from Mirobit/makeprevfix
Make preview charset fix
2017-06-29 13:39:15 -06:00
Michael Rotarius
5b52234c87 make preview charset fix 2017-06-29 15:40:42 +02:00
Will Binns
4dcbd95325 Merge pull request #1649 from bitcoin-dot-org/2017_06_laanwj_key
Update laanwj key
2017-06-28 19:31:27 -06:00
Michael Rotarius
2ff47a808a Exchanges fixed 2017-06-28 17:55:24 +02:00
Wladimir J. van der Laan
5c57574ca2
Update laanwj key
I recently added a signing subkey (0x1E4AED62986CD25D).
2017-06-28 08:55:18 +02:00
Will Binns
25f6b2a037 Merge pull request #1643 from harding/incremental-rebuild
Allow incremental rebuilding of previews
2017-06-25 04:40:47 -06:00
Will Binns
68ade2d323 Merge pull request #1646 from bitcoin-dot-org/wbnns-june-maintenance
Add new events, exchanges, associations
2017-06-25 04:39:48 -06:00
Will Binns
175654afa2 Merge pull request #1584 from JustAHappyKid/spend-updates
New "Spending Bitcoins" page (plus few other minor tweaks, wording fixes, etc.)
2017-06-25 04:39:19 -06:00
Will Binns
d95cd88a94
exchanges: Add Luno (Singapore) 2017-06-24 20:45:29 -06:00
Will Binns
6bf8d2b1c1
exchanges: Add Luno (Nigeria) 2017-06-24 20:41:52 -06:00
Will Binns
e1b7e622df
exchanges: Add Luno (Malaysia) 2017-06-24 20:38:55 -06:00
Will Binns
742ed5fc25
exchanges: Add Luno (Indonesia) 2017-06-24 20:34:39 -06:00
Will Binns
69b3781922
exchanges: Add BitMae (Costa Rica) 2017-06-24 20:25:42 -06:00
Michael Rotarius
306d92e08e Added Bitaccess.io and CoinATMRadar 2017-06-24 18:27:08 -06:00
Michael Rotarius
9579edddf8 Added Chinese exchanges 2017-06-24 18:26:53 -06:00
Michael Rotarius
436756e6ec Added Urkaine Exchange 2017-06-24 18:26:43 -06:00
Michael Rotarius
1b7813d095 Added Europe Exchanges 2017-06-24 18:25:35 -06:00
Will Binns
ffb38077fd
exchanges: Add 'Bitcoin Cambodia' 2017-06-24 17:01:50 -06:00
Will Binns
46d317d0b2
community: Add 'Avalbit' (Spain) 2017-06-24 08:56:00 -06:00
Will Binns
d798d97194
community: Add Fundacion Bitcoin de Venezuela 2017-06-24 08:51:32 -06:00
Will Binns
60e260a8ea
exchanges: Add 'Cryptobuyer' (Venezuela) 2017-06-24 08:51:05 -06:00
Will Binns
16bc3c13bf
events: Add 'State of Digital Money 2017'
Closes #1631
2017-06-24 08:01:12 -06:00
Will Binns
5941aab02e
events: Add 'Intro to Cryptocurrencies'
Closes #1632
2017-06-24 07:59:09 -06:00
Will Binns
cfe4e6faff
exchanges: Move BitOasis domicile to UAE
Closes #1636
2017-06-24 07:56:36 -06:00
Will Binns
cdb7ccc6e9
events: Add 'P2PFISY2017'
Closes #1641
2017-06-24 07:12:14 -06:00
David A. Harding
6b4345338f
Build: create previews with --incremental rebuild option 2017-06-23 11:49:29 -04:00
David A. Harding
b0f0b856c7
Layout: generate CSS with minimal whitespace to reduce bandwidth 2017-06-23 11:49:28 -04:00
David A. Harding
bb8e339b85
Layout: remove less CSS engine plugin & references 2017-06-23 11:49:28 -04:00
David A. Harding
a40fb73dab
Layout: render CSS with both "less" and "scss"
This commit renders the same CSS files using both the "less" and "scss"
CSS generation engines so that the results may be compared.  This is a
comparison script:

    old_main_css=$( grep -rl normalize.css _site/*.css )
    new_main_css=_site/css/main.css
    old_rtl_css=$( grep 'Language specific styles that override default' -rl _site/*.css )
    new_rtl_css=_site/css/rtl.css

    (
      diff -ub $old_main_css $new_main_css
      diff -ub $old_rtl_css $new_rtl_css
    )
2017-06-23 11:49:28 -04:00
David A. Harding
b9e114efe8
Build: allow repeated rebuilding in Jekyll Preview mode
The events and contributor plugins both monkey patched the `site`
object.  This worked fine when they were loaded once per site build, but
with Jekyll 3.0 automatic site rebuilding in preview and watch modes,
this applied the monkey patch recursively, causing the program to halt.

With this commit, the monkey patching should only occur once per run.
2017-06-23 11:46:20 -04:00
Will Binns
be6167d8fb Merge pull request #1634 from Daunus/patch-1
Add HardBlock exchange
2017-06-21 18:34:53 -06:00
Chris Wagner
133079fe08 Resources page: Remove link to UseBitcoins.info. 2017-06-21 13:33:32 -04:00
Chris Wagner
d38ff191cc Spend Bitcoin page: Swap link to UseBitcoins.info for one to 99bitcoins.com page (that includes links to many BTC-accepting merchants), and remove disclaimer (that was aimed at UseBitcoins.info) about directory containing defunct businesses. 2017-06-21 13:33:15 -04:00
Will Binns
2a0633133a Merge pull request #1639 from harding/rm-coinomi
Wallets: delist Coinomi
2017-06-18 07:30:54 -06:00
David A. Harding
bdfb496ca0
Wallets: delist Coinomi
Closes #1622

Coinomi no longer provides updated public source code, violating the
Bitcoin.org listing policy for wallets with local key storage.
2017-06-18 06:19:51 -04:00
Will Binns
5472d7ebea Merge pull request #1609 from harding/chain-size-in-translation-string
Translations: variablize chain size in translation strings
2017-06-17 19:21:51 -06:00
Will Binns
580c1291a6 Merge pull request #1638 from bitcoin-dot-org/binns-add-0142-blog-post
blog: Add post for release of 0.14.2
2017-06-17 19:15:45 -06:00
Will Binns
3323766165
blog: Add post for release of 0.14.2
This adds a new post containing all of the relevant information
pertaining to the release of Bitcoin Core Version 0.14.2 (release notes,
change log, etc.).
2017-06-17 18:35:27 -06:00
Wladimir J. van der Laan
eddcb88bc4
Merge #1637: Bitcoin Core 0.14.2
80c4757 Bitcoin Core 0.14.2 (Wladimir J. van der Laan)

Tree-SHA512: e78ec0db87e40929ce0ee7c76bcc0af59d4f7d7705252b7f7df5fbdde5332ef3979ef58a95ee84c2cb9d97cc796708df090609f6f6f6fee11a4fcf387d1fb513
2017-06-17 14:36:56 +02:00
Wladimir J. van der Laan
80c475721e
Bitcoin Core 0.14.2 2017-06-17 13:35:38 +02:00
Daniel Wilczynski
83946d37f9 Update exchanges.html
Added my Australian Exchange Hardblock.net. We have been operating for over three years. Contact me if more info needed.
2017-06-16 14:21:02 +02:00
Will Binns
d827ca08c4 Merge pull request #1626 from d2597b33-2ac1-4c27-af8e-5794285e8600/patch-1
Add subtractfeeamount parameter
2017-06-14 14:05:16 -06:00