Commit graph

246 commits

Author SHA1 Message Date
Michael Rotarius
c7a99a6084 RPC Developer reference updated based on 0.12.1
I updated all changes to the RPC API from 0.11.0 to 0.12.1.
An update based on 0.13.1 will follow soon.
2016-11-15 17:54:46 +01:00
nopara73
0537d702e3 Merge branch 'master' of https://github.com/bitcoin-dot-org/bitcoin.org 2016-07-30 13:23:04 +08:00
Ádám Ficsór
4168c6d711 Update developer-documentation.md 2016-05-26 01:01:13 +09:00
Ádám Ficsór
b2c21120b5 Added NBitcoin to developer documentation 2016-05-25 16:03:15 +09:00
Lazy
d4495e4afe Grammar and spelling fixes. 2016-05-21 22:56:01 +01:00
cloudnthings
10828a6809 Modify grammar 2016-04-15 08:02:22 +12:00
ikeboy
eced7a6313 update link 2016-03-08 00:00:17 -05:00
Cøbra
d40aee6089 Merge pull request #1245 from bitcoin-dot-org/bitcoin-core-0.12.0
Bitcoin core 0.12.0
2016-02-23 11:53:02 +00:00
Cøbra
e96bed7f33
Remove Armory Reference
Remove Armory Reference
2016-02-20 02:24:02 +00:00
David A. Harding
c3b2300fe3 Bitcoin Core: 0.12.0 release notes 2016-02-18 14:45:28 -05:00
David A. Harding
f02a8108f4
Bitcoin Core: add banner redirecting some pages to BitcoinCore.org 2016-01-16 19:20:39 -05:00
David A. Harding
2b8c4c2cc9
Merge pull #1193: Upgrade to Jekyll 3.x 2016-01-16 09:00:54 -05:00
David A. Harding
76a8abf0ed
Merge pulls #1195, #1197, #1200, #1202, and #1208
- 1195: Remove Inside Bitcoins New York and Hong Kong from event page
- 1197: Update _events.yml with correct San Fran event date
- 1200: Making clear that segwit is equivalent to a block size increase
- 1202: Capacity Increases FAQ: more prominently link to roadmap
- 1208: Change references to 'getaddr.bitnodes.io'
2016-01-15 19:03:08 -05:00
cpmx
9db7a96091 Change references to 'getaddr.bitnodes.io'
Change references to 'getaddr.bitnodes.io' in the running a full node page, to 'bitnodes.21.co' and rename it from the Getaddr page to Bitnodes page.
2016-01-14 12:37:43 +13:00
Nicolas Dorier
a272cb5a54 Making clear that segwit is equivalent to a block size increase
Segwit is a block size increase, lots of readers of this FAQ care more about the block size than all the goodness of segwit.
So I think this should be clearer.
2016-01-11 02:19:47 +09:00
David A. Harding
956c4a9756
Capacity Increases FAQ: more prominently link to roadmap
I'm told some people were confusing the FAQ itself for the roadmap; this
should help remove the confusion.
2016-01-10 10:32:03 -05:00
David A. Harding
162e7cf412
Merge pull #1194: Add statement 2016-01-07 09:37:21 -05:00
David A. Harding
3b5dbd3376
Jan16 statement: link to translations and add subhead for appendix 2016-01-07 09:21:48 -05:00
David A. Harding
7d98f798ab
Upgrade to Jekyll 3.0
Gemfile:

  - Upgrade to Jekyll 3.x (3.0.1 tested).  This brings several new
    features I want to use, most notably *collections* which allows us
    to add blog-like collections. I've converted the `_releases` and
    `_alerts` pages into collections, although their plugins are
    maintained to handle the Download and Active Alert features.

  - Upgrade to latest Kramdown.

  - Lock Less at 2.4.0.  This prevents breaking our Less plugin.  Jekyll
    3.x provides native support for SCSS, so we may want to switch to
    that in time.

  - Lock HTML Proofer at 2.1.0.  The most recent version was taking
    forever to check our pages (I never actually got it to complete).
    I'll look into it when I get more time.

Makefile:

  - New `make clean` command.  Jekyll 3.x by default attempts to do
    incremental rebuilds.  The new `jekyll clean` command cleans up the
    metadata necessary for than so that a full build is performed, and
    this new `make clean` command is a wrapper around it so that we
    automatically do full rebuilds in the relevant cases.  Note: our
    plugins aren't fully compatible with the incremental rebuilds, but
    I'd like to fix that in the future.

  - Remove WEBrick hack to enable previewing with default URL paths (/
    instead of /index.html).

  - Filter out compliants from Rouge

README.md:

  - Now that Alerts (_alerts) are part of a collection, the file names
    are no longer parsed for dates, so instructions on adding the date
    to the YAML metadata have been added.

