Advertisement
eternitysoap

Part 5

Dec 15th, 2017
6,141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.49 KB | None | 0 0
  1. in src/qt/aboutdialog.cpp
  2.  
  3. Fix line 22: ui->copyrightLabel->setText(tr("Copyright") + QString(" &copy; 2009-%1 ").arg(COPYRIGHT_YEAR) + tr("The Bitcoin developers") + QString("<br>") + tr("Copyright") + QString(" &copy; ") + tr("2011-%1 The Litecoin developers").arg(ABOUTDIALOG_COPYRIGHT_YEAR)+ QString("<br>") + tr("Copyright") +QString(" &copy; ") + tr("%1 Funcoin Developer").arg(2017));
  4.  
  5. in src/qt/splashscreen.cpp
  6.  
  7. line 22, add int line4 = 39;
  8. Fix line 30 and add 31: QString copyrightText3 = QChar(0xA9)+QString(" %1 ").arg(2017) + QString(tr("Funcoin Developer"));
  9. Change line 48: pixPaint.drawText(paddingLeftCol2,paddingTopCol2+line4,versionText);
  10. Add line 54: pixPaint.drawText(paddingLeftCol2,paddingTopCol2+line3,copyrightText3);
  11.  
  12. in src/qt/res/bitcoin-qt.rc:
  13.  
  14. Fix line 11: #define COPYRIGHT_STR "2009-" STRINGIZE(COPYRIGHT_YEAR) " The Bitcoin developers 2011-" STRINGIZE(COPYRIGHT_YEAR) " The Litecoin developers 2017 Funcoin Developer"
  15.  
  16. in src/qt/aboutdialog.ui:
  17.  
  18. Below line 94, paste:
  19. Copyright &amp;copy; 2011-YYYY The Litecoin developers
  20. Copyright &amp;copy; 2017 Funcoin Developer</string>
  21.  
  22. 1228, net.cpp
  23.  
  24. perl script:
  25.  
  26. #!/usr/bin/perl
  27.  
  28. # Twobits twobit integer dotted quad to reverse hex convertor
  29. # designed for q&d use to put seeds into pnSeeds in *coins
  30.  
  31. my $ip;
  32.  
  33. if (@ARGV) {
  34. $ip = shift @ARGV;
  35. } else {
  36. print "Enter an (dotted quad) ip address: ";
  37. chomp( $ip = <STDIN> );
  38. }
  39.  
  40. printf "0x%08x\n", unpack 'N', pack 'C4', reverse split '\.', $ip;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement