CHANGELOG 3.8 KB

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