-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from Profpatsch/master
add CHANGELOG.md
- Loading branch information
Showing
1 changed file
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] | ||
### Added | ||
- `CHANGELOG.md` | ||
|
||
## [1.1] - 2017-01-11 | ||
### Added | ||
- Autodetect the number of CPUs available <[email protected]> | ||
- Option for source string added to torrent info (`-s`), included in infohash. | ||
Often used by private trackers to create a unique infohash to prevent | ||
peer-leak and the possibility to track the trackers that do use leaked | ||
torrents. Having this option in mktorrent make it possible to create a | ||
infohash accurate torrent to the tracker you want to upload it to | ||
### Changed | ||
- Make`-a` (announce list) optional | ||
- Optional announce URL even for private torrents. No need to require announce | ||
for private torrents, they are added by most private trackers anyway and they | ||
modify the infohash so you'd have to redownload their modified torrent with | ||
injected unique announce URL anyway. (@mathieui, fix from @jrwren) | ||
### Fixed | ||
- DHT makes trackers optional, so remove the warning | ||
|
||
## [1.0] - 2009-08-25 | ||
### Added | ||
- Add an exception to the license to allow distributions to link mktorrent to the OpenSSL library | ||
|
||
## [0.7] - 2009-05-31 | ||
### Fixed | ||
- Proper support for large files on certain 32bit OS's. | ||
Finally mktorrent properly handles files larger than 2Gb on 32bit Linux. | ||
Fixes for use on Windows under MinGW/Cygwin. | ||
|
||
## [0.6] - 2009-05-13 | ||
### Added | ||
- Support for multiple web seeds | ||
### Changed | ||
- Raised allowable piece size | ||
- Only add the announce-list entry if there are more than one tracker. | ||
Thanks to Vladimir Vučićević for reporting. | ||
- Include public domain SHA1 implementation to make the OpenSSL dependency optional. | ||
- Lots of portability improvements. Now compiles on Linux, MinGW, OpenBSD, OSX, | ||
SunOS and probably many more. A big thanks to Edwin Amsler for reporting and | ||
testing. | ||
- Rewrote multi threaded hashing to optimise CPU usage on multi processor machines | ||
|
||
## [0.5] - 2009-03-01 | ||
### Added | ||
- Support for multiple trackers | ||
- Support for web seed (thanks to Justin Camerer) | ||
### Changed | ||
- Better error messages | ||
|
||
## [0.4] - 2009-02-22 | ||
### Added | ||
- Support for the private flag | ||
|
||
## [0.3] - 2009-02-22 | ||
### Fixed | ||
- Bug concerning files longer than 2^32 bytes | ||
- Command line parameters | ||
|
||
## [0.2] - 2009-02-22 | ||
### Added | ||
- Support for single file torrents | ||
- Support for long options can now be disabled at compile time | ||
|
||
## [0.1] - 2009-02-22 | ||
Initial release |