Bitcoin Forum
May 03, 2024, 02:40:54 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 »  All
  Print  
Author Topic: Bitcoin 0.9.0 FINAL is available [Changelog] [Download]  (Read 38261 times)
iongchun
Member
**
Offline Offline

Activity: 75
Merit: 10


View Profile
March 20, 2014, 04:03:00 AM
 #81

There are some quirks in the Italian translation (and some text which hasn't even been translated).

Where can I report them?


The translations in 0.9.0 release is not the latest on Transifex.
I don't understand why the release team don't pull the latest into the release,
especially some strings are just replaced/updated several weeks before the release.
It annoys me as a translator because it happens several times, and I see half-baked translations in a release.
It could be better that the release schedule includes a period to call for translations,
so developers have a deadline to update strings to be localized,
and translators have a deadline to finish their work.

Bitcoin: 1NFMpJUW7sTKmnVKj12MxhPvCvzAKQ5gUV
Namecoin: N5Tnt3JyMeizsoAFAZDr7CSxjzDtPSisK8
Mining with P2Pool. Graph. Blocks.
If you see garbage posts (off-topic, trolling, spam, no point, etc.), use the "report to moderator" links. All reports are investigated, though you will rarely be contacted about your reports.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714704054
Hero Member
*
Offline Offline

Posts: 1714704054

View Profile Personal Message (Offline)

Ignore
1714704054
Reply with quote  #2

1714704054
Report to moderator
Maged
Legendary
*
Offline Offline

Activity: 1204
Merit: 1015


View Profile
March 20, 2014, 04:05:34 AM
 #82

are there any no longer used data files at %appdata%/bitcoin that are safe to get rid off for the sake of extra disk space? 

i think i'm seeing 2 blockchains in mine, one in folder 'blocks' that is current and an older chain at the root of %appdata%/bitcoin that stopped updating over a year ago, around 6 gigs. is it safe to dump it?
Yes, you can get rid of that one, but it's just a hard link to a file in the blocks folder, so deleting it doesn't actually free up any space.

5thStreetResearch
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile WWW
March 20, 2014, 05:08:06 AM
 #83

Nice work, thanks and keep it up!

Equate
Hero Member
*****
Offline Offline

Activity: 770
Merit: 500


View Profile
March 20, 2014, 05:26:08 AM
 #84

Thank you
whatcoinorg
Jr. Member
*
Offline Offline

Activity: 266
Merit: 1


View Profile
March 20, 2014, 06:47:19 AM
 #85

Thank you for your hard work.
r3wt
Hero Member
*****
Offline Offline

Activity: 686
Merit: 504


always the student, never the master.


View Profile
March 20, 2014, 07:03:14 AM
 #86

give us back the address pages.

My negative trust rating is reflective of a personal vendetta by someone on default trust.
dewdeded
Legendary
*
Offline Offline

Activity: 1232
Merit: 1011


Monero Evangelist


View Profile
March 20, 2014, 07:39:32 AM
 #87

I pulled the git, installed "automake", now it complains
Code:
checking for Berkeley DB C++ headers... no
configure: error: libdb_cxx headers missing
..although I have "libdb-dev" installed.

Any hints?

Ente
locate db_cxx.h

then you have different options:

a) fixing directories with symlinks, so configure finds it within the default dirs (/usr/lib and /usr/include)
b) using ./configure flags or BASH settings to specifiy where libs are searched/found
(e.g. something like ./configure BDB_LIBS=/usr/local/db48/lib BDB_CPPFLAGS=-I/usr/local/db48/include)
Vort
Newbie
*
Offline Offline

Activity: 79
Merit: 0



View Profile
March 20, 2014, 08:36:07 AM
 #88

give us back the address pages.
This pages are hidden within File menu
Ente
Legendary
*
Offline Offline

Activity: 2126
Merit: 1001



View Profile
March 20, 2014, 09:05:05 AM
Last edit: March 20, 2014, 09:27:31 AM by Ente
 #89

I pulled the git, installed "automake", now it complains
Code:
checking for Berkeley DB C++ headers... no
configure: error: libdb_cxx headers missing
..although I have "libdb-dev" installed.

Any hints?

Ente
locate db_cxx.h

then you have different options:

a) fixing directories with symlinks, so configure finds it within the default dirs (/usr/lib and /usr/include)
b) using ./configure flags or BASH settings to specifiy where libs are searched/found
(e.g. something like ./configure BDB_LIBS=/usr/local/db48/lib BDB_CPPFLAGS=-I/usr/local/db48/include)


Thanks pal. It turned out I need "libdb++-dev" instead of "libdb-dev".

One step closer now, next roadblock:

Code:
checking for Berkeley DB C++ headers... default
configure: error: Found Berkeley DB other than 4.8, required for portable wallets (--with-incompatible-bdb to ignore)
There is only v5.1 available on Debian

edit: recompiling with "--with-incompatible-bdb"

Ente
dewdeded
Legendary
*
Offline Offline

Activity: 1232
Merit: 1011


Monero Evangelist


View Profile
March 20, 2014, 09:45:03 AM
 #90

Second one is known and https://github.com/bitcoin/bitcoin/issues/3686 .
Ente
Legendary
*
Offline Offline

Activity: 2126
Merit: 1001



