You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge bitcoin#22724: windres: use PACKAGE_VERSION rather than building more version numbers
f12fbad windres: use PACKAGE_VERSION rather than building more version numbers (fanquake)
Pull request description:
Rather than defining more strings, reuse PACKAGE_VERSION, which is already available.
We also already use PACKAGE_VERSION for `ProductVersion` and `FileVersion` in setup.nsi.
ACKs for top commit:
MarcoFalke:
cr ACK f12fbad
laanwj:
Code review ACK f12fbad
Tree-SHA512: b74a37cbba105d208d4da9264d295d7e052009fdd6b0ed54a0d9968bbe2deeba1766d6d310438b2939a81555faa0cbd67d5e53f0c8a2de669ce56353c1c67d22
VALUE "FileDescription", "bitcoin-cli (JSON-RPC client for " PACKAGE_NAME ")"
21
-
VALUE "FileVersion", VER_FILEVERSION_STR
19
+
VALUE "FileVersion", PACKAGE_VERSION
22
20
VALUE "InternalName", "bitcoin-cli"
23
21
VALUE "LegalCopyright", COPYRIGHT_STR
24
22
VALUE "LegalTrademarks1", "Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php."
VALUE "FileDescription", "bitcoin-tx (CLI Bitcoin transaction editor utility)"
21
-
VALUE "FileVersion", VER_FILEVERSION_STR
19
+
VALUE "FileVersion", PACKAGE_VERSION
22
20
VALUE "InternalName", "bitcoin-tx"
23
21
VALUE "LegalCopyright", COPYRIGHT_STR
24
22
VALUE "LegalTrademarks1", "Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php."
VALUE "FileDescription", "bitcoin-util (CLI Bitcoin utility)"
21
-
VALUE "FileVersion", VER_FILEVERSION_STR
19
+
VALUE "FileVersion", PACKAGE_VERSION
22
20
VALUE "InternalName", "bitcoin-util"
23
21
VALUE "LegalCopyright", COPYRIGHT_STR
24
22
VALUE "LegalTrademarks1", "Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php."
VALUE "FileDescription", "bitcoin-wallet (CLI tool for " PACKAGE_NAME " wallets)"
21
-
VALUE "FileVersion", VER_FILEVERSION_STR
19
+
VALUE "FileVersion", PACKAGE_VERSION
22
20
VALUE "InternalName", "bitcoin-wallet"
23
21
VALUE "LegalCopyright", COPYRIGHT_STR
24
22
VALUE "LegalTrademarks1", "Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php."
VALUE "FileDescription", "bitcoind (Bitcoin node with a JSON-RPC server)"
21
-
VALUE "FileVersion", VER_FILEVERSION_STR
19
+
VALUE "FileVersion", PACKAGE_VERSION
22
20
VALUE "InternalName", "bitcoind"
23
21
VALUE "LegalCopyright", COPYRIGHT_STR
24
22
VALUE "LegalTrademarks1", "Distributed under the MIT software license, see the accompanying file COPYING or http://www.opensource.org/licenses/mit-license.php."
0 commit comments