Forum Home
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular

    [Dev] Documenting Feathercoin Specific Software settings - Part 15

    Technical Development
    1
    41
    8585
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • wrapper
      wrapper Moderators last edited by wrapper

      Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

      Wallet Overview page with status bar divider :: commit

      Wallet Overview page with status bar divider - as part of development of GUI. Difficult rationalization of screen splitting, fixing bugs with background image code, previously imported from Dogecoin. GUI work was done through Qt creator.

      https://github.com/FeatherCoin/Feathercoin/commit/44e49ea3f4cd32f14f58785b1572f1c30af8aa53

      src/qt/forms/overviewpage.ui

       -   <iconset resource="../feathercoin.qrc">
      
       +   <iconset resource="../../../../../Feathercoin/src/qt/feathercoin.qrc">
      

      Code replaced

        -          <pixmap resource="../feathercoin.qrc">:/images/mainlogo</pixmap>
      
       +          <pixmap resource="../../../../../Feathercoin/src/qt/feathercoin.qrc">:/images/mainlogo</pixmap>
      

      Code replaced

       +   <item>
       +    <widget class="Line" name="line_2">
       +     <property name="frameShadow">
       +      <enum>QFrame::Plain</enum>
       +     </property>
       +     <property name="lineWidth">
       +      <number>2</number>
       +     </property>
       +     <property name="orientation">
       +      <enum>Qt::Horizontal</enum>
       +     </property>
       +    </widget>
       +   </item>
      

      Code added

       -  <include location="../feathercoin.qrc"/>
      
       +  <include location="../../../../../Feathercoin/src/qt/feathercoin.qrc"/>
      

      Code replaced

      1 Reply Last reply Reply Quote 0
      • wrapper
        wrapper Moderators last edited by

        Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

        Standardise overview status bar divider :: commit

        Standardise overview status bar divider to raised shadow - width 1

        Wallet Overview page with status bar divider - as part of development of GUI. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

        https://github.com/FeatherCoin/Feathercoin/commit/6e9b7e534189f55d762640cfe50e99ca142682ab

        src/qt/forms/overviewpage.ui

          -   <iconset resource="../../../../../Feathercoin/src/qt/feathercoin.qrc">
        
         +   <iconset resource="../feathercoin.qrc">
        

        Code replaced

         -          <pixmap resource="../../../../../Feathercoin/src/qt/feathercoin.qrc">:/images/mainlogo</pixmap>
        
         +          <pixmap resource="../feathercoin.qrc">:/images/mainlogo</pixmap>
        

        Code replaced

         -      <enum>QFrame::Plain</enum>
        
         +      <enum>QFrame::Raised</enum>
        

        Code replaced

         -  <include location="../../../../../Feathercoin/src/qt/feathercoin.qrc"/>
        
        +  <include location="../feathercoin.qrc"/>
        

        Code replaced

        1 Reply Last reply Reply Quote 0
        • wrapper
          wrapper Moderators last edited by wrapper

          Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

          Remove code to insert background image in GUI :: commit

          Remove code to insert background image in GUI, iterative changes

          Wallet Overview page with status bar divider - as part of development of GUI. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

          https://github.com/FeatherCoin/Feathercoin/commit/6e9b7e534189f55d762640cfe50e99ca142682ab

          src/qt/bitcoingui.cpp

           +  
           +    //    Remove background image 
           +    //    QPalette palette;
           +    //    palette.setBrush(QPalette::Background,QBrush(QPixmap(":/images/mainbg")));
           +    //    this->setPalette(palette);
           +    //    this->setAutoFillBackground(true);   
          

          Code commented out, (was to be reviewed without as potential release at time)

          1 Reply Last reply Reply Quote 0
          • wrapper
            wrapper Moderators last edited by wrapper

            Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

            Updated About Box UI layout and FTC Light Blue Bar :: commit

            Updated About Box UI layout and FTC Light Blue Bar graduated with white Icon

            About dialog box page - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

            https://github.com/FeatherCoin/Feathercoin/commit/cc49f52a467267ad772ab73b118f98b56dd176ce

            src/qt/forms/aboutdialog.ui

             +     <property name="alignment">
             +      <set>Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft</set>
             +     </property>
            

            Code added

             +       <property name="margin">
             +        <number>0</number>
             +       </property>
             +       <property name="indent">
             +        <number>6</number>
             +       </property> 
            

            Example of a number of UI and layout tweaks. Code added

            1 Reply Last reply Reply Quote 0
            • wrapper
              wrapper Moderators last edited by wrapper

              Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

              Line Status Bar Divide on the main UI pages :: commit

              Include a lineStatusBarDivide on the main UI pages, positioned at bottom,

              Multisig dialog page - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

              https://github.com/FeatherCoin/Feathercoin/commit/2caed6c745491e97848e1464eaed221bfc2051f8

              src/qt/forms/multisigdialog.ui

               -  <layout class="QVBoxLayout" name="verticalLayout" stretch="0,1,0">
              
               +  <layout class="QVBoxLayout" name="verticalLayout" stretch="0,1,0,0">
              

              Code replaced

               +      <property name="leftMargin">
               +       <number>0</number>
               +      </property>
               +      <property name="topMargin">
               +       <number>0</number>
               +      </property>
               +      <property name="rightMargin">
               +       <number>0</number>
               +      </property>
               +      <property name="bottomMargin">
              

              Example UI code added

              Regress transactiondialog lineStatusBarDivider :: commit

              https://github.com/FeatherCoin/Feathercoin/commit/875d5b5d1c55315f6709428ec8e57b36d240d629

              src/qt/forms/multisigdialog.ui

              Removed part of the UI update

               -   <item alignment="Qt::AlignBottom">
               -    <widget class="Line" name="lineStatusBarDivide">
               -     <property name="frameShadow">
               -      <enum>QFrame::Raised</enum>
               -     </property>
               -     <property name="orientation">
               -      <enum>Qt::Horizontal</enum>
               -     </property>
               -    </widget>
               -   </item>
              

              Code removed, UI tweaks

              1 Reply Last reply Reply Quote 0
              • wrapper
                wrapper Moderators last edited by

                Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                First stage updated Icon set to modern feel :: commit

                First stage updated Icon set to modern feel and FTC light blue theme

                New icon set - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

                https://github.com/FeatherCoin/Feathercoin/commit/53617518b20bbd6a5a7b0c31469d146a6e6e22cf

                src/qt/res/icons/*

                 src/qt/res/icons/add.png
                
                 src/qt/res/icons/address-book.png
                
                 src/qt/res/icons/clock1.png
                
                 src/qt/res/icons/clock2.png
                
                 src/qt/res/icons/clock3.png
                
                 src/qt/res/icons/clock4.png
                
                 src/qt/res/icons/clock5.png
                
                 src/qt/res/icons/configure.png
                
                 src/qt/res/icons/debugwindow.png
                
                 src/qt/res/icons/edit.png
                
                 src/qt/res/icons/editcopy.png
                
                 src/qt/res/icons/editcopy.png
                
                 src/qt/res/icons/editpaste.png
                
                 src/qt/res/icons/export.png
                
                 src/qt/res/icons/filesave.png
                
                 src/qt/res/icons/history.png
                
                 src/qt/res/icons/key.png
                
                 src/qt/res/icons/lock_closed.png
                
                 src/qt/res/icons/lock_open.png
                
                 src/qt/res/icons/overview.png
                
                 src/qt/res/icons/quit.png
                
                 src/qt/res/icons/receive.png
                
                 src/qt/res/icons/remove.png
                
                 src/qt/res/icons/send.png
                
                 src/qt/res/icons/synced.png
                
                 src/qt/res/icons/transaction0.png
                
                 src/qt/res/icons/transaction2.png
                

                Icons replaced

                 src/qt/res/icons/transaction_conflicted.png
                
                 src/qt/res/icons/tx_inout.png
                
                 src/qt/res/icons/tx_input.png
                
                 src/qt/res/icons/tx_mined.png
                
                 src/qt/res/icons/tx_output.png
                

                Subsequently updated or changed?

                1 Reply Last reply Reply Quote 0
                • wrapper
                  wrapper Moderators last edited by

                  Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                  Update Blue Bar FTC Logo to be aligned at bottom :: commit

                  Update Blue Bar FTC Logo to be algned at bottom on Command Line Options Panel

                  UI update - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

                  https://github.com/FeatherCoin/Feathercoin/commit/39c46ed18caa1d1aa55f491306974e775e229aae

                  src/qt/forms/helpmessagedialog.ui

                  -           <pixmap>:/images/about</pixmap>
                  
                  +      <pixmap resource="../bitcoin.qrc">:/images/about</pixmap>
                  

                  Example of Interface updaes

                  1 Reply Last reply Reply Quote 0
                  • wrapper
                    wrapper Moderators last edited by

                    Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                    Testing alternate splash screen pop-u :: commit

                    Testing alternate splash screen pop-up - Stand by / back-up new image for new version.

                    UI update - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

                    https://github.com/FeatherCoin/Feathercoin/commit/c0b860388655023260ea3d6b87f4bc395a4db0fe

                    src/qt/res/images/*

                    src/qt/res/images/splash.1.png

                    src/qt/res/images/splash.2.png

                    src/qt/res/images/splash.png
                    

                    Backup new splash screen

                    1 Reply Last reply Reply Quote 0
                    • wrapper
                      wrapper Moderators last edited by wrapper

                      Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                      Update splash screen to improve text layout :: commit

                      Layout changes Splash screen

                      UI update - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

                      https://github.com/FeatherCoin/Feathercoin/commit/8a9fc2a002cc1c07acc78f16c5669d418728d3e5

                      src/qt/splashscreen.cpp

                       +    int paddingRight            = 298;
                       +    int paddingTop              = 230;
                      

                      Example layout change

                      updated splashscreen layout latest .cpp version :: commit

                      https://github.com/FeatherCoin/Feathercoin/commit/fdbf3f5882c3abc55227707a9e085884b1d61660

                      src/qt/splashscreen.cpp

                        -    int paddingRight            = 298;
                       +    int paddingRight            = 296;
                      

                      Minor Layout tweak

                      1 Reply Last reply Reply Quote 0
                      • wrapper
                        wrapper Moderators last edited by wrapper

                        Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                        Update configure.ac :: commit

                        Release should be false

                        https://github.com/FeatherCoin/Feathercoin/commit/1a9bf803f2a5e3afb270fabb43fbe39ed181f664

                        configure.ac

                         -define(_CLIENT_VERSION_IS_RELEASE, true)
                        
                         +define(_CLIENT_VERSION_IS_RELEASE, false)
                        

                        Code replaced. Only release engineer should set

                        1 Reply Last reply Reply Quote 0
                        • wrapper
                          wrapper Moderators last edited by

                          Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                          Update multisignature and reports icon :: commit

                          Update icons

                          UI update - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

                          https://github.com/FeatherCoin/Feathercoin/commit/8a9fc2a002cc1c07acc78f16c5669d418728d3e5

                          src/qt/res/icons/*

                           src/qt/res/icons/account-report.png
                          
                           src/qt/res/icons/multisig.png
                          

                          Updated icons

                          1 Reply Last reply Reply Quote 0
                          • wrapper
                            wrapper Moderators last edited by

                            Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                            Correct whit spelling error :: commit

                            Correct whit spelling error on Shape shift in bitcoingui.cpp

                            UI update - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

                            https://github.com/FeatherCoin/Feathercoin/commit/7711a770a6e1d38369748699ee96148ff0008e51

                            src/qt/bitcoingui.cpp

                            -// Copyright (c) 2013-2015 The Feathercoin developers
                            
                            +// Copyright (c) 2013-2016 The Feathercoin developers
                            

                            Copyright needs updating

                              -    shapeshiftAction->setStatusTip(tr("Exchange other coins whit your feathercoin on Shapeshift"));
                             +    shapeshiftAction->setStatusTip(tr("Exchange other coins with your feathercoin on Shapeshift"));
                            

                            Review change is in Translation files …

                            1 Reply Last reply Reply Quote 0
                            • wrapper
                              wrapper Moderators last edited by

                              Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                              Update snapwidget.ui with a distinct background colour, :: commit

                              Update snapwidget.ui with a distinct background colour, so it can be seen against a light or Dark theme, Ui release options

                              UI update - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

                              https://github.com/FeatherCoin/Feathercoin/commit/4c8e60990f3a3b9c691ef3e9d8b4e7a361abeb90

                              src/qt/forms/snapwidget.ui

                               -  <widget class="QPushButton" name="snapButton">
                              
                               +  <property name="autoFillBackground">
                              

                              Example UI layout changes / tweaks. reviewed later?

                              1 Reply Last reply Reply Quote 0
                              • wrapper
                                wrapper Moderators last edited by wrapper

                                Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                Updated router peer to peer connections icons :: commit

                                Updated router peer to peer connections icons Ui release options

                                UI update - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

                                https://github.com/FeatherCoin/Feathercoin/commit/7d2d1899ce24bfeb00e6c4a6d7435259954faf44

                                src/qt/res/icons/*

                                 src/qt/res/icons/connect0_16.png
                                
                                 src/qt/res/icons/connect1_16.png
                                
                                 src/qt/res/icons/connect2_16.png
                                
                                 src/qt/res/icons/connect3_16.png
                                
                                 src/qt/res/icons/connect4_16.png
                                

                                Icons replaced

                                Add about_qt ready for it to be included in code. :: commit

                                https://github.com/FeatherCoin/Feathercoin/commit/ddaca28818ef4c870690da400a455d645717de87

                                src/qt/res/icons/*

                                 src/qt/res/icons/about_qt.png
                                
                                1 Reply Last reply Reply Quote 0
                                • wrapper
                                  wrapper Moderators last edited by wrapper

                                  Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                  updated qrcode icon for show details of historical transactions :: commit

                                  updated qrcode icon for show details of historical transactions Ui release options

                                  UI update - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

                                  https://github.com/FeatherCoin/Feathercoin/commit/bc734c3ce2f2752d48aa6542005d311ca51cc758

                                  src/qt/forms/receivecoinsdialog.ui

                                   +    <height>409</height>
                                   
                                   +            <normaloff>../res/icons/qrcode.png</normaloff>../res/icons/qrcode.png</iconset>
                                  

                                  UI updates

                                  1 Reply Last reply Reply Quote 0
                                  • wrapper
                                    wrapper Moderators last edited by

                                    Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                    Update menu option icons for send and receive :: commit

                                    Update menu option icons for send and receive to be standard icons Ui release options

                                    UI update - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

                                    https://github.com/FeatherCoin/Feathercoin/commit/0115e3d2e8d0edda7f626a7aa6c5e8e37e10aadc

                                    src/qt/bitcoingui.cpp

                                     -    usedSendingAddressesAction = new QAction(QIcon(":/icons/address-book"), tr("&Sending addresses..."), this);
                                    
                                     +    usedSendingAddressesAction = new QAction(QIcon(":/icons/send"), tr("&Sending addresses..."), this);
                                    

                                    Code replaced

                                     -    usedReceivingAddressesAction = new QAction(QIcon(":/icons/address-book"), tr("&Receiving addresses..."), this);
                                    
                                     +    usedReceivingAddressesAction = new QAction(QIcon(":/icons/receive"), tr("&Receiving addresses..."), this);
                                    

                                    Code replaced

                                    1 Reply Last reply Reply Quote 0
                                    • wrapper
                                      wrapper Moderators last edited by

                                      Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                      Include updated set of Icons :: commit

                                      Include updated set of Icons, update to Ui release options

                                      UI update - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

                                      https://github.com/FeatherCoin/Feathercoin/commit/de7c63a675984cfc0350e83d9a25ad0e476e854b

                                      src/qt/forms/snapwidget.ui

                                       -    <enum>QFrame::WinPanel</enum>
                                      +    <enum>QFrame::Panel</enum>
                                      

                                      Main layout change of many

                                      1 Reply Last reply Reply Quote 0
                                      • wrapper
                                        wrapper Moderators last edited by

                                        Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                        Include updated set of Icons :: commit

                                        Include updated set of Icons, update to Ui release options

                                        UI update - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

                                        https://github.com/FeatherCoin/Feathercoin/commit/de7c63a675984cfc0350e83d9a25ad0e476e854b

                                        src/qt/res/icons/*

                                          src/qt/res/icons/bitcoin.png
                                        
                                         src/qt/res/icons/bitcoin_testnet.ico 
                                        
                                         src/qt/res/icons/comment.png
                                        
                                         src/qt/res/icons/configure.png
                                        
                                         src/qt/res/icons/debugwindow.png
                                        
                                         src/qt/res/icons/edit.png
                                        
                                         src/qt/res/icons/editcopy.png
                                        
                                         src/qt/res/icons/editpaste.png
                                        
                                         src/qt/res/icons/export.png
                                        
                                         src/qt/res/icons/filesave.png
                                        
                                         src/qt/res/icons/history.png
                                        
                                         src/qt/res/icons/key.png
                                        
                                         src/qt/res/icons/lock_closed.png
                                        
                                         src/qt/res/icons/lock_open.png
                                        
                                         src/qt/res/icons/multisig.png
                                        
                                         src/qt/res/icons/openname.png
                                        
                                          src/qt/res/icons/openurl.png
                                        
                                         src/qt/res/icons/overview.png
                                        
                                         src/qt/res/icons/print.png
                                        
                                         src/qt/res/icons/qrcode.png
                                        
                                         src/qt/res/icons/send.png
                                        
                                         src/qt/res/icons/shapeshift.png
                                        
                                         src/qt/res/icons/synced.png
                                        
                                         src/qt/res/icons/toolbar.png
                                        
                                         src/qt/res/icons/transaction2.png
                                        
                                         src/qt/res/icons/transaction_conflicted.png
                                        
                                         src/qt/res/icons/tx_inout.png
                                        
                                         src/qt/res/icons/tx_input.png
                                        
                                         src/qt/res/icons/tx_output.png
                                        

                                        Updated icon set added

                                        1 Reply Last reply Reply Quote 0
                                        • wrapper
                                          wrapper Moderators last edited by wrapper

                                          Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                          Update bitcoingui.cpp :: commit

                                          UI update - as part of development of GUI refresh. Difficult rationalization of screen splitting, fixing bugs with background image code. GUI work was done through Qt creator.

                                          https://github.com/FeatherCoin/Feathercoin/commit/79cc3bf23be75509a73c73b05bfa69efd7023b09

                                          src/qt/bitcoingui.cpp

                                           -    usedReceivingAddressesAction = new QAction(QIcon(":/icons/receive"), tr("&Receiving addresses..."), this);
                                          
                                           +    usedReceivingAddressesAction = new QAction(QIcon(":/icons/receiving_addresses"), tr("&Receiving addresses..."), this);
                                          

                                          Code update

                                          1 Reply Last reply Reply Quote 0
                                          • wrapper
                                            wrapper Moderators last edited by wrapper

                                            Feathercoin specific changes made to convert Bitcoin to FTC 0.9.6.*

                                            Update documentation - Build from source on Debian based systems :: commit

                                            Update software build instructions to minimise FTC changes over Bitcoin documentation

                                            https://github.com/FeatherCoin/Feathercoin/commit/14e7f5d7ad86bff09b52363dd38b22e118d02f2c

                                            README.md

                                            Examples of the updates

                                             +Feathercoin 0.9.3.2 
                                             +===================
                                            
                                             +[Feathercoin Core] is the original Feathercoin client and it builds the backbone of the network. However, it downloads and stores the entire history of Feathercoin transactions (which is currently several GBs); depending on the speed of your computer and network connection, the synchronization process can take anywhere from a few hours to a day or more. Thankfully you only have to do this once. 
                                            
                                             +Example UNIX Build from source
                                             +------------------------------
                                            
                                             +The Feathercoin wallet contains a number of features which require additional libraries to the Bitcoin build instructions.
                                            

                                            Updates to simplify build instructions documentation to FTC specific features.

                                             +### Download the .deb file or install the zxing binaries available after installing the Feathercoin PPA  
                                             +
                                             +
                                             +(http://forum.feathercoin.com/topic/8327/guide-feathercoin-wallet-ppa-and-binaries-on-ubuntu-and-debian-linux)  
                                             +
                                             +As Super user (or sudo) create a file named **opensuse.list** in the directory 
                                             +
                                             +    /etc/apt/sources.list.d 
                                             +
                                             +For your OS, copy the command into /etc/apt/sources.list.d and save it.  
                                             +    
                                             +    deb http://download.opensuse.org/repositories/home:/wellenreiter01/xUbuntu_16.04 ./
                                             +
                                             +download the repository key:
                                             +    wget http://download.opensuse.org/repositories/home:/wellenreiter01/Debian_7.0/Release.key    
                                             +   
                                             +Then add the key to your system:
                                             +
                                             +    sudo apt-key add Release.key
                                             +    
                                             +    sudo apt-get update  
                                             +    sudo apt-get install libzxing  
                                             + 
                                             + 
                                             +### If PPA or .deb does not work, compile the zxing libraries yourself, download the sources from github.com.
                                             +
                                             +Search for zxing-cpp to get the c++ version of the code.   
                                             +
                                             +https://github.com/glassechidna/zxing-cpp
                                             +
                                             +Build command for libzxing :  
                                             +
                                             +sudo apt-get install cmake
                                             +
                                             +cd zxing-cpp
                                             +
                                             +mkdir build
                                             +cd build
                                            

                                            Update build instructions with PPA

                                             +Running Feathercoin
                                             +---------------------
                                             +The following are some helpful notes on how to run Feathercoin on your native platform. 
                                             +
                                             +### Unix
                                             +
                                             +cd Feathercoin  
                                             +./feathercoin-qt  
                                             +
                                             +### Windows
                                             +
                                             +Unpack the files into a directory, and then run feathercoin-qt.exe.
                                             +
                                             +### OSX
                                             +
                                             +Drag Feathercoin-Qt to your applications folder, and then run Feathercoin-Qt.
                                             +
                                             +### Need Help?
                                             +
                                             +* Ask for support in the support section of https://forum.feathercoin.com
                                             +* If you find a bug, you also may raise an issue at: http://www.github.com/Feathercoin/Feathercoin/issues
                                             +
                                             +Building
                                             +---------------------
                                             +The developer documentation can be found on http://www.github.com/Feathercoin/Feathercoin/tree/0.9.3/doc 
                                             +
                                             +check for 
                                             +
                                             +- [OSX Build Notes](build-osx.md)
                                             +- [Unix Build Notes](build-unix.md)
                                             +- [Windows Build Notes](build-msw.md)
                                             +
                                             +Development
                                             +---------------------
                                             +The Feathercoin repo's [root README](https://github.com/Feathercoin/Feathercoin/tree/0.9.3/README.md) contains relevant information on the development process and automated testing.
                                             +
                                             +- [Coding Guidelines](coding.md)
                                             +- [Multiwallet Qt Development](multiwallet-qt.md)
                                             +- [Release Notes](release-notes.md)
                                             +- [Release Process](release-process.md)
                                             +- [Source Code Documentation (External Link)](https://dev.visucore.com/feathercoin/doxygen/)
                                             +- [Translation Process](translation_process.md)
                                             +- [Unit Tests](unit-tests.md)
                                             +
                                             +### Resources
                                             +- forum.feathercoin.com
                                             +- chat: forum.feathercoin.com/shoutbox
                                             +
                                             +
                                             +License
                                             +---------------------
                                             +Distributed under the [MIT/X11 software license](http://www.opensource.org/licenses/mit-license.php).
                                             +This product includes software developed by the OpenSSL Project for use in the [OpenSSL Toolkit](http://www.openssl.org/). This product includes
                                             +cryptographic software written by Eric Young ([eay@cryptsoft.com](mailto:eay@cryptsoft.com)), and UPnP software written by Thomas Bernard.
                                            

                                            FTC specific instructions pulled to here

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post