Merge pull request #109 from vertoe/devel-0.9

Fix icons and install shortcuts (debian & macdeploy).
This commit is contained in:
Darkcoin 2015-01-16 08:03:43 -07:00
commit 2eda66f680
22 changed files with 187 additions and 100 deletions

View File

@ -1,4 +1,5 @@
Copyright (c) 2009-2013 Bitcoin Developers
Copyright (c) 2009-2015 Bitcoin Developers
Copyright (c) 2014-2015 Darkcoin Developers
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

17
INSTALL
View File

@ -1,5 +1,16 @@
Building Bitcoin
Building Darkcoin
See doc/build-*.md for instructions on building bitcoind,
Use the autogen script to prepare the build environment.
./autogen.sh
./configure
make
Precompiled binaries are available at github, see
https://github.com/darkcoinproject/darkcoin-binaries
Always verify the signatures and checksums.
See doc/build-*.md for instructions on building darkcoind,
the intended-for-services, no-graphical-interface, reference
implementation of Bitcoin.
implementation of Darkcoin.

View File

@ -1,21 +1,21 @@
Debian
====================
This directory contains files used to package bitcoind/bitcoin-qt
for Debian-based Linux systems. If you compile bitcoind/bitcoin-qt yourself, there are some useful files here.
This directory contains files used to package darkcoind/darkcoin-qt
for Debian-based Linux systems. If you compile darkcoind/darkcoin-qt yourself, there are some useful files here.
## bitcoin: URI support ##
## darkcoin: URI support ##
bitcoin-qt.desktop (Gnome / Open Desktop)
darkcoin-qt.desktop (Gnome / Open Desktop)
To install:
sudo desktop-file-install bitcoin-qt.desktop
sudo desktop-file-install darkcoin-qt.desktop
sudo update-desktop-database
If you build yourself, you will either need to modify the paths in
the .desktop file or copy or symlink your bitcoin-qt binary to `/usr/bin`
and the `../../share/pixmaps/bitcoin128.png` to `/usr/share/pixmaps`
the .desktop file or copy or symlink your darkcoin-qt binary to `/usr/bin`
and the `../../share/pixmaps/darkcoin128.png` to `/usr/share/pixmaps`
bitcoin-qt.protocol (KDE)
darkcoin-qt.protocol (KDE)

View File

@ -1,6 +0,0 @@
usr/local/bin/bitcoin-qt usr/bin
share/pixmaps/bitcoin32.xpm usr/share/pixmaps
share/pixmaps/bitcoin16.xpm usr/share/pixmaps
share/pixmaps/bitcoin128.png usr/share/pixmaps
debian/bitcoin-qt.desktop usr/share/applications
debian/bitcoin-qt.protocol usr/share/kde4/services/

View File

@ -1 +0,0 @@
contrib/bitcoind.bash-completion bitcoind

View File

@ -1,2 +0,0 @@
usr/local/bin/bitcoind usr/bin
usr/local/bin/bitcoin-cli usr/bin

View File

@ -0,0 +1,12 @@
[Desktop Entry]
Encoding=UTF-8
Name=Darkcoin
Comment=Darkcoin P2P Cryptocurrency
Comment[fr]=Darkcoin, monnaie virtuelle cryptographique pair à pair
Comment[tr]=Darkcoin, eşten eşe kriptografik sanal para birimi
Exec=darkcoin-qt %u
Terminal=false
Type=Application
Icon=darkcoin128
MimeType=x-scheme-handler/darkcoin;
Categories=Office;Finance;

View File

@ -2,11 +2,10 @@
Encoding=UTF-8
Name=Bitcoin
Comment=Bitcoin P2P Cryptocurrency
Comment[fr]=Bitcoin, monnaie virtuelle cryptographique pair à pair
Comment[tr]=Bitcoin, eşten eşe kriptografik sanal para birimi
Exec=bitcoin-qt %u
Terminal=false
Type=Application
Icon=bitcoin128
MimeType=x-scheme-handler/bitcoin;
Categories=Office;Finance;
Name[en_US]=darkcoin-qt.desktop

View File

@ -0,0 +1,6 @@
usr/local/bin/darkcoin-qt usr/bin
share/pixmaps/darkcoin32.xpm usr/share/pixmaps
share/pixmaps/darkcoin16.xpm usr/share/pixmaps
share/pixmaps/darkcoin128.png usr/share/pixmaps
debian/darkcoin-qt.desktop usr/share/applications
debian/darkcoin-qt.protocol usr/share/kde4/services/

View File

@ -1,2 +1,2 @@
# Linked code is Expat - only Debian packaging is GPL-2+
bitcoin-qt: possible-gpl-code-linked-with-openssl
darkcoin-qt: possible-gpl-code-linked-with-openssl

View File

@ -1,6 +1,6 @@
[Protocol]
exec=bitcoin-qt '%u'
protocol=bitcoin
exec=darkcoin-qt '%u'
protocol=darkcoin
input=none
output=none
helper=true

View File

@ -0,0 +1 @@
contrib/darkcoind.bash-completion darkcoind

View File

@ -0,0 +1,2 @@
usr/local/bin/darkcoind usr/bin
usr/local/bin/darkcoin-cli usr/bin

View File

@ -1,2 +1,2 @@
# Linked code is Expat - only Debian packaging is GPL-2+
bitcoind: possible-gpl-code-linked-with-openssl
darkcoind: possible-gpl-code-linked-with-openssl

View File

@ -15,5 +15,5 @@ This script should not be run manually, instead, after building as usual:
During the process, the disk image window will pop up briefly where the fancy
settings are applied. This is normal, please do not interfere.
When finished, it will produce `Bitcoin-Qt.dmg`.
When finished, it will produce `Darkcoin-Qt.dmg`.

View File

@ -22,7 +22,7 @@
<integer>370</integer>
<integer>156</integer>
</array>
<key>Bitcoin-Qt.app</key>
<key>Darkcoin-Qt.app</key>
<array>
<integer>128</integer>
<integer>156</integer>

View File

@ -809,7 +809,7 @@ if config.dmg is not None:
items_positions.append(itemscript.substitute(params))
params = {
"disk" : "Bitcoin-Qt",
"disk" : "Darkcoin-Qt",
"window_bounds" : "300,300,800,620",
"icon_size" : "96",
"background_commands" : "",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 67 KiB

View File

@ -0,0 +1,24 @@
/* XPM */
static char *bitcoin__[] = {
/* columns rows colors chars-per-pixel */
"16 16 2 1",
" c #2D98CE",
". c None",
/* pixels */
"................",
"................",
"................",
"... ..",
"... .",
".... ",
" .. ...... ",
". . ...... ",
".. ........ ",
"... ....... ",
"... ",
".... .",
"..... ..",
"................",
"................",
"................"
};

View File

@ -0,0 +1,40 @@
/* XPM */
static char *bitcoin__[] = {
/* columns rows colors chars-per-pixel */
"32 32 2 1",
" c #2D98CE",
". c None",
/* pixels */
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"..... .....",
"...... ..",
"....... .",
"....... ",
"........ ",
". .. ............ ",
". ... ............ ",
".. .. ............. ",
"... .. ............. ",
"... .. ............. ",
".... ... ............. ",
"..... ............... ",
"...... .............. ",
"....... ",
"....... ",
"........ .",
"......... ..",
".......... ...",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................",
"................................"
};