Pages:
Author

Topic: [ANN] [PMP] PreminePlus Launch ~ New Features! ~ Oct Signup Free Distribution! - page 61. (Read 148958 times)

legendary
Activity: 1624
Merit: 1007
well havent received mine yet Smiley hope they come over at some point.
P.S Waiting for that dice to come out!
legendary
Activity: 1148
Merit: 1000
Woohoo!! Giveaway coins received  Grin
Thank you TMX and Nullu for all the time and effort you guys are putting into this project, your work is much appreciated  Wink
This is going to be one of the best distributions ever and I'm glad I got in early. I'm gonna be holding on to those coins for a very long time as I really believe they could be worth a LOT in the future  Cool
member
Activity: 98
Merit: 10
Am I the only one having problem with sync? All other wallet sync without problem except for PMP... anybody can share his conf info please?
newbie
Activity: 33
Merit: 0
Hi there,
I reinstalled and reimported my wallet.dat but no joy as yet. I assume that the giveaway is being done in stages yes?
sr. member
Activity: 364
Merit: 250
I had received the PMPcoin!!thx!
sr. member
Activity: 350
Merit: 250
Vires in Numeris
All right, thank you for making me feel stupid guys.
I've updated the linux pro file, everything is included now.
Also reverted the setmodel changes. Everything should be in top shape now.
lol!
it builds fine now Smiley
thank you for making feel a linux user like a 1st class citizen!

That's good to hear.
You are very welcome skunk.

sr. member
Activity: 329
Merit: 250
All right, thank you for making me feel stupid guys.
I've updated the linux pro file, everything is included now.
Also reverted the setmodel changes. Everything should be in top shape now.
lol!
it builds fine now Smiley
thank you for making feel a linux user like a 1st class citizen!
member
Activity: 132
Merit: 10
Holy Crap!   227747.40294942 PMC burned.... a full 45.64 Percent of all PMC.

http://cryptexplorer.com/address/1PMCxxxSWAPxxxToxxxPMPxxxXXXUfNchW

Thats amazing!
I wonder how much is sitting on poloniex?

There are 11990 PMC sitting on the sell side of Poloniex ... of course that does not take into account how much is in accounts and not listed for sale...

there still might be some at cryptorush unless all those got lost.
sr. member
Activity: 350
Merit: 250
Vires in Numeris
All right, thank you for making me feel stupid guys.
I've updated the linux pro file, everything is included now.
Also reverted the setmodel changes. Everything should be in top shape now.

sr. member
Activity: 350
Merit: 250
Vires in Numeris
Hey skunk,
I'm not sure what you mean about the forced update. There is no forced update, if you want in-wallet chat then update, if not you don't need to update. There has been no modifications to the protocol.
i was referring to an eventual fork (eg. tek coin might fork in the upcoming days because a bug in the staking code)

Can we try something?
I'm going to push a commit to the repository with the commented out declaration.
should be live in about 2 mins.
Could you try again with this one?
Code:
build/bitcoingui.o: In function `BitcoinGUI::BitcoinGUI(QWidget*)':
bitcoingui.cpp:(.text+0x3588): undefined reference to `ChatWindow::ChatWindow(QWidget*)'
collect2: error: ld returned 1 exit status
make: *** [PreminePlus-qt] Error 1
not there yet...
as already mentioned by moneromoo, after recent revision i've to add -I/usr/include/qt4/QtNetwork to the makefile else compilation stops at the very beginning...

yes sorry as a windows user I neglected to make changes to the linux .pro
I'll do that now.
It's always something simple.
sr. member
Activity: 350
Merit: 250
Vires in Numeris
There are two problems that I can see.

First is that the chatwindow files aren't added to the list of sources:

diff --git a/linux-premineplus-qt.pro b/linux-premineplus-qt.pro
index 1bf7c55..7ab05b6 100644
--- a/linux-premineplus-qt.pro
+++ b/linux-premineplus-qt.pro
@@ -198,6 +198,7 @@ HEADERS += src/qt/bitcoingui.h \
     src/qt/rpcconsole.h \
     src/version.h \
     src/netbase.h \
+    src/qt/chatwindow.h \
     src/clientversion.h
 
 SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \
@@ -265,7 +266,8 @@ SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \
     src/scrypt-x86.S \
     src/scrypt-x86_64.S \
     src/scrypt_mine.cpp \
-    src/pbkdf2.cpp
+    src/pbkdf2.cpp \
+    src/qt/chatwindow.cpp
 
 RESOURCES += \
     src/qt/bitcoin.qrc



Second is that, after this is done, chatwindow.cpp includes a ui_chatwindow.h, which isn't in git. git add missing  I guess.

There's something else, but this might be my own problem. I had to add /usr/include/Qt to the include path in order for the build to find QtNetwork (Fedora 20).



OMFG!!!
LINUX USES THE SECONDARY PRO!!!
hahahaha way to hit the nail on the head MoneroMooo!

sr. member
Activity: 329
Merit: 250
Hey skunk,
I'm not sure what you mean about the forced update. There is no forced update, if you want in-wallet chat then update, if not you don't need to update. There has been no modifications to the protocol.
i was referring to an eventual fork (eg. tek coin might fork in the upcoming days because a bug in the staking code)

