Results 40 comments of Aleksey Kravchenko

it works with option: pgpsigurlmangle=s/archive\/(v?\d\S+)\.tar\.gz/releases\/download\/$1\/$1\.tar\.gz\.asc/ but you must upload asc signature manually to the related github release.

@kyle0r, thanks for the good idea. Both options should be added. Here are some thoughts. The first option can be named --show-missing (alternatively: --print-missing or --only-missing). It should work in...

CppDoc2 was a good utility for generating JavaDoc-style documentation from sources. Regrettably its website cppdoc.com has expired in 2016. The last accessible version is https://web.archive.org/web/20151029190831/http://www.cppdoc.com/ . We should drop cppdoc...

@JPeterMugaas cmake build fails on Ubuntu: > $ cmake . > -- The C compiler identification is GNU 5.4.0 > -- The CXX compiler identification is GNU 5.4.0 > --...

Hello, thank for fixing issues. I'm very busy with RL now, but I plan to review the pull request in the next coming months.

RHash works as designed, all paths parsed from a hash file are trimmed (i.e. trailing and starting spaces are removed). This is done to simplify parsing of hash files. Hash...

Implemented feature #97 has not solved the problem with spaces, since space is not considered a special character. One possible solution is to copy behavior of GNU md5sum, which honours...

It's an interesting feature request. It can be implemented by serializing internal librhash state into a "partly hashed" file. But for now it's a low priority FR, so not sure...

The files listed in a hash file can vary greatly in size. So the speed calculated by the count of lines will be essentially nonuniform. This can be mitigated if...

Thanks for reporitng the problem. The bug is reconfirmed. RHash fails to verify 'd'$'\n''e', although successfully verifies 'd'$'\r''e' on Linux. Also filenames in verification results and errors are displayed unescaped:...