CHANGELOG 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. 0.6.3
  2. ---
  3. * Set an empty description for videos that don't have on (e.g. private videos), thus
  4. avoiding an IndexError-exception in youtubeAPI.py
  5. 0.6.2
  6. ---
  7. * Don't display that the notification method couldn't be determined if no videos where downloaded
  8. 0.6.1
  9. ---
  10. * Also catch smtplib.SMTPServerDisconnected if smtp server does close the connection
  11. * Print downloaded videos if sending the email fails
  12. 0.6
  13. ---
  14. * Set dependency to python >= 2.6 in debian/control
  15. * Fixed package internal import for python 3.x
  16. * Locales are now build in debian/rules when creating the package
  17. * Changed debian/control and debian/rules to be more lintian clean
  18. * Added a complete man page, making the package finally lintian clean
  19. 0.5
  20. ----
  21. * Switched to distutils setup.py as installation method
  22. * Added scripts to build a Debian package
  23. 0.4
  24. ----
  25. * Added title checking to filter unrelated results from subscriptions with search strings
  26. * Python 3 is now also supported
  27. * Fixed localization so stov doesn't default to German any more
  28. * SIGINT and SIGTERM are now catched and are correctly processed internally
  29. 0.3
  30. ----
  31. * Added smtp authentication
  32. * Added notify option
  33. * Added "verbose" and "quiet" output modes
  34. * Added switch to clean the database of old video entries
  35. * Added maxfails option and mark videos as permanently failed when that value is reached
  36. * Added basic interactive configuration (doesn't check if your input makes sense at all!)
  37. * Added German translation for most parts
  38. * Implemented MAXVIDEOS configuration option to limit the number of videos retrieved from the youtube API
  39. * Changed --lsvids to print the download status
  40. * Made the youtube-dl output shown to the user depend on the defined output level
  41. * Now uses youtube API version 2
  42. * Fixed situation when all videos fail and the output would have suggested there were no videos to be downloaded
  43. * Fixed a bug that lead to a duplicate subscription when a playlist was added
  44. * Fixed error message printed when youtube-dl fails
  45. * Improved output behaviour so strings will be properly encoded
  46. 0.2
  47. ----
  48. * Added catchup option
  49. * Added option to print license information
  50. * Added option to print version number
  51. * Added a simple installer script
  52. * Changed coding style to better conform to PEP-8
  53. * Updated module usage: Use urllib2 instead of urllib and subprocess instead of os.system
  54. * Many Bugfixes
  55. 0.1
  56. ----
  57. * Initial release