aboutsummaryrefslogtreecommitdiff
path: root/contrib
AgeCommit message (Collapse)Author
2013-02-10Add script to clean up datadirsPieter Wuille
2013-02-06Merge commit 'd38c6488d067c2e88726e2ca99bc76fd67dab49b'v0.8.0rc1Gavin Andresen
2013-02-01Update default URL in verify.shfanquake
The current default URL doesn't seem to exist. Unsure wether this should be updated to point to 0.7.2 now or wether just to wait untill 0.8.0 is out and point there? Commit also fixes a minor typo in the macdeploy notes.txt
2013-01-30Bump version numbers for 0.8 releaseGavin Andresen
Version numbers changed from 0.7.99 to 0.8.0 Set CLIENT_VERSION_IS_RELEASE to remove pre-release warning Updated copyright in COPYING and doc/READMEs to 2013 Updated doc/release-notes.txt
2013-01-29Utility to create pnSeed arrayGavin Andresen
2013-01-26Merge pull request #2162 from gavinandresen/spendfromJeff Garzik
spendfrom.py sends coins from a particular address or addresses
2013-01-24spendfrom.py sends coins from a particular address or addressesGavin Andresen
Should be both useful and also a pretty good demonstration of using the raw transactions API.
2013-01-18Port macdeployqtplus to OSX 10.8Gavin Andresen
Use 'osascript' to run AppleScript, instead of using (broken-in-10.8) python appscript package. And added support for code-signing the .app bundle, to make OSX's GateKeeper happy.
2012-11-21Deploy properly with Nokia Qt installer's Frameworksdefault
2012-10-29Merge pull request #1967 from TheBlueMatt/leveldbmakefilePieter Wuille
Undo bad gitian update.
2012-10-29Undo bad gitian update.Matt Corallo
2012-10-29Merge pull request #1935 from runeksvendsen/masterGavin Andresen
Add script to contrib/ that verifies authenticity of binaries hosted on SourceForge
2012-10-29Upgrade to Qt 4.8.3 (because 4.8.2 was removed from qt repos?)Matt Corallo
2012-10-15Added script that verifies authenticity of binaries on SourceForgeRune K. Svendsen
2012-10-01Merge branch '2012_09_base58tests' of github.com:laanwj/bitcoinGavin Andresen
2012-10-01data-driven base58 CBitcoinAddress/CBitcoinSecret testsWladimir J. van der Laan
Arbitrary numbers of test vectors can be generated using the script `gen_base58_test_vectors.py`.
2012-09-29Merge pull request #1864 from Diapolo/Qt_4.8.2Wladimir J. van der Laan
switch to Qt 4.8.2 for Windows builds
2012-09-25switch to Qt 4.8.2 for Windows buildsPhilip Kaufmann
2012-09-22Update Bitcoin to use OpenSSL 1.0.1cfanquake
Bump deps tp 0.0.5 Small docs corrections
2012-09-09Merge pull request #1803 from luke-jr/md2k7_licenseWladimir J. van der Laan
Apply MIT license to md2k7 art
2012-09-08Apply MIT license to md2k7 artLuke Dashjr
[21:48:14] <md2k7> feel free to make it MIT if you like
2012-09-06Merge pull request #1726 from laanwj/2012_08_gitian_qt_stylesWladimir J. van der Laan
Remove unused styles on Windows from gitian qt build
2012-09-06Minor build documentation fixGavin Andresen
2012-09-06Merge branch 'master' of github.com:bitcoin/bitcoinGavin Andresen
2012-09-06Build doc updatesGavin Andresen
2012-09-05Fix mac .dmg packager for latest macports qt4Gavin Andresen
2012-09-05Update gitian build setup notesGavin Andresen
2012-08-28Remove unused styles on Windows from gitian qt buildWladimir J. van der Laan
Keeps the "windows", "windowsxp", "windowsvista" styles. Reduces the size of a static bitcoin-qt.exe by ~400 kB.
2012-08-27Upgrade to Boost 1.50Matt Corallo
2012-08-27Bugfix: Adjust gitian-win32 to use Boost 1.49 for realLuke Dashjr
2012-08-27Bugfix: Move boost::interprocess Win32 workaround to Bitcoin-Qt sources, ↵Luke Dashjr
rather than hacking boost in gitian
2012-07-22Replace all occurances of license.txt with COPYING, including naming the ↵Luke Dashjr
file COPYING.txt on Windows
2012-07-18Docs Tidy upfanquake
2012-07-05Merge branch 'uri' of https://github.com/TheBlueMatt/bitcoinGavin Andresen
2012-06-25Update contrib/debian and remove system json_spirit patch.Matt Corallo
That patch has been broken for a long, long time (forever?) and doesn't make sense.
2012-06-21Merge pull request #1490 from luke-jr/gd_ljr_keyGregory Maxwell
gitian-downloader: Update luke-jr's key
2012-06-20gitian-downloader: Update luke-jr's keyLuke Dashjr
2012-06-20Update my GPG keyPieter Wuille
2012-06-15Fix #956 the Boost 1.49 way.Matt Corallo
2012-06-15Upgrade to Boost 1.49 on Win32Matt Corallo
2012-06-12Fix broken config filesMatt Corallo
2012-06-02Update contrib/debian.Matt Corallo
* Updates package description to note that blockchain now takes 2+ GB instead of 150+ MB. * Stop creating DB_CONFIG with DB_LOG_AUTO_REMOVE as that is set in Bitcoin itself now. * Update changelog with 0.6.2 and the current updates.
2012-05-23Use debhelper to install bitcoind.bash-completionChristian von Roques
2012-05-23Bash programmable completion for bitcoind(1)Christian von Roques
2012-05-06Update changelog to match reality.Matt Corallo
2012-04-27Bump win32.deps version number for new opensslGavin Andresen
2012-04-27Windows build: compile against openssl 1.0.1bGavin Andresen
2012-04-10Merge pull request #1054 from sipa/buildinfoPieter Wuille
Build identification strings
2012-04-10Build identification stringsPieter Wuille
All client version information is moved to version.cpp, which optionally (-DHAVE_BUILD_INFO) includes build.h. build.h is automatically generated on supporting platforms via contrib/genbuild.sh, using git describe. The git export-subst attribute is used to put the commit id statically in version.cpp inside generated archives, and this value is used if no build.h is present. The gitian descriptors are modified to use git archive instead of a copy, to create the src/ directory in the output. This way, src/src/version.cpp will contain the static commit id. To prevent gitian builds from getting the "-dirty" marker in their git-describe generated identifiers, no touching of files or running sed on the makefile is performed anymore. This does not seem to influence determinism.
2012-04-09Added comment lines in French & Turkish which basically mean "Bitcoin, ↵cardpuncher
virtual P2P cryptocurrency".