CHANGELOG 2.6 KB

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