├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── LatestStableVersion.txt ├── README.md ├── ReleaseNotes.md ├── Windows Installer ├── Installer.sln ├── Installer.vdproj ├── Installer.wxs └── Installer32.vdproj ├── azure-pipelines.yml └── src ├── IMinerWorker.h ├── IMiningManager.h ├── IPoolClient.h ├── IPoolMiner.h ├── JsonRpc ├── JsonRpcClient.cpp ├── JsonRpcClient.h ├── JsonRpcNotification.cpp ├── JsonRpcNotification.h ├── JsonRpcObject.cpp ├── JsonRpcObject.h ├── JsonRpcObjectFactory.cpp ├── JsonRpcObjectFactory.h ├── JsonRpcRequest.cpp ├── JsonRpcRequest.h ├── JsonRpcResponse.cpp └── JsonRpcResponse.h ├── Miner ├── Miner.cpp ├── Miner.h ├── StratumClient.cpp ├── StratumClient.h ├── Worker.cpp └── Worker.h ├── MinerDelegate.cpp ├── MinerDelegate.h ├── MinerModel.cpp ├── MinerModel.h ├── MiningFrame.cpp ├── MiningFrame.h ├── MiningFrame.ui ├── MiningManager.cpp ├── MiningManager.h ├── PoolTreeView.cpp ├── PoolTreeView.h ├── aboutdialog.cpp ├── aboutdialog.h ├── aboutdialog.ui ├── addressbookdelegate.cpp ├── addressbookdelegate.h ├── addressbookdialog.cpp ├── addressbookdialog.h ├── addressbookdialog.ui ├── addressbookframe.cpp ├── addressbookframe.h ├── addressbookframe.ui ├── addressbookmanager.cpp ├── addressbookmanager.h ├── addressbookmodel.cpp ├── addressbookmodel.h ├── addressbooksortedmodel.cpp ├── addressbooksortedmodel.h ├── application.cpp ├── application.h ├── askpassworddialog.cpp ├── askpassworddialog.h ├── askpassworddialog.ui ├── balanceoverviewframe.cpp ├── balanceoverviewframe.h ├── balanceoverviewframe.ui ├── bytecoin-gui.pro ├── bytecoinwallet.desktop ├── bytecoinwallet.qss ├── bytecoinwallet.rc ├── changepassworddialog.cpp ├── changepassworddialog.h ├── changepassworddialog.ui ├── checkproofdialog.cpp ├── checkproofdialog.h ├── checkproofdialog.ui ├── common.cpp ├── common.h ├── connectionoptionsframe.cpp ├── connectionoptionsframe.h ├── connectionoptionsframe.ui ├── connectselectiondialog.cpp ├── connectselectiondialog.h ├── connectselectiondialog.ui ├── crashdialog.cpp ├── crashdialog.h ├── crashdialog.ui ├── createproofdialog.cpp ├── createproofdialog.h ├── createproofdialog.ui ├── elidedlabel.cpp ├── elidedlabel.h ├── exportkeydialog.cpp ├── exportkeydialog.h ├── exportkeydialog.ui ├── filedownloader.cpp ├── filedownloader.h ├── font ├── OpenSans-Bold.ttf ├── OpenSans-BoldItalic.ttf ├── OpenSans-ExtraBold.ttf ├── OpenSans-ExtraBoldItalic.ttf ├── OpenSans-Italic.ttf ├── OpenSans-Light.ttf ├── OpenSans-LightItalic.ttf ├── OpenSans-Regular.ttf ├── OpenSans-Semibold.ttf ├── OpenSans-SemiboldItalic.ttf ├── WorkSans-Black.ttf ├── WorkSans-BlackItalic.ttf ├── WorkSans-Bold.ttf ├── WorkSans-BoldItalic.ttf ├── WorkSans-ExtraBold.ttf ├── WorkSans-ExtraBoldItalic.ttf ├── WorkSans-ExtraLight.ttf ├── WorkSans-ExtraLightItalic.ttf ├── WorkSans-Italic.ttf ├── WorkSans-Light.ttf ├── WorkSans-LightItalic.ttf ├── WorkSans-Medium.ttf ├── WorkSans-MediumItalic.ttf ├── WorkSans-Regular.ttf ├── WorkSans-SemiBold.ttf ├── WorkSans-SemiBoldItalic.ttf ├── WorkSans-Thin.ttf └── WorkSans-ThinItalic.ttf ├── icons ├── actual_balance.png ├── address_book.png ├── address_book_bl.png ├── address_book_bl_disabled.png ├── arrow_circle.png ├── arrow_circle_hover.png ├── arrow_circle_up.png ├── arrow_circle_up_hover.png ├── arrow_left_black.png ├── arrow_right_black.png ├── balance.png ├── balance_bl.png ├── balance_new.png ├── big_arrow.png ├── big_arrow_black.png ├── block_explorer.png ├── block_explorer_bl.png ├── block_explorer_bl_disabled.png ├── blog.png ├── connected.png ├── connected_bl.png ├── copy.png ├── delete_pool.png ├── delete_pool_hover.png ├── disconnected.png ├── disconnected_bl.png ├── donation_address.png ├── donation_address_small.png ├── donation_clock1.png ├── donation_clock2.png ├── donation_clock3.png ├── donation_clock4.png ├── donation_clock5.png ├── donation_confirmed.png ├── donation_unconfirmed.png ├── down-arrow.png ├── inp_clock1.png ├── inp_clock2.png ├── inp_clock3.png ├── inp_clock4.png ├── inp_clock5.png ├── inp_confirmed.png ├── inp_unconfirmed.png ├── lock_closed.png ├── lock_closed_bl.png ├── lock_open.png ├── lock_open_bl.png ├── lock_open_gray.png ├── logo.png ├── logo_bl.png ├── logo_stage.png ├── logo_test.png ├── mined_clock1.png ├── mined_clock2.png ├── mined_clock3.png ├── mined_clock4.png ├── mined_clock5.png ├── mined_confirmed.png ├── miner.png ├── miner_big.png ├── miner_bl.png ├── miner_bl_disabled.png ├── mining.png ├── not_synced.png ├── opt_confirmed.png ├── out_clock1.png ├── out_clock2.png ├── out_clock3.png ├── out_clock4.png ├── out_clock5.png ├── out_confirmed.png ├── out_failed.png ├── out_unconfirmed.png ├── overview.png ├── overview_bl.png ├── overview_bl_disabled.png ├── pending_balance.png ├── pool_stats.png ├── scroll_news_down.png ├── scroll_news_down_hover.png ├── scroll_news_up.png ├── scroll_news_up_hover.png ├── send.png ├── send_bl.png ├── send_bl_disabled.png ├── slider_handle.png ├── start.png ├── stop.png ├── sync.png ├── sync_bl.png ├── sync_lag.png ├── sync_sprite.png ├── sync_sprite_bl.png ├── synced.png ├── synced_bl.png ├── total_balance.png ├── transactions.png ├── transactions_bl.png ├── transactions_bl_disabled.png ├── twitter.png ├── up-arrow.png ├── up_big_arrow.png ├── up_big_arrow_black.png ├── wallet_sync.gif └── wallet_sync_dark.gif ├── images ├── add_address_helper.png ├── bytecoin.icns ├── bytecoin.ico ├── bytecoin.png ├── bytecoin_stage.png ├── bytecoin_test.png └── splash.png ├── importkeydialog.cpp ├── importkeydialog.h ├── importkeydialog.ui ├── logframe.cpp ├── logframe.h ├── logframe.ui ├── logger.cpp ├── logger.h ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h ├── mainwindow.ui ├── miningoverviewframe.cpp ├── miningoverviewframe.h ├── miningoverviewframe.ui ├── mnemonicdialog.cpp ├── mnemonicdialog.h ├── mnemonicdialog.ui ├── myaddressesframe.cpp ├── myaddressesframe.h ├── myaddressesframe.ui ├── newaddressdialog.cpp ├── newaddressdialog.h ├── newaddressdialog.ui ├── newmyaddressdialog.cpp ├── newmyaddressdialog.h ├── newmyaddressdialog.ui ├── okbutton.cpp ├── okbutton.h ├── optionsdialog.ui ├── overviewframe.cpp ├── overviewframe.h ├── overviewframe.ui ├── popup.cpp ├── popup.h ├── progressbar.cpp ├── progressbar.h ├── questiondialog.cpp ├── questiondialog.h ├── questiondialog.ui ├── resizablescrollarea.cpp ├── resizablescrollarea.h ├── resources.qrc ├── rpcapi.cpp ├── rpcapi.h ├── sendconfirmationdialog.cpp ├── sendconfirmationdialog.h ├── sendframe.cpp ├── sendframe.h ├── sendframe.ui ├── settings.cpp ├── settings.h ├── signalhandler.cpp ├── signalhandler.h ├── statusbar.cpp ├── statusbar.h ├── transferframe.cpp ├── transferframe.h ├── transferframe.ui ├── version.cpp ├── version.h ├── walletd.cpp ├── walletd.h ├── walletdparamsdialog.cpp ├── walletdparamsdialog.h ├── walletdparamsdialog.ui ├── walletmodel.cpp ├── walletmodel.h ├── windoweditemmodel.cpp └── windoweditemmodel.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/LICENSE -------------------------------------------------------------------------------- /LatestStableVersion.txt: -------------------------------------------------------------------------------- 1 | 3.4.2 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/README.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /Windows Installer/Installer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/Windows Installer/Installer.sln -------------------------------------------------------------------------------- /Windows Installer/Installer.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/Windows Installer/Installer.vdproj -------------------------------------------------------------------------------- /Windows Installer/Installer.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/Windows Installer/Installer.wxs -------------------------------------------------------------------------------- /Windows Installer/Installer32.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/Windows Installer/Installer32.vdproj -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /src/IMinerWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/IMinerWorker.h -------------------------------------------------------------------------------- /src/IMiningManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/IMiningManager.h -------------------------------------------------------------------------------- /src/IPoolClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/IPoolClient.h -------------------------------------------------------------------------------- /src/IPoolMiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/IPoolMiner.h -------------------------------------------------------------------------------- /src/JsonRpc/JsonRpcClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/JsonRpc/JsonRpcClient.cpp -------------------------------------------------------------------------------- /src/JsonRpc/JsonRpcClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/JsonRpc/JsonRpcClient.h -------------------------------------------------------------------------------- /src/JsonRpc/JsonRpcNotification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/JsonRpc/JsonRpcNotification.cpp -------------------------------------------------------------------------------- /src/JsonRpc/JsonRpcNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/JsonRpc/JsonRpcNotification.h -------------------------------------------------------------------------------- /src/JsonRpc/JsonRpcObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/JsonRpc/JsonRpcObject.cpp -------------------------------------------------------------------------------- /src/JsonRpc/JsonRpcObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/JsonRpc/JsonRpcObject.h -------------------------------------------------------------------------------- /src/JsonRpc/JsonRpcObjectFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/JsonRpc/JsonRpcObjectFactory.cpp -------------------------------------------------------------------------------- /src/JsonRpc/JsonRpcObjectFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/JsonRpc/JsonRpcObjectFactory.h -------------------------------------------------------------------------------- /src/JsonRpc/JsonRpcRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/JsonRpc/JsonRpcRequest.cpp -------------------------------------------------------------------------------- /src/JsonRpc/JsonRpcRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/JsonRpc/JsonRpcRequest.h -------------------------------------------------------------------------------- /src/JsonRpc/JsonRpcResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/JsonRpc/JsonRpcResponse.cpp -------------------------------------------------------------------------------- /src/JsonRpc/JsonRpcResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/JsonRpc/JsonRpcResponse.h -------------------------------------------------------------------------------- /src/Miner/Miner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/Miner/Miner.cpp -------------------------------------------------------------------------------- /src/Miner/Miner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/Miner/Miner.h -------------------------------------------------------------------------------- /src/Miner/StratumClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/Miner/StratumClient.cpp -------------------------------------------------------------------------------- /src/Miner/StratumClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/Miner/StratumClient.h -------------------------------------------------------------------------------- /src/Miner/Worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/Miner/Worker.cpp -------------------------------------------------------------------------------- /src/Miner/Worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/Miner/Worker.h -------------------------------------------------------------------------------- /src/MinerDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/MinerDelegate.cpp -------------------------------------------------------------------------------- /src/MinerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/MinerDelegate.h -------------------------------------------------------------------------------- /src/MinerModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/MinerModel.cpp -------------------------------------------------------------------------------- /src/MinerModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/MinerModel.h -------------------------------------------------------------------------------- /src/MiningFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/MiningFrame.cpp -------------------------------------------------------------------------------- /src/MiningFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/MiningFrame.h -------------------------------------------------------------------------------- /src/MiningFrame.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/MiningFrame.ui -------------------------------------------------------------------------------- /src/MiningManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/MiningManager.cpp -------------------------------------------------------------------------------- /src/MiningManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/MiningManager.h -------------------------------------------------------------------------------- /src/PoolTreeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/PoolTreeView.cpp -------------------------------------------------------------------------------- /src/PoolTreeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/PoolTreeView.h -------------------------------------------------------------------------------- /src/aboutdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/aboutdialog.cpp -------------------------------------------------------------------------------- /src/aboutdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/aboutdialog.h -------------------------------------------------------------------------------- /src/aboutdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/aboutdialog.ui -------------------------------------------------------------------------------- /src/addressbookdelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbookdelegate.cpp -------------------------------------------------------------------------------- /src/addressbookdelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbookdelegate.h -------------------------------------------------------------------------------- /src/addressbookdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbookdialog.cpp -------------------------------------------------------------------------------- /src/addressbookdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbookdialog.h -------------------------------------------------------------------------------- /src/addressbookdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbookdialog.ui -------------------------------------------------------------------------------- /src/addressbookframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbookframe.cpp -------------------------------------------------------------------------------- /src/addressbookframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbookframe.h -------------------------------------------------------------------------------- /src/addressbookframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbookframe.ui -------------------------------------------------------------------------------- /src/addressbookmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbookmanager.cpp -------------------------------------------------------------------------------- /src/addressbookmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbookmanager.h -------------------------------------------------------------------------------- /src/addressbookmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbookmodel.cpp -------------------------------------------------------------------------------- /src/addressbookmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbookmodel.h -------------------------------------------------------------------------------- /src/addressbooksortedmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbooksortedmodel.cpp -------------------------------------------------------------------------------- /src/addressbooksortedmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/addressbooksortedmodel.h -------------------------------------------------------------------------------- /src/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/application.cpp -------------------------------------------------------------------------------- /src/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/application.h -------------------------------------------------------------------------------- /src/askpassworddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/askpassworddialog.cpp -------------------------------------------------------------------------------- /src/askpassworddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/askpassworddialog.h -------------------------------------------------------------------------------- /src/askpassworddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/askpassworddialog.ui -------------------------------------------------------------------------------- /src/balanceoverviewframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/balanceoverviewframe.cpp -------------------------------------------------------------------------------- /src/balanceoverviewframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/balanceoverviewframe.h -------------------------------------------------------------------------------- /src/balanceoverviewframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/balanceoverviewframe.ui -------------------------------------------------------------------------------- /src/bytecoin-gui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/bytecoin-gui.pro -------------------------------------------------------------------------------- /src/bytecoinwallet.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/bytecoinwallet.desktop -------------------------------------------------------------------------------- /src/bytecoinwallet.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/bytecoinwallet.qss -------------------------------------------------------------------------------- /src/bytecoinwallet.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/bytecoinwallet.rc -------------------------------------------------------------------------------- /src/changepassworddialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/changepassworddialog.cpp -------------------------------------------------------------------------------- /src/changepassworddialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/changepassworddialog.h -------------------------------------------------------------------------------- /src/changepassworddialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/changepassworddialog.ui -------------------------------------------------------------------------------- /src/checkproofdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/checkproofdialog.cpp -------------------------------------------------------------------------------- /src/checkproofdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/checkproofdialog.h -------------------------------------------------------------------------------- /src/checkproofdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/checkproofdialog.ui -------------------------------------------------------------------------------- /src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/common.cpp -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/common.h -------------------------------------------------------------------------------- /src/connectionoptionsframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/connectionoptionsframe.cpp -------------------------------------------------------------------------------- /src/connectionoptionsframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/connectionoptionsframe.h -------------------------------------------------------------------------------- /src/connectionoptionsframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/connectionoptionsframe.ui -------------------------------------------------------------------------------- /src/connectselectiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/connectselectiondialog.cpp -------------------------------------------------------------------------------- /src/connectselectiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/connectselectiondialog.h -------------------------------------------------------------------------------- /src/connectselectiondialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/connectselectiondialog.ui -------------------------------------------------------------------------------- /src/crashdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/crashdialog.cpp -------------------------------------------------------------------------------- /src/crashdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/crashdialog.h -------------------------------------------------------------------------------- /src/crashdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/crashdialog.ui -------------------------------------------------------------------------------- /src/createproofdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/createproofdialog.cpp -------------------------------------------------------------------------------- /src/createproofdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/createproofdialog.h -------------------------------------------------------------------------------- /src/createproofdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/createproofdialog.ui -------------------------------------------------------------------------------- /src/elidedlabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/elidedlabel.cpp -------------------------------------------------------------------------------- /src/elidedlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/elidedlabel.h -------------------------------------------------------------------------------- /src/exportkeydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/exportkeydialog.cpp -------------------------------------------------------------------------------- /src/exportkeydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/exportkeydialog.h -------------------------------------------------------------------------------- /src/exportkeydialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/exportkeydialog.ui -------------------------------------------------------------------------------- /src/filedownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/filedownloader.cpp -------------------------------------------------------------------------------- /src/filedownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/filedownloader.h -------------------------------------------------------------------------------- /src/font/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /src/font/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /src/font/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /src/font/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/font/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /src/font/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/OpenSans-Light.ttf -------------------------------------------------------------------------------- /src/font/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /src/font/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /src/font/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /src/font/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-Black.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-BlackItalic.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-Bold.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-BoldItalic.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-ExtraBold.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-ExtraLight.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-Italic.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-Light.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-LightItalic.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-Medium.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-MediumItalic.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-Regular.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-SemiBold.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-Thin.ttf -------------------------------------------------------------------------------- /src/font/WorkSans-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/font/WorkSans-ThinItalic.ttf -------------------------------------------------------------------------------- /src/icons/actual_balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/actual_balance.png -------------------------------------------------------------------------------- /src/icons/address_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/address_book.png -------------------------------------------------------------------------------- /src/icons/address_book_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/address_book_bl.png -------------------------------------------------------------------------------- /src/icons/address_book_bl_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/address_book_bl_disabled.png -------------------------------------------------------------------------------- /src/icons/arrow_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/arrow_circle.png -------------------------------------------------------------------------------- /src/icons/arrow_circle_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/arrow_circle_hover.png -------------------------------------------------------------------------------- /src/icons/arrow_circle_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/arrow_circle_up.png -------------------------------------------------------------------------------- /src/icons/arrow_circle_up_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/arrow_circle_up_hover.png -------------------------------------------------------------------------------- /src/icons/arrow_left_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/arrow_left_black.png -------------------------------------------------------------------------------- /src/icons/arrow_right_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/arrow_right_black.png -------------------------------------------------------------------------------- /src/icons/balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/balance.png -------------------------------------------------------------------------------- /src/icons/balance_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/balance_bl.png -------------------------------------------------------------------------------- /src/icons/balance_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/balance_new.png -------------------------------------------------------------------------------- /src/icons/big_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/big_arrow.png -------------------------------------------------------------------------------- /src/icons/big_arrow_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/big_arrow_black.png -------------------------------------------------------------------------------- /src/icons/block_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/block_explorer.png -------------------------------------------------------------------------------- /src/icons/block_explorer_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/block_explorer_bl.png -------------------------------------------------------------------------------- /src/icons/block_explorer_bl_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/block_explorer_bl_disabled.png -------------------------------------------------------------------------------- /src/icons/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/blog.png -------------------------------------------------------------------------------- /src/icons/connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/connected.png -------------------------------------------------------------------------------- /src/icons/connected_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/connected_bl.png -------------------------------------------------------------------------------- /src/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/copy.png -------------------------------------------------------------------------------- /src/icons/delete_pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/delete_pool.png -------------------------------------------------------------------------------- /src/icons/delete_pool_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/delete_pool_hover.png -------------------------------------------------------------------------------- /src/icons/disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/disconnected.png -------------------------------------------------------------------------------- /src/icons/disconnected_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/disconnected_bl.png -------------------------------------------------------------------------------- /src/icons/donation_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/donation_address.png -------------------------------------------------------------------------------- /src/icons/donation_address_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/donation_address_small.png -------------------------------------------------------------------------------- /src/icons/donation_clock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/donation_clock1.png -------------------------------------------------------------------------------- /src/icons/donation_clock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/donation_clock2.png -------------------------------------------------------------------------------- /src/icons/donation_clock3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/donation_clock3.png -------------------------------------------------------------------------------- /src/icons/donation_clock4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/donation_clock4.png -------------------------------------------------------------------------------- /src/icons/donation_clock5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/donation_clock5.png -------------------------------------------------------------------------------- /src/icons/donation_confirmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/donation_confirmed.png -------------------------------------------------------------------------------- /src/icons/donation_unconfirmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/donation_unconfirmed.png -------------------------------------------------------------------------------- /src/icons/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/down-arrow.png -------------------------------------------------------------------------------- /src/icons/inp_clock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/inp_clock1.png -------------------------------------------------------------------------------- /src/icons/inp_clock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/inp_clock2.png -------------------------------------------------------------------------------- /src/icons/inp_clock3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/inp_clock3.png -------------------------------------------------------------------------------- /src/icons/inp_clock4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/inp_clock4.png -------------------------------------------------------------------------------- /src/icons/inp_clock5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/inp_clock5.png -------------------------------------------------------------------------------- /src/icons/inp_confirmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/inp_confirmed.png -------------------------------------------------------------------------------- /src/icons/inp_unconfirmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/inp_unconfirmed.png -------------------------------------------------------------------------------- /src/icons/lock_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/lock_closed.png -------------------------------------------------------------------------------- /src/icons/lock_closed_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/lock_closed_bl.png -------------------------------------------------------------------------------- /src/icons/lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/lock_open.png -------------------------------------------------------------------------------- /src/icons/lock_open_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/lock_open_bl.png -------------------------------------------------------------------------------- /src/icons/lock_open_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/lock_open_gray.png -------------------------------------------------------------------------------- /src/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/logo.png -------------------------------------------------------------------------------- /src/icons/logo_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/logo_bl.png -------------------------------------------------------------------------------- /src/icons/logo_stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/logo_stage.png -------------------------------------------------------------------------------- /src/icons/logo_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/logo_test.png -------------------------------------------------------------------------------- /src/icons/mined_clock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/mined_clock1.png -------------------------------------------------------------------------------- /src/icons/mined_clock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/mined_clock2.png -------------------------------------------------------------------------------- /src/icons/mined_clock3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/mined_clock3.png -------------------------------------------------------------------------------- /src/icons/mined_clock4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/mined_clock4.png -------------------------------------------------------------------------------- /src/icons/mined_clock5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/mined_clock5.png -------------------------------------------------------------------------------- /src/icons/mined_confirmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/mined_confirmed.png -------------------------------------------------------------------------------- /src/icons/miner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/miner.png -------------------------------------------------------------------------------- /src/icons/miner_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/miner_big.png -------------------------------------------------------------------------------- /src/icons/miner_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/miner_bl.png -------------------------------------------------------------------------------- /src/icons/miner_bl_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/miner_bl_disabled.png -------------------------------------------------------------------------------- /src/icons/mining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/mining.png -------------------------------------------------------------------------------- /src/icons/not_synced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/not_synced.png -------------------------------------------------------------------------------- /src/icons/opt_confirmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/opt_confirmed.png -------------------------------------------------------------------------------- /src/icons/out_clock1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/out_clock1.png -------------------------------------------------------------------------------- /src/icons/out_clock2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/out_clock2.png -------------------------------------------------------------------------------- /src/icons/out_clock3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/out_clock3.png -------------------------------------------------------------------------------- /src/icons/out_clock4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/out_clock4.png -------------------------------------------------------------------------------- /src/icons/out_clock5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/out_clock5.png -------------------------------------------------------------------------------- /src/icons/out_confirmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/out_confirmed.png -------------------------------------------------------------------------------- /src/icons/out_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/out_failed.png -------------------------------------------------------------------------------- /src/icons/out_unconfirmed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/out_unconfirmed.png -------------------------------------------------------------------------------- /src/icons/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/overview.png -------------------------------------------------------------------------------- /src/icons/overview_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/overview_bl.png -------------------------------------------------------------------------------- /src/icons/overview_bl_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/overview_bl_disabled.png -------------------------------------------------------------------------------- /src/icons/pending_balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/pending_balance.png -------------------------------------------------------------------------------- /src/icons/pool_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/pool_stats.png -------------------------------------------------------------------------------- /src/icons/scroll_news_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/scroll_news_down.png -------------------------------------------------------------------------------- /src/icons/scroll_news_down_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/scroll_news_down_hover.png -------------------------------------------------------------------------------- /src/icons/scroll_news_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/scroll_news_up.png -------------------------------------------------------------------------------- /src/icons/scroll_news_up_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/scroll_news_up_hover.png -------------------------------------------------------------------------------- /src/icons/send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/send.png -------------------------------------------------------------------------------- /src/icons/send_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/send_bl.png -------------------------------------------------------------------------------- /src/icons/send_bl_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/send_bl_disabled.png -------------------------------------------------------------------------------- /src/icons/slider_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/slider_handle.png -------------------------------------------------------------------------------- /src/icons/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/start.png -------------------------------------------------------------------------------- /src/icons/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/stop.png -------------------------------------------------------------------------------- /src/icons/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/sync.png -------------------------------------------------------------------------------- /src/icons/sync_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/sync_bl.png -------------------------------------------------------------------------------- /src/icons/sync_lag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/sync_lag.png -------------------------------------------------------------------------------- /src/icons/sync_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/sync_sprite.png -------------------------------------------------------------------------------- /src/icons/sync_sprite_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/sync_sprite_bl.png -------------------------------------------------------------------------------- /src/icons/synced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/synced.png -------------------------------------------------------------------------------- /src/icons/synced_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/synced_bl.png -------------------------------------------------------------------------------- /src/icons/total_balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/total_balance.png -------------------------------------------------------------------------------- /src/icons/transactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/transactions.png -------------------------------------------------------------------------------- /src/icons/transactions_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/transactions_bl.png -------------------------------------------------------------------------------- /src/icons/transactions_bl_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/transactions_bl_disabled.png -------------------------------------------------------------------------------- /src/icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/twitter.png -------------------------------------------------------------------------------- /src/icons/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/up-arrow.png -------------------------------------------------------------------------------- /src/icons/up_big_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/up_big_arrow.png -------------------------------------------------------------------------------- /src/icons/up_big_arrow_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/up_big_arrow_black.png -------------------------------------------------------------------------------- /src/icons/wallet_sync.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/wallet_sync.gif -------------------------------------------------------------------------------- /src/icons/wallet_sync_dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/icons/wallet_sync_dark.gif -------------------------------------------------------------------------------- /src/images/add_address_helper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/images/add_address_helper.png -------------------------------------------------------------------------------- /src/images/bytecoin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/images/bytecoin.icns -------------------------------------------------------------------------------- /src/images/bytecoin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/images/bytecoin.ico -------------------------------------------------------------------------------- /src/images/bytecoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/images/bytecoin.png -------------------------------------------------------------------------------- /src/images/bytecoin_stage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/images/bytecoin_stage.png -------------------------------------------------------------------------------- /src/images/bytecoin_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/images/bytecoin_test.png -------------------------------------------------------------------------------- /src/images/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/images/splash.png -------------------------------------------------------------------------------- /src/importkeydialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/importkeydialog.cpp -------------------------------------------------------------------------------- /src/importkeydialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/importkeydialog.h -------------------------------------------------------------------------------- /src/importkeydialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/importkeydialog.ui -------------------------------------------------------------------------------- /src/logframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/logframe.cpp -------------------------------------------------------------------------------- /src/logframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/logframe.h -------------------------------------------------------------------------------- /src/logframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/logframe.ui -------------------------------------------------------------------------------- /src/logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/logger.cpp -------------------------------------------------------------------------------- /src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/logger.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/mainwindow.cpp -------------------------------------------------------------------------------- /src/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/mainwindow.h -------------------------------------------------------------------------------- /src/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/mainwindow.ui -------------------------------------------------------------------------------- /src/miningoverviewframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/miningoverviewframe.cpp -------------------------------------------------------------------------------- /src/miningoverviewframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/miningoverviewframe.h -------------------------------------------------------------------------------- /src/miningoverviewframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/miningoverviewframe.ui -------------------------------------------------------------------------------- /src/mnemonicdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/mnemonicdialog.cpp -------------------------------------------------------------------------------- /src/mnemonicdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/mnemonicdialog.h -------------------------------------------------------------------------------- /src/mnemonicdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/mnemonicdialog.ui -------------------------------------------------------------------------------- /src/myaddressesframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/myaddressesframe.cpp -------------------------------------------------------------------------------- /src/myaddressesframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/myaddressesframe.h -------------------------------------------------------------------------------- /src/myaddressesframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/myaddressesframe.ui -------------------------------------------------------------------------------- /src/newaddressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/newaddressdialog.cpp -------------------------------------------------------------------------------- /src/newaddressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/newaddressdialog.h -------------------------------------------------------------------------------- /src/newaddressdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/newaddressdialog.ui -------------------------------------------------------------------------------- /src/newmyaddressdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/newmyaddressdialog.cpp -------------------------------------------------------------------------------- /src/newmyaddressdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/newmyaddressdialog.h -------------------------------------------------------------------------------- /src/newmyaddressdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/newmyaddressdialog.ui -------------------------------------------------------------------------------- /src/okbutton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/okbutton.cpp -------------------------------------------------------------------------------- /src/okbutton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/okbutton.h -------------------------------------------------------------------------------- /src/optionsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/optionsdialog.ui -------------------------------------------------------------------------------- /src/overviewframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/overviewframe.cpp -------------------------------------------------------------------------------- /src/overviewframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/overviewframe.h -------------------------------------------------------------------------------- /src/overviewframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/overviewframe.ui -------------------------------------------------------------------------------- /src/popup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/popup.cpp -------------------------------------------------------------------------------- /src/popup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/popup.h -------------------------------------------------------------------------------- /src/progressbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/progressbar.cpp -------------------------------------------------------------------------------- /src/progressbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/progressbar.h -------------------------------------------------------------------------------- /src/questiondialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/questiondialog.cpp -------------------------------------------------------------------------------- /src/questiondialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/questiondialog.h -------------------------------------------------------------------------------- /src/questiondialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/questiondialog.ui -------------------------------------------------------------------------------- /src/resizablescrollarea.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/resizablescrollarea.cpp -------------------------------------------------------------------------------- /src/resizablescrollarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/resizablescrollarea.h -------------------------------------------------------------------------------- /src/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/resources.qrc -------------------------------------------------------------------------------- /src/rpcapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/rpcapi.cpp -------------------------------------------------------------------------------- /src/rpcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/rpcapi.h -------------------------------------------------------------------------------- /src/sendconfirmationdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/sendconfirmationdialog.cpp -------------------------------------------------------------------------------- /src/sendconfirmationdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/sendconfirmationdialog.h -------------------------------------------------------------------------------- /src/sendframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/sendframe.cpp -------------------------------------------------------------------------------- /src/sendframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/sendframe.h -------------------------------------------------------------------------------- /src/sendframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/sendframe.ui -------------------------------------------------------------------------------- /src/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/settings.cpp -------------------------------------------------------------------------------- /src/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/settings.h -------------------------------------------------------------------------------- /src/signalhandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/signalhandler.cpp -------------------------------------------------------------------------------- /src/signalhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/signalhandler.h -------------------------------------------------------------------------------- /src/statusbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/statusbar.cpp -------------------------------------------------------------------------------- /src/statusbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/statusbar.h -------------------------------------------------------------------------------- /src/transferframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/transferframe.cpp -------------------------------------------------------------------------------- /src/transferframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/transferframe.h -------------------------------------------------------------------------------- /src/transferframe.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/transferframe.ui -------------------------------------------------------------------------------- /src/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/version.cpp -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/version.h -------------------------------------------------------------------------------- /src/walletd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/walletd.cpp -------------------------------------------------------------------------------- /src/walletd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/walletd.h -------------------------------------------------------------------------------- /src/walletdparamsdialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/walletdparamsdialog.cpp -------------------------------------------------------------------------------- /src/walletdparamsdialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/walletdparamsdialog.h -------------------------------------------------------------------------------- /src/walletdparamsdialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/walletdparamsdialog.ui -------------------------------------------------------------------------------- /src/walletmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/walletmodel.cpp -------------------------------------------------------------------------------- /src/walletmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/walletmodel.h -------------------------------------------------------------------------------- /src/windoweditemmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/windoweditemmodel.cpp -------------------------------------------------------------------------------- /src/windoweditemmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcndev/bytecoin-gui/HEAD/src/windoweditemmodel.h --------------------------------------------------------------------------------