CHANGELOG 3.2 KB

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