moon6969

Results 18 comments of moon6969

After further investigation, my issue was caused since Python 2.7 no longer support 'sets' module - it has been replaced with builtin set/frozenset commands. Crude fix for [WINPDB_1_5_0 release](https://github.com/bluebird75/winpdb/releases/tag/WINPDB_1_5_0)... Comment...

OK it's an extra byte for HID Report ID for HID transfers as discussed here... https://melbournedeveloper.github.io/Device.Net/articles/HidTransfer.html Might be worth a comment in TrezorExample.cs to nudge USB novices in the right...

Thank you for quick reply. This issue was raised to vscode for similar issue with Python debugger... [In debug mode, arguments are by default collapsed #32199](https://github.com/Microsoft/vscode/issues/32199) In particular this comment...

It appears to automatically translate reasonably well... https://translate.google.co.uk/translate?sl=zh-CN&tl=en&u=https%3A%2F%2Fgithub.com%2Factboy168%2Flua-debug

> I don't know that this is the best of place to apply your "rusty" C++ skills. Totally agree! I don't have the skill-set or indeed time for such an...

Thanks both - consistently propagating Exiv2::Error definitely seems the way to go. I suspect it will make some users of the library squirm though if exceptions start popping up where...

[Exiv2::XmpParser::decode() API](https://exiv2.org/doc/classExiv2_1_1XmpParser.html#ac54d21020cdcd70145fdb256a6b75a1d) (and similarly for encode) states: > Returns > 0 if successful; > 1 if XMP support has not been compiled-in; > 2 if the XMP toolkit failed to...

@clanmills Like your thinking - will have a stab at it over the weekend. **`Exiv2::XmpParser::encode`** needs the same encodeOrThrow() treatment as `decode`. The only other xmp.cpp function that needs some...

I'm stuck in London for the duration. Your steak comment struck a chord... `🥩 | :cut_of_meat:`

Just noticed in xmp_exiv2.hpp that XmpParser::registerNs is private and returns void... ``` private: ... static void registerNs(const std::string& ns, const std::string& prefix); ``` So I think no need for registerNsOrThrow().