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
Version 4.2.2
- Fix a bug that was introduced in 4.2.0. Instead of forcibly decoding all
encodings as UTF-8, go back to defaulting to undecoded bytes (like before)
and only perform a decode-and-replace-invalid-characters routine on known
strings like ["info"]["name"].
Version 4.2.0
- When reading torrent files, strings are now always decoded as UTF-8 (except
for ["info"]["pieces"]). This makes it harder to store binary data in
non-standard fields, but it also means ["info"]["name"] is always a unicode
string.
- Allow any piece "piece length" that is divisible by 16 KiB.
Previously power of 2 was required.
Version 4.1.3
- Try to reduce memory usage before being out of memory.
- Terminate piece hashing threads if they are idle for more than
500 milliseconds.