_alerts/*:

  - Now that alerts are part of a collection, the file names are no
    longer parsed to provide dates, so a `date:` field has been added to
    the YAML metadata.

_config.yml:

  - Some variables renamed per upgrade instructions.

  - Switched from old default syntax highlighter Pygments to new default
    Rouge.  I tried to use Rouge options to keep new output as similar
    to old output as possible to making diffing easy, but Rouge adds
    extra CSS class info.

  - Move `_alerts` and `_releases` into Jekyll 3.x "collections", which
    provide the organizational features we were using plugins to
    manange.  I haven't removed the old plugins because we still use
    some of their features (alerts.rb provides active issue and banner
    features; releases.rb provides info to Download page)

  - _layouts/* can no longer provide default global metadata; that is now
    provided in the new `defaults:` section in _config.yml.

_layouts/*:

  - Default metadata can no longer be provided in the layout files for
    collections, so I've removed it and left a message to see
    _config.yml.

_plugins/*:

  - Remove filter_for.rb. It's completely broken on Jekyll 3.x because
    of changes to Liquid which prevent adding new arguments to the
    inherited Liquid::For class. Existing uses of filter_for have been
    migrated to built-in for loops prefaced by sorts.

  - Remove remove-html-extension.rb: at it said in the comments, this
    was a temporary hack to get us to Jekyll 3.0.

_releases/*:

  - Rename all the files: prefix a v to the file name so the output html
    (e.g. v10.0.0.html) is the same as the source filename (e.g.
    v10.0.0.md).  This is necessary to migrate them to a Jekyll collection.

  - Remove %v from titles: we have to explicitly set the title, like we
    used to.  Again required for migration to collections.

_templates/events.html & en/rss/events.rss:

  - Sort events by date and then loop with regular for loop rather than
    filter_for

en/alerts.html & en/rss/alerts.rss:

  - Sort alerts by date and then loop with regular for loop rather than
    filter_for

en/bitcoin-core/index.md & en/version-history.html & en/rss/releases.rss:

  - Sort alerts by date and then loop with regular for loop rather than
    filter_for
2016-01-06 23:09:56 -05:00
David A. Harding
bf0071a6e0
Capacity Increases Statement/FAQ: add Italian translation
- Moved files to correct directory
- Added links from the English versions to the Italian ones
- Linked the Italian statement to the Italian FAQ

Rebased-from: d264ac1571e39577e78aac45109f746447607e37
Closes: #1177
2016-01-05 11:39:46 -05:00
David A. Harding
8f638b55b5
Merge pull #1184: Capacity FAQ Chinese translation 2016-01-05 10:42:59 -05:00
David A. Harding
5a4aec0cc5
Capacity Increases FAQ: link to Chinese versions 2016-01-05 10:42:10 -05:00
David A. Harding
e3e72b8764
Merge pulls #1187 and #1188
- 1187: Core: mention separation of concerns from Bitcoin.org
- 1188: Updated requirements in full-node.md
2016-01-05 10:19:21 -05:00
BtcDrak
b851bc67b2 Add 2016-01-07 Statement 2015-12-31 18:24:59 +00:00
David A. Harding
8d36844396
Full node guide: use site vars for chain size
Also updates the various Bitcoin Core-related vars.
2015-12-29 10:36:18 -05:00
Jorgeminator
bc8ad6e494 Update full-node.md
Updated disk space and bandwidth requirements due to blockchain growth.
2015-12-29 16:05:04 +02:00
David A. Harding
9f94bce8c4 Core: mention separation of concerns from Bitcoin.org 2015-12-29 01:24:50 -05:00
David A. Harding
cc79a1ee7d
Capacity increases FAQ: add links 2015-12-23 18:44:56 -05:00
David A. Harding
4f906e43fe
Capacity increases FAQ: fix typos reported by Dooglus (thanks!) 2015-12-22 21:45:06 -05:00
David A. Harding
0934026778
Add capacity increses FAQ 2015-12-22 19:00:58 -05:00
David A. Harding
f394135bf0
Capacity increases: move FAQ mention to near top 2015-12-22 12:13:37 -05:00
David A. Harding
3896ad0784
Capacity increases: add chinese translations (jl2012) 2015-12-22 11:45:17 -05:00
David A. Harding
55c21fe8f9
Capacity increases: add signatures 2015-12-22 08:45:29 -05:00
David A. Harding
ef21d830ca
Capacity increases: new sigs & link from Bitcoin Core main page 2015-12-21 18:38:51 -05:00
David A. Harding
2a9d7e8d9a
Capacity increases: add signature 2015-12-21 16:47:45 -05:00
David A. Harding
20fe0674da Capacity increases: add signatures 2015-12-21 16:04:52 -05:00
David A. Harding
f95fdf2929 Capaticy increase: add signatures and ref to future FAQ 2015-12-21 15:41:26 -05:00
David A. Harding
5a8763d84c Capacity increases: add signatures 2015-12-21 15:16:20 -05:00
David A. Harding
47ceeb5dff capacity increases: add signatures & link to PR 2015-12-21 14:49:24 -05:00
David A. Harding
a5faf19c63 Capacity increases: add signatures 2015-12-21 14:35:27 -05:00
David A. Harding
ce2e2e0766 Capacity increases: add signatures 2015-12-21 14:23:23 -05:00
David A. Harding
2fae96f604 Capacity increases: add signatures 2015-12-21 14:08:53 -05:00
David A. Harding
d1dcbf2955 Capacity increases: add signatures 2015-12-21 12:53:46 -05:00
David A. Harding
0149c933a3 Capacity increases: add signatures 2015-12-21 12:19:07 -05:00
David A. Harding
f8caef0c26 Capacity increases: add signatures 2015-12-21 11:58:13 -05:00
David A. Harding
6933fbff69 Capacity increases: add signatures
[skip ci]
2015-12-21 10:41:25 -05:00
David A. Harding
abfea84590 Capacity increases: add signatures 2015-12-21 10:18:48 -05:00
David A. Harding
6a1d2601f3 Update "Capacity increases" statement 2015-12-21 09:48:13 -05:00
David A. Harding
e1358980cc Add "Capacity increases" page with initial signatures 2015-12-19 23:01:38 -05:00
Jonas Schnelli
012873dead Full node: reduce traffic configuration options
Closes #1131
2015-11-12 09:22:10 -05:00