Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge bitcoin-core#398: Using a different configuration file name fro…
…m QT 5be1e52 qml, refactoring: Separate guiconstants from QT (pablomartin4btc) Pull request description: At the moment both QT and QML gui apps are using the same naming convention for configuration files (`Bitcoin*.conf`), so separating `guiconstants.h` file from QT, copying it from `src/qt` to `src/qml` and updating `QAPP_APP_NAME_*` constants values will avoid them clashing with each other trying to persist/ read same or different settings (e.g. configuration file for QT on signet will be still named as `Bitcoin-Qt-signet.conf`, as of today, while QML will start using a separate file named `Bitcoin-Qml-signet.conf` - before this fix, currently sometimes a user can get a warning on reading incorrect settings or values: `QVariant::load: unknown user type with name BitcoinUnits::Unit.`). This could be a temporary fix (? - gui constants file contents has been cleaned up as [suggested](bitcoin-core#398 (comment))) so instances from both QT and QML gui apps don't interfere between them during QML development. This change will be transparent for both QT gui app and users. <details> <summary>Sample of a separate QT config file on <code>signet</code> (<code>Bitcoin-Qt-signet.conf</code>).</summary> ``` [General] DisplayBitcoinUnit=@variant(\0\0\0\x7f\0\0\0\x13\x42itcoinUnits::Unit\0\0) MainWindowGeometry=@bytearray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x2\xa3\0\0\x1v\0\0\x5\xb0\0\0\x3^\0\0\x2\xa3\0\0\x1v\0\0\x5\xb0\0\0\x3^\0\0\0\0\0\0\0\0\a\x80\0\0\x2\xa3\0\0\x1v\0\0\x5\xb0\0\0\x3^) PeersTabBanlistHeaderState=@bytearray() PeersTabPeerHeaderState=@bytearray() RPCConsoleWindowGeometry=@bytearray(\x1\xd9\xd0\xcb\0\x3\0\0\0\0\x2q\0\0\x1\x8f\0\0\x5T\0\0\x3<\0\0\x2q\0\0\x1\x8f\0\0\x5T\0\0\x3<\0\0\0\0\0\0\0\0\a\x80\0\0\x2q\0\0\x1\x8f\0\0\x5T\0\0\x3<) RPCConsoleWindowPeersTabSplitterSizes=@bytearray(\0\0\0\xff\0\0\0\x1\0\0\0\x2\xff\xff\xff\xff\xff\xff\xff\xff\0\xff\xff\xff\xff\x1\0\0\0\x1\0) SubFeeFromAmount=false enable_psbt_controls=false fCoinControlFeatures=false fHideTrayIcon=false fMinimizeOnClose=false fMinimizeToTray=false fRestartRequired=false nSettingsVersion=279900 strDataDir=/home/pablo/.bitcoin strThirdPartyTxUrls= ``` </details> <details> <summary>Sample of a separate QML config file on <code>signet</code> (<code>Bitcoin-Qml-signet.conf</code>).</summary> ``` [General] blockclocksize=0.4166666666666667 dark=true height=665 width=640 x=755 y=339 ``` </details> Top commit has no ACKs. Tree-SHA512: ce738a21488ac8fae9187fe6eec57e53ae77c18c91190c0ab199d63071fec830152a5f9d54132cc99d94b8c6f42224a6f8c0062bac06af82e5ca670a490e6596
- Loading branch information