Can we try something?
I'm going to push a commit to the repository with the commented out declaration.
should be live in about 2 mins.
Could you try again with this one?
Code:
build/bitcoingui.o: In function `BitcoinGUI::BitcoinGUI(QWidget*)':
bitcoingui.cpp:(.text+0x3588): undefined reference to `ChatWindow::ChatWindow(QWidget*)'
collect2: error: ld returned 1 exit status
make: *** [PreminePlus-qt] Error 1
not there yet...
as already mentioned by moneromoo, after recent revision i've to add -I/usr/include/qt4/QtNetwork to the makefile else compilation stops at the very beginning...
legendary
Activity: 1302
Merit: 1000
Bass Player
Holy Crap!   227747.40294942 PMC burned.... a full 45.64 Percent of all PMC.

http://cryptexplorer.com/address/1PMCxxxSWAPxxxToxxxPMPxxxXXXUfNchW

Thats amazing!
I wonder how much is sitting on poloniex?

There are 11990 PMC sitting on the sell side of Poloniex ... of course that does not take into account how much is in accounts and not listed for sale...
legendary
Activity: 1276
Merit: 1001
There are two problems that I can see.

First is that the chatwindow files aren't added to the list of sources:

diff --git a/linux-premineplus-qt.pro b/linux-premineplus-qt.pro
index 1bf7c55..7ab05b6 100644
--- a/linux-premineplus-qt.pro
+++ b/linux-premineplus-qt.pro
@@ -198,6 +198,7 @@ HEADERS += src/qt/bitcoingui.h \
     src/qt/rpcconsole.h \
     src/version.h \
     src/netbase.h \
+    src/qt/chatwindow.h \
     src/clientversion.h
 
 SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \
@@ -265,7 +266,8 @@ SOURCES += src/qt/bitcoin.cpp src/qt/bitcoingui.cpp \
     src/scrypt-x86.S \
     src/scrypt-x86_64.S \
     src/scrypt_mine.cpp \
-    src/pbkdf2.cpp
+    src/pbkdf2.cpp \
+    src/qt/chatwindow.cpp
 
 RESOURCES += \
     src/qt/bitcoin.qrc



Second is that, after this is done, chatwindow.cpp includes a ui_chatwindow.h, which isn't in git. git add missing  I guess.

There's something else, but this might be my own problem. I had to add /usr/include/Qt to the include path in order for the build to find QtNetwork (Fedora 20).

sr. member
Activity: 350
Merit: 250
Vires in Numeris
Announcement time!

I've implemented In-wallet chat!
It's nothing fancy, works just like regular IRC freenode webchat.
Pop on and say hi to the community or use it as a place to trade.
This was actually done a couple days ago but I've been all over the place the past two days.

We have our very own Dice game in the works!
Our community will be able to win more PMP on a community run dice site!
This means 100% of all profits from this site will be used to further development of the currency and our community!
Development should be complete within the next couple days.


Other features I am planning to implement are in-wallet block explorer, in-wallet forum system and in-wallet trading system.


