CHANGELOG 4.7 KB

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