View Profile
March 20, 2014, 10:13:50 AM
 #91


Thanks again for your help.

In the meantime I compiled with:

Code:
aptitude install automake libdb++-dev libboost-dev
aptitude install libboost-{system,filesystem,chrono,program-options,thread,test}-dev

./autogen.sh
./configure --with-incompatible-bdb
make

Works on Debian.
Take care that your wallet files may be incompatible to other bitcoin-core installations because of the different berkeley db version. Which is no issue for me.

Ente
Gummo
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
March 20, 2014, 10:56:46 AM
 #92

I've installed 0.9 on ubuntu 13.10 (copied the files in the archive to /usr/bin)

It's working fine. Though I thought the transaction fee's were lowered to 0.00001 btc. It's the same 0.0001 as before. Did I do something wrong?
alexeft
Legendary
*
Offline Offline

Activity: 854
Merit: 1000


View Profile
March 20, 2014, 11:44:01 AM
 #93

Hey guys, the linux version doesn't work on centos 6.5 x64. It requires newer version of glibc
I compiled a static version of bitcoind, but still get the same message.

Message is:
--------------------------------
./bitcoind: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by ./bitcoind)
./bitcoind: /lib64/libc.so.6: version `GLIBC_2.15' not found (required by ./bitcoind)
./bitcoind: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by ./bitcoind)
---------------------------------

Can this be fixed in anyway?

Thanks!



r3wt
Hero Member
*****
Offline Offline

Activity: 686
Merit: 504


always the student, never the master.


View Profile
March 20, 2014, 11:44:31 AM
 #94

give us back the address pages.
This pages are hidden within File menu

ah thanks. i'm happy now. little confused by the request payment feature, but the improvements are nice to say the least.

My negative trust rating is reflective of a personal vendetta by someone on default trust.
wumpus
Hero Member
*****
Offline Offline

Activity: 812
Merit: 1022

No Maps for These Territories


View Profile
March 20, 2014, 11:55:01 AM
 #95

Hey guys, the linux version doesn't work on centos 6.5 x64. It requires newer version of glibc
I compiled a static version of bitcoind, but still get the same message.

Message is:
--------------------------------
./bitcoind: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by ./bitcoind)
./bitcoind: /lib64/libc.so.6: version `GLIBC_2.15' not found (required by ./bitcoind)
./bitcoind: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by ./bitcoind)
---------------------------------

Can this be fixed in anyway?

Thanks!
This is a known issue.
Can you try the static builds here  https://github.com/bitcoin/bitcoin/pull/3914 ?

Bitcoin Core developer [PGP] Warning: For most, coin loss is a larger risk than coin theft. A disk can die any time. Regularly back up your wallet through FileBackup Wallet to an external storage or the (encrypted!) cloud. Use a separate offline wallet for storing larger amounts.
alexeft
Legendary
*
Offline Offline

Activity: 854
Merit: 1000


View Profile
March 20, 2014, 12:17:23 PM
 #96

Hey guys, the linux version doesn't work on centos 6.5 x64. It requires newer version of glibc
I compiled a static version of bitcoind, but still get the same message.

Message is:
--------------------------------
./bitcoind: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by ./bitcoind)
./bitcoind: /lib64/libc.so.6: version `GLIBC_2.15' not found (required by ./bitcoind)
./bitcoind: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by ./bitcoind)
---------------------------------

Can this be fixed in anyway?

Thanks!
This is a known issue.
Can you try the static builds here  https://github.com/bitcoin/bitcoin/pull/3914 ?

It works!

Thanks
rmines
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile
March 20, 2014, 12:20:19 PM
 #97

Successfully upgraded to 0.9.0 Smiley
I like the new receive window and the lowered tx fees, good work devs!

♔ PrimeDice : The Premier Bitcoin Gambling Experience @PrimeDice
Spare some change? 1LkqfvQTLAEiiCwTqkPRcvUdEmkCR11QDE
davidpbrown
Sr. Member
****
Offline Offline

Activity: 531
Merit: 260


Vires in Numeris


View Profile WWW
March 20, 2014, 12:32:48 PM
 #98

what is the easiest way to upgrade bitcoin-qt on ubuntu to this version?

I'm on Mint but expect it's the same for you. I couldn't just double run the bitcoin-qt as I coudl with 0.8.6 but it runs when started from the command line.
So, cd ~/bitcoin-0.9.0-linux/bin/32 and ./bitcoin-qt &

฿://12vxXHdmurFP3tpPk7bt6YrM3XPiftA82s
btcpay86
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


全球O2O消费商


View Profile WWW
March 20, 2014, 01:50:57 PM
 #99

It's nice.

1. Jeunesse, Redefining YOUTH.  婕斯,重新定义年轻。| 该生病而不生病,该老化却很年轻,正是婕斯“沛泉菁华”的奥秘所在。
    为了大家实现财务自由的梦想,敬请关注婕斯全球直销网站: http://haccp.jeunesseglobal.com
2. 捐赠 Donations:  BTC - 12QSDXfUq6B2ywer8xJeQYbiV7A7E8yB3H
rallasnackbar
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
March 20, 2014, 01:57:32 PM
 #100

Dont download this, the receive bitcoin address list is missing. And you have to start over.
Pages: « 1 2 3 4 [5] 6 7 8 9 10 11 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!