aboutsummaryrefslogtreecommitdiff
path: root/share
AgeCommit message (Collapse)Author
2016-06-30windows: Add testnet icon for testnet linkWladimir J. van der Laan
Overhauled testnet icon by Jonas Schnelli
2016-06-29windows: Add testnet link to installerWladimir J. van der Laan
2016-06-09build: Get rid of `CLIENT_DATE`Wladimir J. van der Laan
Putting the build date in the executable is a practice that has no place in these days, now that deterministic building is increasingly common. Continues #7732 which did this for the GUI.
2016-05-24Correct small typo in extract_strings_qt.pyMitchell Cash
2016-04-11Remove wxwidgets references from NSIS script.JeremyRand
The NSIS script tried to delete wxwidgets-based executables/locales. These files are ancient, and presumably no users have them anymore, so we can simplify the NSIS script by removing those lines.
2016-04-11build: Use PACKAGE_TARNAME and new bin names in NSIS script.JeremyRand
Replaces the hardcoded string "bitcoin" with the autoconf variable PACKAGE_TARNAME; fixes #7265. Places where I chose not to replace: 1. bitcoin.ico wasn't replaced because it doesn't seem to be relevant to the build system and its filename never affects the end user. 2. InstallDir wasn't replaced because the current text has an uppercase B, and I'm not sure of a good way to capitalize the result of PACKAGE_TARNAME. 3. A comment in the Main Installer section wasn't replaced because comments don't ever face the end user. 4. The registry value "URL:Bitcoin" wasn't replaced for the same reason as InstallDir. 5. Startup shortcut wasn't replaced for the same reason as InstallDir. All other appearances of "bitcoin" were replaced with PACKAGE_TARNAME, except for the bin names, which were instead replaced with the new bin name autoconf variables.
2016-03-29build: python 3 compatibilityWladimir J. van der Laan
Ubuntu 16.04 "xenial xerus" does not come with Python 2.x by default. It is possible to install a python-2.7 package, but this has its own problem: no `python` or `python2` symlink (see #7717). This fixes the following scripts to work with python 3: - `make check` (bctest,py, bitcoin-util-test.py) - `make translate` (extract_strings_qt.py) - `make symbols-check` (symbol-check.py) - `make security-check` (security-check.py) Explicitly call the python commands using $(PYTHON) instead of relying on the interpreter line at the top of the scripts.
2016-03-01[doc] Fix markdownMarcoFalke
2016-02-03Merge branch 'master' into single_prodnameLuke Dashjr
2016-01-28Move PACKAGE_URL to configure.acLuke Dashjr
2016-01-19Bugfix: Actually use _COPYRIGHT_HOLDERS_SUBSTITUTION everywhereLuke Dashjr
2016-01-15Update project URLBtcDrak
2015-12-22Set copyright holders displayed in notices separately from the package nameLuke Dashjr
This helps avoid accidental removal of upstream copyright names
2015-12-14Unify package name to as few places as possible without major changesLuke Dashjr
2015-11-29Added additional config option for multiple RPC users.Gregory Sanders
2015-10-09[trivial] Remove obsolete share/qt/make_windows_icon.shMarcoFalke
2015-09-13[trivial] Remove obsolete pixmapsMarcoFalke
2015-09-13[qt] [trivial] share/qt/make_spinner.py => src/qt/res/movies/makespinner.shMarcoFalke
* Merge make_spinner.py into makespinner.sh * Also delete now unused imgs * Actually use all 36 frames for the spinner animation
2015-06-25contrib: Improvements to hardcoded seeds scriptsWladimir J. van der Laan
- Moved all seed related scripts to contrib/seeds for consistency - Updated `makeseeds.py` to handle IPv6 and onions, fix regular expression for recent Bitcoin Core versions - Fixed a bug in `generate-seeds.py` with regard to IPv6 parsing
2015-06-03Merge pull request #6218Wladimir J. van der Laan
960e994 gitian: Bump cache dir for current master (Cory Fields) be65628 gitian: bump faketime to something more recent (Cory Fields) c3cdd7b osx: set min version to 10.7 for 0.11+ (Cory Fields)
2015-06-03OSX: use "Bitcoin Core" as Bundle Display NameJonas Schnelli
2015-06-02osx: set min version to 10.7 for 0.11+Cory Fields
2015-06-01[OSX] revert renaming of Bitcoin-Qt.appJonas Schnelli
2015-05-19[Mac only] rename Bitcoin-Qt.app to "Bitcoin Core.app"Jonas Schnelli
2015-05-04build: if there's no recent git tag, don't spew error messagesCory Fields
2015-01-05Update seed IPs, based on bitcoin.sipa.be crawler dataPieter Wuille
2014-11-04build: Fix "too many arguments" errorFrancis GASCHET
Closes #5141
2014-11-03Fix all header definesPavel Janík
2014-10-28Update generate-seeds.py to produce doxygen compatible commentsMichael Ford
2014-10-04Disable App Nap on OSX 10.9+Michael Ford
2014-09-19build: fix release name strings for gitian buildsCory Fields
When building from a distdir as gitian does, checking for the .git dir is not reliable. Instead, ask git if we're in a repo.
2014-08-03Add built-in seeds for .onionWladimir J. van der Laan
This makes it possible for a node with `-onlynet=tor` to bootstrap itself. It also adds the base infrastructure for adding IPv6 seed nodes. Also represent IPv4 fixed seed addresses in 16-byte format.
2014-07-07qt: Pick translation messages only from necessary filesWladimir J. van der Laan
Utility libraries (common, util) as well as extra tools shouldn't be parsed for translation messages, only the server and wallet part qualify here.
2014-05-09build: fix: remove error outputharry
while git not found in path, error is output to console.
2014-04-24Add CLIENT_VERSION_REVISION to mac osx info plistMichael Ford
2014-04-15VERSION obtained from source instead of the previous git tag.Warren Togami
Drawback: The version string is no longer a valid git identifier. For this reason the 'g' short hash prefix has been removed. Exception: When building directly from a tag this behaves exactly like the previous behavior. This allows formatting release versions with precision i.e. v0.9.2 This also allows arbitrary topicbranch names i.e. v0.9.1-glibc-compat
2014-03-31Add application category for OSXduanemoody
In "View by Category" without this metadata the app gets sorted into "Other" at the bottom.
2014-02-25Require OSX 10.6, 64-bitGavin Andresen
Drop support for 32-bit or pre-10.6 Macs. Also, some of the OSX build docs hadn't been updated since the autotools change.
2014-01-30Fix build time when building from tarball (now really)Wladimir J. van der Laan
Don't define BUILD_DATE at all when no git version information is available. `version.cpp` will then define it for us correctly to the last commit date. This has been fixed and broken many times over 0.9 history (21cc8bd, ef1e984), please don't touch this code unless you plan on testing all possible scenarios including gitian builds. Fixes #3570.
2014-01-21build: Change package name to Bitcoin CoreWladimir J. van der Laan
Affects the name of the package as shown in installers and such. Also rebrand the windows installer.
2014-01-21build: Package docs/ and don't package source.Wladimir J. van der Laan
No-one uses the installer then builds from source. Closes #2819.
2014-01-21build: Add bitcoin-cli.exe to installerWladimir J. van der Laan
2014-01-21Adapt Windows installer for 64 bitWladimir J. van der Laan
2014-01-14qt: Update remaining "The Bitcoin Core Developers"Wladimir J. van der Laan
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.
2013-12-09[Qt] misc small Mac related changes/cleanupsPhilip Kaufmann
- cleanup Info.plist.in and specify high DPI mode enable command as per http://blog.qt.digia.com/blog/2013/04/25/retina-display-support-for-mac-os-ios-and-x11/ - move setting of QApplication::setAttribute() to bitcoin.cpp and add attribute for enabling use of high DPI pixmaps for Qt >= 5.1 - add missing setWindowTitle() on Mac - cleanup Mac / non-Mac setup in bitcoingui.cpp
2013-12-02Lossless image optimizationSined
less bytes, same images
2013-11-21Provide build time when building from tarball:Dmitry Smirnov
When building from tarball (i.g. not from git source tree or when git is not available) `genbuild.sh` write undefined $TIME to "build/build.h". Even worse, when TIME is set in the environment then its value is written instead of a date. For me this change fixed FTBFS which I got because I had TIME enviroment variable set with format for time(1) utility.
2013-11-10Cleanup code using forward declarations.Brandon Dahler
Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files.
2013-09-19fix extract_strings_qt.pyPhilip Kaufmann
- a recent pull changed xgettext to gettext, this is reverted here