<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/CMakeLists.txt, branch v0.12.2.0</title>
<subtitle>Monzero core node, command-line wallet, consensus code, and release tooling.
</subtitle>
<id>https://code.monzero.org/monzero-core.git/atom?h=v0.12.2.0</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.12.2.0'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2018-05-25T05:33:23Z</updated>
<entry>
<title>rapidjson: remove outdated in-tree, use submodule</title>
<updated>2018-05-25T05:33:23Z</updated>
<author>
<name>anonimal</name>
<email>anonimal@i2pmail.org</email>
</author>
<published>2018-05-25T04:50:20Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=f6687c3ed864a824b47d3f5e5b6c1401ab12c97b'/>
<id>urn:sha1:f6687c3ed864a824b47d3f5e5b6c1401ab12c97b</id>
<content type='text'>
Includes ~2 years worth of fixes including security and build.

Note: this pulls directly from master, not a release branch/tag. See
https://github.com/Tencent/rapidjson/issues/1265

(cherry picked from commit 8a6c081df71cde3f1c55d5b7e5ef7d5d34b475dc)
</content>
</entry>
<entry>
<title>Fix PCSC discovery under Windows/MSYS</title>
<updated>2018-05-22T17:43:49Z</updated>
<author>
<name>cslashm</name>
<email>cslashm@gmail.com</email>
</author>
<published>2018-05-22T14:02:00Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=e05a17f1ea4af53f037c492bd3e97dd76f1e094c'/>
<id>urn:sha1:e05a17f1ea4af53f037c492bd3e97dd76f1e094c</id>
<content type='text'>
Fix PCSC compilation under windows
</content>
</entry>
<entry>
<title>Build: update CMake and p2p for in-tree miniupnp</title>
<updated>2018-04-23T22:12:08Z</updated>
<author>
<name>anonimal</name>
<email>anonimal@i2pmail.org</email>
</author>
<published>2018-04-21T09:30:55Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=1e20d705e7c64d2b17c031f345057d1e8850fafa'/>
<id>urn:sha1:1e20d705e7c64d2b17c031f345057d1e8850fafa</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Adjust to the MSYS2/MinGW static ICU library file renaming</title>
<updated>2018-03-08T18:10:44Z</updated>
<author>
<name>rbrunner7</name>
<email>rbrunner@dreamshare.ch</email>
</author>
<published>2018-03-08T18:10:44Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=733deab249c59b6ef2145b69759eb82ffa34924d'/>
<id>urn:sha1:733deab249c59b6ef2145b69759eb82ffa34924d</id>
<content type='text'>
In package mingw-w64-x86_64-icu, version 58.2-3, the names of static
library files were changed, which leads to changes in CMakeLists.txt as
needed for compiling for Windows.
</content>
</entry>
<entry>
<title>Merge pull request #3313</title>
<updated>2018-03-05T17:15:54Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2018-03-05T17:15:54Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=237f0179b70eb795772e815f2e9ff6f056f53c22'/>
<id>urn:sha1:237f0179b70eb795772e815f2e9ff6f056f53c22</id>
<content type='text'>
43026822 Wallet2 + CLI wallet: UTF-8 support for filenames and paths under Windows (rbrunner7)
</content>
</entry>
<entry>
<title>Correct spelling mistakes.</title>
<updated>2018-03-05T17:00:40Z</updated>
<author>
<name>Edward Betts</name>
<email>edward@4angle.com</email>
</author>
<published>2018-01-19T07:54:14Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=fbcc91c2a42a3e72d5d4cbaa95294927d1f78d4f'/>
<id>urn:sha1:fbcc91c2a42a3e72d5d4cbaa95294927d1f78d4f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Code modifications to integrate Ledger HW device into monero-wallet-cli.</title>
<updated>2018-03-04T11:54:53Z</updated>
<author>
<name>cslashm</name>
<email>cslashm@gmail.com</email>
</author>
<published>2018-02-20T16:01:27Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=e745c1e38da8e54032660894bb2db0e9a49cccf2'/>
<id>urn:sha1:e745c1e38da8e54032660894bb2db0e9a49cccf2</id>
<content type='text'>
The basic approach it to delegate all sensitive data (master key, secret
ephemeral key, key derivation, ....) and related operations to the device.
As device has low memory, it does not keep itself the values
(except for view/spend keys) but once computed there are encrypted (with AES
are equivalent) and return back to monero-wallet-cli. When they need to be
manipulated by the device, they are decrypted on receive.

Moreover, using the client for storing the value in encrypted form limits
the modification in the client code. Those values are transfered from one
C-structure to another one as previously.

The code modification has been done with the wishes to be open to any
other hardware wallet. To achieve that a C++ class hw::Device has been
introduced. Two initial implementations are provided: the "default", which
remaps all calls to initial Monero code, and  the "Ledger", which delegates
all calls to Ledger device.
</content>
</entry>
<entry>
<title>Wallet2 + CLI wallet: UTF-8 support for filenames and paths under Windows</title>
<updated>2018-02-25T11:57:58Z</updated>
<author>
<name>rbrunner7</name>
<email>rbrunner@dreamshare.ch</email>
</author>
<published>2018-02-22T18:52:55Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=430268224d71bfc6a359f20c6db712462ce0bb25'/>
<id>urn:sha1:430268224d71bfc6a359f20c6db712462ce0bb25</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Merge pull request #3195</title>
<updated>2018-02-16T13:20:46Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2018-02-16T13:20:46Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=172b7824d1d0c37867e49a2b6167f9bcf3a365ea'/>
<id>urn:sha1:172b7824d1d0c37867e49a2b6167f9bcf3a365ea</id>
<content type='text'>
9017084a cmake: add -DHAVE_ defines to the command line (moneromooo-monero)
</content>
</entry>
<entry>
<title>cmake: add -DHAVE_ defines to the command line</title>
<updated>2018-01-28T08:57:51Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2018-01-28T08:57:51Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=9017084a7bd89e2bf6384757720dc1277718b9c1'/>
<id>urn:sha1:9017084a7bd89e2bf6384757720dc1277718b9c1</id>
<content type='text'>
since there's no config.h here
</content>
</entry>
</feed>
