CHANGELOG 2.5 KB

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