aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-01-18Merge pull request #3490Wladimir J. van der Laan
7e08e29 better std::exception logging for block/undo files (Philip Kaufmann)
2014-01-17Merge pull request #3512Wladimir J. van der Laan
04aa828 [Qt] don't regenerate autostart link on every client startup (Philip Kaufmann)
2014-01-15Merge pull request #3527 from laanwj/2014_01_gitian_win32_qt5Gavin Andresen
build: update win32 deps
2014-01-14Merge pull request #3426Wladimir J. van der Laan
16ec904 Don't create empty transactions when reading corrupted wallet (Wladimir J. van der Laan)
2014-01-14Merge pull request #3538Wladimir J. van der Laan
81bad8b [Qt] 2 minor translation changes (Philip Kaufmann)
2014-01-14Merge pull request #3541Wladimir J. van der Laan
c704532 [Qt] small paymentserver header cleanup (Philip Kaufmann)
2014-01-14Merge pull request #3540Wladimir J. van der Laan
57d8e3f [Qt] add missing lock in walletmodel (Cozz Lovan)
2014-01-14[Qt] small paymentserver header cleanupPhilip Kaufmann
2014-01-14[Qt] 2 minor translation changesPhilip Kaufmann
2014-01-14[Qt] add missing lock in walletmodelCozz Lovan
2014-01-14update copyright year to 2014Philip Kaufmann
2014-01-14qt: Update remaining "The Bitcoin Core Developers"Wladimir J. van der Laan
2014-01-14build: upgrade Qt used by windows build to 5.2.0Wladimir J. van der Laan
2014-01-14Merge pull request #3526Wladimir J. van der Laan
f10b2d7 qt: use series of pngs for spinner (Wladimir J. van der Laan)
2014-01-13Merge pull request #3516 from sipa/serorphans-headGavin Andresen
Store orphan blocks in serialized form
2014-01-13qt: English translation updateWladimir J. van der Laan
2014-01-13Merge pull request #3528Wladimir J. van der Laan
66a8829 qt: Minor message updates (Wladimir J. van der Laan)
2014-01-13Merge pull request #3374Wladimir J. van der Laan
bd70562 [Qt] add messages when handling local payment request files (Philip Kaufmann)
2014-01-13qt: Minor message updatesWladimir J. van der Laan
Used sending/receiving addresses -> Sending/receiving addresses Previously requested payments -> Requested payments (idea from @cozz in #3521)
2014-01-13qt: use series of pngs for spinnerWladimir J. van der Laan
Use a series of .png frames for the spinner instead of a .mng. `mng` is an obscure image format and is not built by default into Qt5. This appears to improve the crispness of the spinner as well. Does not noticably increase the size (still ~27k) and the code is not more complicated either.
2014-01-13build: fix MacOSX build after ec41342Wladimir J. van der Laan
Fix regression introduced in ec41342. Also use a less ugly solution, by defining the value of `MOC_DEFS` in the configure script instead of `Makefile.include`.
2014-01-12Merge pull request #3513Wladimir J. van der Laan
d464edf [Qt] fix alphabetical ordering in Makefile.am (Philip Kaufmann)
2014-01-12Merge pull request #3511Wladimir J. van der Laan
245a6ab [Qt] guard bitcoin-config.h and remove dublicated help message code (Philip Kaufmann)
2014-01-12Merge pull request #3507Wladimir J. van der Laan
9b146cd GUI: Fix design in overview page (Cozz Lovan)
2014-01-12[Qt] fix alphabetical ordering in Makefile.amPhilip Kaufmann
- also change to 1 file per line for more stuff in Makefile.am
2014-01-11Store orphan blocks in serialized formPieter Wuille
2014-01-11[Qt] don't regenerate autostart link on every client startupPhilip Kaufmann
- allows users to add additional paramaters via the autostart link - related to #2197
2014-01-11[Qt] guard bitcoin-config.h and remove dublicated help message codePhilip Kaufmann
2014-01-11small headers ordering cleanupPhilip Kaufmann
- keep headers in alphabetical order - fix Makefile.am (2 files in 1 line - leftover) - remove some spaces etc.
2014-01-11GUI: Fix design in overview pageCozz Lovan
2014-01-11makefile.am: split long lines into one file per lineWladimir J. van der Laan
This makes it easier to read diffs. Cosmetic change to build system only.
2014-01-11GUI for --disable-wallet compiles and -disablewallet modeWladimir J. van der Laan
There is not much in the GUI to be done without wallet, though it's possible to change options, watch the sync process, and use the debug console. So embed the debug console in the main window.
2014-01-11build: pass correct defs and include path to mocWladimir J. van der Laan
To make sure the right slots are generated, MOC needs -DHAVE_CONFIG_H and correct include path to include bitcoin-config.h.
2014-01-11qt: Stop shutdown detection timer during shutdownWladimir J. van der Laan
Stop the shutdown timer from exiting the main loop when shutdown is already in progress. Fixes seeming hanging window after typing 'stop' in debug console. Also hide the debug console during shutdown as it is useless without a core to connect to.
2014-01-11qt: Remove global references in bitcoin.cppWladimir J. van der Laan
Remove the need for global references `guiref` and `splashref` by making the BitcoinGUI and SplashScreen classes register for the UI interface signals themselves.
2014-01-11qt: Show window while shutting downWladimir J. van der Laan
Makes it clear to the user that the application is still wrapping up and the computer should not be turned off until it is finished.
2014-01-11qt: Move initialization/shutdown to a threadWladimir J. van der Laan
Move AppInit2 and Shutdown to a thread. This allows a more responsive splash screen, prevents 'process does not respond' messages from the window system and will allow for showing a user friendly window while shutting down.
2014-01-10qt5: fix typo causing broken selection logicCory Fields
2014-01-10qt5: fix --with-qt with no argumentsCory Fields
2014-01-10qt5: tests: Make sure static plugin symbols are pulled inCory Fields
Since we're now properly linking against static plugins for qt binaries, we need to ensure that they're Imported properly. Without these Imports, the linker drops some of the unused linked libs, causing undefined symbols in QtCore.
2014-01-10qt5: Use QT_SELECT for debian-based distros.Cory Fields
At least Debian/Ubuntu use 'qtchooser' for switching between qt4/qt5 binaries. It is a wrapper for all qt tools, and calls the named tool of the default version unless overridden by the -qt= option or QT_SELECT environment variable. QT_SELECT is set by configure once the qt version has been chosen. Take for example, moc. $ which moc /usr/bin/moc $ ls -go /usr/bin/moc lrwxrwxrwx 1 9 Jul 3 21:33 /usr/bin/moc -> qtchooser $ qtchooser -print-env QT_SELECT="default" QTTOOLDIR="/usr/lib/x86_64-linux-gnu/qt4/bin" QTLIBDIR="/usr/lib/x86_64-linux-gnu" $ QT_SELECT=qt5 qtchooser -print-env QT_SELECT="qt5" QTTOOLDIR="/usr/lib/x86_64-linux-gnu/qt5/bin" QTLIBDIR="/usr/lib/x86_64-linux-gnu" $ moc -v Qt Meta Object Compiler version 63 (Qt 4.8.4) $ QT_SELECT=qt5 moc -v Qt Meta Object Compiler version 67 (Qt 5.0.1) This should be harmless elsewhere.
2014-01-10qt5: Use the info gleaned from configure for plugin importingCory Fields
2014-01-10qt5: split out qt config and add qt5 supportCory Fields
Qt5 detection is a big ugly mess, but at least we can fence it off.
2014-01-10qt5: fix a build issue with osx and qtdbusCory Fields
See comment in notificator.cpp for details.
2014-01-10qt5: Ensure correct link orderCory Fields
If optional libs don't appear in QT_LIBS, they need to be listed first for proper static linking.
2014-01-10Merge pull request #3347Wladimir J. van der Laan
7e195e8 [Qt] massive options/settings rework (no core changes) (Philip Kaufmann)
2014-01-10[Qt] display native dir separators in select dadatir dialogPhilip Kaufmann
- fixes display on Windows now \ instead of / before
2014-01-10Merge pull request #3488Wladimir J. van der Laan
2102ab9 ui: Fix GUI initialization order (Wladimir J. van der Laan)
2014-01-10Merge pull request #3432Wladimir J. van der Laan
b960fcb [Qt] update bitcoin-qt.pro and assets-attribution.md (Philip Kaufmann)
2014-01-09Add test for GetTime()Wladimir J. van der Laan
Test for mingw/wine issue #3494, where the upper word of time(NULL) return value gets clobbered.