Commit graph

575 commits

Author SHA1 Message Date
Saivann
87a80e66dd Move Saivann Carignan into inactive contributors 2015-11-28 02:34:42 -05:00
Cøbra
23d06b47ce Coinspace
Add coinspace
2016-06-16 23:44:52 +01:00
Anton Kumaigorodski
2557ab0c2e Update choose-your-wallet.html 2016-05-21 11:08:47 +03:00
Cøbra
c2eda27465 Merge pull request #1267 from kyletorpey/patch-2
remove Coinfox from resources.html
2016-05-08 15:22:14 +01:00
Kyle Torpey
2979302dfa added back russian bitcointalk link 2016-04-21 04:42:37 -04:00
David A. Harding
f2b8c8bdf8
Wallets: remove Coinkite (they're closing down)
Per: http://blog.coinkite.com/post/141836920461/time-to-be-your-own-bank
2016-03-28 11:51:48 -04:00
Kyle Torpey
f7e464be80 remove Coinfox from resources.html
Coinfox doesn't really offer any added value. It's just blogspam with rewrites of articles by myself and others. Recent example: http://www.coinfox.info/news/5057-cory-fields-health-bitcoin is a rewrite of http://coinjournal.net/mits-cory-fields-contentiousness-in-bitcoin-is-sign-of-good-health/ where the featured image is copied.
The business model of coinfox seems to be taking the top posts from the previous day on /r/bitcoin, rewriting them, and reposting them the next day.
2016-03-23 17:45:00 -04:00
Andreas Schildbach
5efef458b7 Update source code repository for Bitcoin Wallet to https://github.com/bitcoin-wallet/bitcoin-wallet
It has moved to a GitHub organization.
2016-03-11 17:33:34 +01:00
Cøbra
09b0093c1b Merge pull request #1241 from kyletorpey/patch-1
Update resources.html
2016-02-23 15:45:03 +00:00
Kyle Torpey
5d6addaf39 Update resources.html
-Added Ulterior States to documentaries.
-Added IamSatoshi to learning resources.
-Added CoinJournal to news.
-Added The Bitcoin Phenomenon to documentaries.
2016-02-19 05:12:36 -05:00
Andreas M. Antonopoulos
0cdc30cb6d Remove volunteerpresscenter (bitcoinpresscenter.org)
The bitcoinpresscenter.org site is not necessary any more and will not be maintained. Removing from bitcoin.org press page.
2016-02-18 10:55:41 -06:00
Cøbra
8f6dfb338e
Remove Armory
Remove Armory
2016-02-18 11:27:49 +00:00
David A. Harding
b596242fa1
About Us: move Dave Harding to Inactive Contributors 2016-02-10 09:03:14 -05:00
David A. Harding
27051f2d1e
Merge pulls #1213, #1214, #1219, #1221, #1224, #1226
- 1213: Remove Hive wallet
- 1214: Remove links to 'mempool.info/pools'
- 1219: guide_transactions.md, correct 2 spellings.
- 1221: about: Move to Inactive
- 1224: Remove givebtc.org from resources
- Remove btcmexico.org from community page
2016-01-24 04:07:48 -05:00
cpmx
ba4443116e Remove btcmexico.org from community page
On the community page (https://bitcoin.org/en/community#mexico), the
‘Fundación Satoshi Nakamoto’  website does not load and should be
removed.
2016-01-24 16:08:31 +13:00
cpmx
2f03c06e3d Remove givebtc.org from resources
The link redirects to http://bitcoinembassy.ca
2016-01-23 15:44:18 +13:00
Will Binns
24d0c66911 about: Move to Inactive
Hello, just wanted to move myself to inactive status to open up
opportunities for others, as I've not been present to actively manage
translations or other tasks.
2016-01-22 15:29:43 -06:00
cpmx
9024332063 Remove Hive wallet 2016-01-22 11:17:23 +13:00
cpmx
6ac3dc1835 Remove Hive wallet
Hive is no longer being developed
2016-01-21 22:43:05 +13:00
David A. Harding
2b8c4c2cc9
Merge pull #1193: Upgrade to Jekyll 3.x 2016-01-16 09:00:54 -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
Brian Hoffman
f7d782c57f Revert "Merge pull request #1178 from Cobra-Bitcoin/remove-coinbase"
This reverts commit 7d1cdd9465, reversing
changes made to cc79a1ee7d.
2015-12-27 14:23:13 -05:00
Cøbra
507a578c83 Update about page
Update domain owners list
2015-12-27 17:15:44 +00:00
David A. Harding
9541371587
Merge pull #1149: Keepkey 2015-12-27 11:56:15 -05:00
Cøbra
faa6026398 Remove Coinbase
Remove Coinbase from the choose your wallet page.
2015-12-27 01:58:54 +00:00
Darin Stanchfield
dbce8b38a2 added KeepKey wallet 2015-11-30 20:02:01 -08:00
instagibbs
586528defe Added greenbits 2015-11-24 16:18:41 -05:00
David A. Harding
cd58319a88
Merge pull #1135: Update Will Binns's GitHub user name 2015-11-13 09:14:31 -05:00
Will Binns
eb5036d4de _templates/about-us.html: Update GitHub username
This updates the about page with a change to my user name.
2015-11-12 20:35:31 -06:00
Malte Möser
ab4d12331a Undo removal of end of header in #1121
#1121 removed the separator indicating the end of the header, resulting in a broken site
2015-10-29 09:39:38 -04:00
Ninkip2p
b19874a81c Remove Ninki Wallet 2015-10-29 17:10:02 +09:00
Saivann
a4cd636a12
Merge branch 'browserstack-contributors' 2015-10-19 11:11:09 -04:00
Saivann
342b17ff71 Add Service Contributors section in "About us" page 2015-10-15 12:49:40 -04:00
Cøbra
b715694e15 Remove images from Innovation Page
Removes images from the innovation page as some images are not open
source. Images will be re-introduced into the page at a later time once
ALL of them are open source.
2015-10-14 16:46:38 +01:00
Cøbra
8c797a8f8e Create Formal Privacy Policy
Update the privacy page and make it into a formal privacy policy.
2015-10-12 18:11:22 +01:00
btcmuyuu
cc921e1a74 Update choose-your-wallet.html
Hive is dead, as per his founder: https://www.reddit.com/r/Bitcoin/comments/3llr1a/hive_wallet_no_longer_being_developedtime_to_bail/cv7fmjy

hivewallet :
It wasn't the "web guy" you spoke to, it was me, Wendell, the founder/creator.
I apologize for the issues people have been having with Hive. You're right, I should have more clearly announced the glacial (not entirely frozen, see below) development, but we can't actually reach all of our users, and we assume that everyone knows our GitHub URL (github.com/hivewallet), which shows pretty transparently what is or is not going on.
Hive Web and Hive iOS are BIP32/BIP39 compatible, so you should be able to directly use your passphrase in any other wallet supporting that standard. This includes the excellent Bread Wallet, and I believe Mycelium as well.
It would be nice if some new maintainers for one or more of the platforms appeared, because with the patches that Wei created recently ( live @ http://hive-js.herokuapp.com ), it actually does work fine. However, these changes have not been rolled into the iOS version, and no one over here who might touch it uses OS X for development anymore.
We'll keep our servers on, but the wallets are basically unsupported. Again, because we respect your privacy and collect no data other than raw wallet numbers, we can't simply reach out to all of our users by email or some other means. Please help to spread the word by retweeting this:
https://twitter.com/hivewallet/status/645402186260721664
2015-09-20 17:20:14 +01:00
David A. Harding
9b47198e0f
Bitcoin Core: Remove Basic Translation 2015-09-14 06:03:22 -04:00
David A. Harding
706c791e92
New Bitcoin Core subsite
This commit contains a large number of contributions from Saïvann
Carignan.
2015-09-14 06:02:58 -04:00
David A. Harding
266ab858e2
Merge pulls #1048 and #1051
- 1048: Conditionally build some pages differently based on environmental variables
- 1051: Backend: cache events and contributor listings
2015-09-09 07:57:11 -04:00
David A. Harding
7a82c6d000
Alternative content for clone sites 2015-09-06 08:31:33 -04:00
Saivann
af1704002b Group _includes files in subfolders 2015-09-05 20:49:55 -04:00
Saivann
90dc6a02b6
Merge branch 'contributors-sponsors' 2015-09-05 11:55:50 -04:00
David A. Harding
33922885b3
Wallets: Remove Hive iOS
Per discussion with dev in
https://github.com/bitcoin-dot-org/bitcoin.org/issues/1040#issuecomment-137864985

Close #1040
2015-09-04 20:17:26 -04:00
Saivann
f4a2916cd5 Add The Bitcoin Foundation as a sponsor in the list of contributors 2015-09-03 13:45:07 -04:00
will binns
bd29b20d8f update will's github id 2015-09-01 23:32:30 -06:00
David A. Harding
580ecc1da2
Merge pull #1005 and #1006
- 1005: Just added CoinFOX info for /resources
- 1006: Adding French communities links
2015-08-16 23:08:40 -04:00
Igor Chepkasov
2904e28375
Just added CoinFOX info for /resources
Closes #1005
2015-08-16 23:07:46 -04:00
ffmad
33d9be002b Update community.html
added French reddit, facebook group and irc #cryptofr (way more active people there than in #bitcoin-fr)

would it be possible to add the major meetups too ?
2015-08-10 17:26:15 +02:00
David A. Harding
13ec935009
Merge pulls #967, #989, #991, and #994
- 967: Bitcoin Paper: Add Swedish Translation
- 989: Update text on FAQ & Innovation pages
- 991: Update quotes on Press page
- 994: [Full-Node] Added Win7 Daemon doc.
2015-08-05 11:20:45 -04:00
David A. Harding
d6d42e8b6c
Merge pulls #974 & 984
- 974: Update Text on "You Need to Know"
- 984: Update text on Bitcoin For X pages
2015-08-02 15:28:20 -04:00