doesn't build under linux anymore, any idea?
Code:
cd /home/skunk/bitcoin/PreminePlus; /bin/sh share/genbuild.sh /home/skunk/bitcoin/PreminePlus/build/build.h
g++ -fstack-protector-all --param ssp-buffer-size=1 -Wl,-O1 -o PreminePlus-qt build/bitcoin.o build/bitcoingui.o build/transactiontablemodel.o build/addresstablemodel.o build/optionsdialog.o build/sendcoinsdialog.o build/addressbookpage.o build/signverifymessagedialog.o build/aboutdialog.o build/editaddressdialog.o build/bitcoinaddressvalidator.o build/alert.o build/version.o build/sync.o build/util.o build/netbase.o build/key.o build/script.o build/main.o build/init.o build/net.o build/irc.o build/checkpoints.o build/addrman.o build/db.o build/walletdb.o build/clientmodel.o build/guiutil.o build/transactionrecord.o build/optionsmodel.o build/monitoreddatamapper.o build/transactiondesc.o build/transactiondescdialog.o build/bitcoinstrings.o build/bitcoinamountfield.o build/wallet.o build/keystore.o build/transactionfilterproxy.o build/transactionview.o build/walletmodel.o build/bitcoinrpc.o build/rpcdump.o build/rpcnet.o build/rpcmining.o build/rpcwallet.o build/rpcblockchain.o build/rpcrawtransaction.o build/overviewpage.o build/csvmodelwriter.o build/crypter.o build/sendcoinsentry.o build/qvalidatedlineedit.o build/bitcoinunits.o build/qvaluecombobox.o build/askpassphrasedialog.o build/protocol.o build/notificator.o build/qtipcserver.o build/rpcconsole.o build/coincontroldialog.o build/coincontroltreewidget.o build/noui.o build/kernel.o build/scrypt-x86.o build/scrypt-x86_64.o build/scrypt_mine.o build/pbkdf2.o build/moc_bitcoingui.o build/moc_transactiontablemodel.o build/moc_addresstablemodel.o build/moc_optionsdialog.o build/moc_sendcoinsdialog.o build/moc_addressbookpage.o build/moc_signverifymessagedialog.o build/moc_aboutdialog.o build/moc_editaddressdialog.o build/moc_bitcoinaddressvalidator.o build/moc_clientmodel.o build/moc_guiutil.o build/moc_optionsmodel.o build/moc_monitoreddatamapper.o build/moc_transactiondesc.o build/moc_transactiondescdialog.o build/moc_bitcoinamountfield.o build/moc_transactionfilterproxy.o build/moc_transactionview.o build/moc_walletmodel.o build/moc_overviewpage.o build/moc_csvmodelwriter.o build/moc_sendcoinsentry.o build/moc_qvalidatedlineedit.o build/moc_qvaluecombobox.o build/moc_askpassphrasedialog.o build/moc_coincontroldialog.o build/moc_coincontroltreewidget.o build/moc_notificator.o build/moc_rpcconsole.o build/qrc_bitcoin.o    -L/usr/lib64/qt4 -LD:/deps/miniupnpc -lminiupnpc -lrt -LD:/deps/boost/stage/lib -Ld:/deps/db/build_unix -Ld:/deps/ssl -lssl -lcrypto -ldb_cxx -lboost_system -lboost_filesystem -lboost_program_options -lboost_thread -lQtGui -L/usr/lib64 -L/usr/lib64/qt4 -L/usr/X11R6/lib -lQtCore -lgthread-2.0 -lglib-2.0 -lpthread
build/bitcoingui.o: In function `BitcoinGUI::BitcoinGUI(QWidget*)':
bitcoingui.cpp:(.text+0x3588): undefined reference to `ChatWindow::ChatWindow(QWidget*)'
build/bitcoingui.o: In function `BitcoinGUI::setWalletModel(WalletModel*)':
bitcoingui.cpp:(.text+0x6ee5): undefined reference to `ChatWindow::setModel(ClientModel*)'
collect2: error: ld returned 1 exit status
make: *** [PreminePlus-qt] Error 1

This may seem like a dumb suggestion but try downloading from the github again and/or deleting your build files (.o's etc) to rebuild from scratch. I'm looking at the new bitcoingui.cpp and there really is only a handful of new lines, none of which should be causing an undefined reference.
In fact those two calls (chatWindow = new ChatWindow(this)Wink and (chatWindow->setModel(clientModel)Wink can easily be traced back to their functions.
It sounds like you have the new bitcoingui.cpp but not the new chatwindow.h/cpp which may be caused by some github funny business.

One of our users _CR_ has created a linux script to auto download and install the PreminePlus-qt.
I've updated the main post with the link: _CR_'s Magical Unix Installer
If this script helps anyone you can donate a few PMP to him here:
PXp6zMxMPf76kgEktVjr5hhFSxiHKy6YaE

Worse comes to worse, if that doesn't work just comment out the two setmodel functions. I've just tried this now (remove the call to setmodel from bitcoin.cpp and then the declaration from chatwindow.cpp) and it works fine without it. Technically they are not necessary in this manner.
Give me a shout or come on the IRC and I can show you how to easily do that.


i did issue "make clean" and even re-cloned the git repository again, no change...
nevermind, i don't need a chat into the wallet (however i was excited about the in-wallet trading system), until a forced update isn't required and the previous revision is staking and transferring coins correctly, i'll use that...
in the worst case i don't mind switching to the command line wallet Wink
thank you anyway

ps: the contributed install script is just for debian/ubuntu, however the install logic is the same that i've always used with most qt wallets.

Hey skunk,
I'm not sure what you mean about the forced update. There is no forced update, if you want in-wallet chat then update, if not you don't need to update. There has been no modifications to the protocol.
Can we try something?
I'm going to push a commit to the repository with the commented out declaration.
should be live in about 2 mins.
Could you try again with this one?
sr. member
Activity: 350
Merit: 250
Vires in Numeris
Holy Crap!   227747.40294942 PMC burned.... a full 45.64 Percent of all PMC.

http://cryptexplorer.com/address/1PMCxxxSWAPxxxToxxxPMPxxxXXXUfNchW

Thats amazing!
I wonder how much is sitting on poloniex?
legendary
Activity: 1302
Merit: 1000
Bass Player
Holy Crap!   227747.40294942 PMC burned.... a full 45.64 Percent of all PMC.

http://cryptexplorer.com/address/1PMCxxxSWAPxxxToxxxPMPxxxXXXUfNchW
legendary
Activity: 1131
Merit: 1001
Great! Payday for the Giveaway!!!

PMP goes live! And we are happy to welcome more new people on the giveaway list this month!
hero member
Activity: 532
Merit: 500
First 200 address done (actually 199, as one appeared to be a PMC address).

I'll do more tomorrow.

I can confirm that I've received the coins, thanks!

No problem.  Grin

I'll be doing another big batch tomorrow.
sr. member
Activity: 294
Merit: 250
First 200 address done (actually 199, as one appeared to be a PMC address).

I'll do more tomorrow.

I can confirm that I've received the coins, thanks!
Pages:
Jump to: