ChangeLog 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. Version 2.0.10 (July 22, 2018)
  2. ------------------------------
  3. * Avoid browser caching issues when assets changes
  4. * Add Gzip/Deflate compression for HTML, JSON, CSS and Javascript responses
  5. * Improve themes handling
  6. * Store user theme in session
  7. * Logged out users will keep their theme
  8. * Add theme background color to web manifest and meta tag
  9. * Update application icon with different sizes
  10. * Add support for published tag in Atom feeds
  11. * Add tooltip to feed domain in feeds list (title attribute)
  12. * Prevent vertical scrolling on swipe
  13. * Show feed title instead of domain in items list
  14. * Add service worker to cache feed icons
  15. * Make image proxy configurable via IMAGE_PROXY environment variable:
  16. * none = No proxy
  17. * http-only = Proxy only non-HTTPS images (default)
  18. * all = Proxy everything
  19. * Add alt attribute for feed icons
  20. * Update CI jshint check
  21. * Add embedly.com to iframe whitelist
  22. * Use passive event listeners for touch events
  23. * Add `add_dynamic_image` rewriter for JavaScript-loaded images
  24. * Change feed password field type to text to avoid auto-completion with Firefox
  25. * Using autocomplete="off" or autocomplete="new-password" doesn't change anything
  26. * Changing the input ID doesn't change anything
  27. * Using a different input name doesn't change anything
  28. * Only Chrome supports autocomplete="new-password"
  29. * Add base URL validation
  30. * Update default stylesheet name in HTML layout
  31. * Pre-generate themes stylesheets at build time
  32. * Update vendor dependencies
  33. * Refactor assets bundler and split Javascript files
  34. * Run sanitizer after all processing and entry content rewrite
  35. * Remove timestamp from generated files
  36. * Add support for protocol relative YouTube URLs
  37. * Add Postgres full-text search for entries
  38. * Add search form in user interface
  39. * Add search parameter to the API
  40. * Improve Dutch locales
  41. * Sandbox iframes when sanitizing
  42. * Keep consistent text size on mobile orientation change
  43. * Change permission of /etc/miniflux.conf to 600 instead of 644 in RPM package
  44. * Add tzdata package to Docker image
  45. * Update Docker image to Alpine Linux 3.8
  46. Version 2.0.9 (July 1, 2018)
  47. ----------------------------
  48. * Avoid Chrome to autocomplete no-login password fields
  49. * Add cli flag to reset all feed errors
  50. * Do not ignore errored feeds when a user refresh feeds manually
  51. * Add specific 404 and 401 error messages
  52. * Strip binaries to reduce size
  53. * Make sure we always get the pagination in unread mode
  54. * Fix incorrect data value when toggling bookmark flag on entry page
  55. * Set opener to null when opening original URL with JavaScript
  56. * Remove unnecessary style
  57. * Refactor AddImageTitle rewriter
  58. * Only processes images with `src` **and** `title` attributes (others are ignored)
  59. * Processes **all** images in the document (not just the first one)
  60. * Wraps the image and its title attribute in a `figure` tag with the title attribute's contents in a `figcaption` tag
  61. * Improve sanitizer to remove `style`, `noscript` and `script` tag contents
  62. * Improve feed and user API updates with optional values
  63. * Add new fields for feed username/password
  64. * Improve memory usage debug log
  65. * Disable keep-alive for HTTP client
  66. * Close HTTP response body even for failed requests
  67. * Add Sans-Serif theme
  68. * Rewrite iframe Youtube URLs to https://www.youtube-nocookie.com
  69. * Add more filters for API call `/entries`:
  70. * before (unix timestamp)
  71. * before_entry_id (int64)
  72. * after (unix timestamp)
  73. * after_entry_id (int64)
  74. * starred (boolean)
  75. * Rewrite individual entry pagination SQL queries
  76. * Simplify entry query builder
  77. * Prevent items from sticking on touchend
  78. * Extended horizontal overflow to feed and category views
  79. * Translate missing strings
  80. * Update German translation
  81. Version 2.0.8 (June 4, 2018)
  82. ----------------------------
  83. * Add Pocket integration
  84. * Rewrite RealIP() to avoid returning an empty string
  85. * Convert IP field from text to inet type
  86. * Improve error handling in integration clients
  87. * Make unread counter clickable
  88. * Archive read entries automatically after 60 days
  89. * Hide horizontal overflow when swiping articles on touch devices
  90. * Add API endpoint to get logged user
  91. * Fever API: Return response with an empty list if there is no item
  92. * Handle feeds with dates formatted as Unix timestamp
  93. Version 2.0.7 (May 7, 2018)
  94. ---------------------------
  95. * Add API endpoint to import OPML file
  96. * Make sure to close request body in HTTP client
  97. * Do not show save link if no integration is configured
  98. * Make sure integrations are configured before to make any HTTP requests
  99. * Avoid people to unlink their OAuth2 account without having a local password
  100. * Do not use shared variable to translate templates (avoid concurrency issue)
  101. * Use vanilla HTTP handlers (refactoring)
  102. * Move HTTP client to its own package (refactoring)
  103. * Add middleware to read X-Forwarded-Proto header (refactoring)
  104. * Use Gorilla middleware (refactoring)
  105. * Scrape parent element for iframe
  106. * Add SoundCloud and Bandcamp iframe sources
  107. Version 2.0.6 (Apr 20, 2018)
  108. ----------------------------
  109. * Improve graceful shutdown
  110. * Simplify Heroku deployment
  111. * Display memory usage and some metrics in logs
  112. * Increase read/write timeout for HTTP server
  113. * Add support for Dublin Core date in RDF feeds
  114. * Do not return an error if the user session is not found
  115. * Handle some non-english date formats
  116. * Add missing French translation
  117. * Rename RSS parser getters
  118. * Get the right comments URL when having multiple namespaces
  119. * Ignore caching headers for feeds that send "Expires: 0"
  120. * Update translations
  121. Version 2.0.5 (Apr 7, 2018)
  122. ---------------------------
  123. * Avoid unread counter to be off by one when reading an entry
  124. * Add Comments URL to entries
  125. * Add FreeBSD build target
  126. * Handle RSS author elements with inner HTML
  127. * Fix typo in translations
  128. * Add Dutch translation
  129. * Convert enclosure size field to bigint
  130. * Switch CI to Go v1.10
  131. * Fix broken OPML import when compiling with Go 1.10
  132. Version 2.0.4 (Mar 5, 2018)
  133. ---------------------------
  134. * Add Simplified Chinese translation
  135. * Add Nunux Keeper integration
  136. * Filter the list of timezones
  137. * Add timezone to entries dates for REST and Fever API
  138. * Show last login and session creation date in current timezone
  139. * Fix typo in edit user template
  140. * Improve parser error messages
  141. * Remove parentheses around feed error messages
  142. * Support localized feed errors generated by background workers
  143. * Print info message if DATABASE_URL is not set
  144. Version 2.0.3 (Feb 19, 2018)
  145. ----------------------------
  146. * Add Polish translation
  147. * Change color of <q> tags for black theme
  148. * Add database indexes (don't forget to run database migrations)
  149. * Handle Atom feeds with HTML title
  150. * Strip invalid XML characters to avoid parsing errors
  151. * Improve error handling for HTTP client
  152. Version 2.0.2 (Feb 5, 2018)
  153. ---------------------------
  154. * Add support for Let's Encrypt http-01 challenge
  155. * Move template functions outside engine (refactoring)
  156. * Take timezone into consideration when calculating relative time
  157. * Add support for HTTP Strict Transport Security header
  158. * Add support for base URLs with subfolders
  159. * Add missing about menu in settings
  160. * Show API URL endpoints in user interface
  161. * Do not update entry date while refreshing a feed
  162. * Add flag to toggle debug logging
  163. * Improve unread counter updates
  164. Version 2.0.1 (Jan 22, 2018)
  165. ----------------------------
  166. * Change user agent (People are blocking the crawler with mod_security)
  167. * Move environment variables to config package (refactoring)
  168. * Add build targets for all ARM architectures
  169. * Do not crawl existing entry URLs
  170. * Show translated login page in user language when logged out
  171. * Handle more encoding edge cases:
  172. - Feeds with charset specified only in Content-Type header and not in XML document
  173. - Feeds with charset specified in both places
  174. - Feeds with charset specified only in XML document and not in HTTP header
  175. * Add German translation
  176. * Add mark as read/unread link on list items
  177. * Add API endpoint for OPML export
  178. Version 2.0.0 (Jan 11, 2018)
  179. ----------------------------
  180. * Initial release of Miniflux 2.