4
0

ChangeLog 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617
  1. Version 2.0.25 (Nov 3, 2020)
  2. ----------------------------
  3. * Rename "original" link to be more explicit
  4. * Do not escape HTML for Atom 1.0 text content during parsing (Avoid HTML entities issues)
  5. * Do not use charset.NewReader if the body is a valid UTF-8 document
  6. * Restore the ability to use a proxy for all HTTP requests (see https://golang.org/pkg/net/http/#ProxyFromEnvironment)
  7. * Show Git commit in about page
  8. * Publish Docker images to GitHub Container Registry
  9. * Added few Docker Compose examples in contrib folder
  10. * Added Ansible Role + Playbook for Miniflux in contrib folder
  11. * Add rewrite rule to use noscript content for images rendered with Javascript
  12. * Bump github.com/prometheus/client_golang from 1.7.1 to 1.8.0
  13. * Update contributor link and Godoc badge for API client
  14. * Move Debian package builder to main repository
  15. * Move RPM build files to main repository
  16. * Add GitHub Action to generate Docker images
  17. * Build multi-platform images with Docker Buildx
  18. * Add keyboard shortcut to scroll current item to the top
  19. * Add feed filters (Keeplist and Blocklist)
  20. * Do not proxy image with a data URL
  21. * Bump github.com/PuerkitoBio/goquery from 1.5.1 to 1.6.0
  22. * Proxify articles crawled manually
  23. * Proxify images defined in srcset attribute
  24. * Remove plaintext Fever password from database
  25. * Add keyboard shortcut to jump to an item's feed page
  26. * Add option for swipe gesture on entries on mobile
  27. Version 2.0.24 (Oct 3, 2020)
  28. ----------------------------
  29. * Add rewrite rule to fix Medium.com images
  30. * Update sanitizer to support responsive images:
  31. - Add support for picture HTML tag
  32. - Add support for srcset, media, and sizes attributes to img and source tags
  33. * Enhance man page formatting
  34. * Add Prometheus exporter
  35. * Remove dependency on global config options in HTTP client
  36. * API:
  37. - Avoid database lookup if empty credentials are provided
  38. - Add the possibility to filter entries by category ID
  39. - Add the possibility to filter entries by a list of statuses
  40. * Add Feed ID in worker error logs
  41. * Tweak default HTTP client transport timeout values to reduce the number of file descriptors
  42. * CSS tweaks and optimizations:
  43. - Prevent sub and sup from affecting line-height
  44. - Set touch-action on .items to prevent browser navigation
  45. - Move font-family specific CSS to the appropriate file
  46. - Update primary font-family for UI to be even more compatible with various operating systems
  47. - Make .entry-content font-weight variable depending on font-family used
  48. * Avoid Javascript minifier to break keyboard shortcuts
  49. * Rename service worker script to avoid being blocked by uBlock
  50. * Update date parser to handle Pacific Daylight Time in addition to Pacific Standard Time
  51. * Create index to speed up bookmark page
  52. * Do not try to update a duplicated feed after a refresh
  53. * Use a transaction to refresh and create entries
  54. * Speed up entries clean up with an index and a goroutine
  55. * Avoid the accumulation of enclosures by keeping only what is referenced in the feed
  56. * Add workarounds for parsing an invalid date
  57. * Archive older entries first
  58. * Update API client to support more filters
  59. * Avoid duplication between get feed entries and get entries API endpoints
  60. * Enable strict slash to avoid a page not found (404) when using a trailing slash in the URLs
  61. * Add a submit button to each section of the integration page
  62. * Reload page after making page as read when showing unread entries
  63. * Add option to archive unread entries
  64. * Add option to enable maintenance mode
  65. * Add HTTP proxy option for subscriptions
  66. * Make add_invidious_video rule applicable for different invidious instances
  67. * Fix reading time for jp, ko and zh languages
  68. * Update POLLING_SCHEDULER description in man page
  69. * Bump gorilla/mux from 1.7.4 to 1.8.0
  70. * Add link to mark a feed as read
  71. Version 2.0.23 (Aug 15, 2020)
  72. -----------------------------
  73. * Try known URLs when discovering subscriptions
  74. * Add workarounds to find YouTube channel feeds (YouTube doesn't expose RSS links anymore for new-style URLs)
  75. * Increase HTTP server timeout values
  76. * Use stdlib constants for HTTP methods instead of strings
  77. * Add support for RTL feed content
  78. * Ignore <media:title> to avoid overriding the default title if they are different
  79. * Add support for secret keys exposed as a file (useful for containerized environments)
  80. * Display recent entries first in search results
  81. * Do not archive shared items
  82. * Add option to change the number of entries per page
  83. * Add Brazilian Portuguese (pt_BR) translation
  84. * Add reading time for entries
  85. * Redirect to login page if CSRF token is expired
  86. * Fever API:
  87. - Use getEntryIDs instead of getEntries to reduce memory consumption
  88. - Fix max_id argument logic to follow the specs
  89. - Improve logging
  90. - Do not send articles to external services when unsaving an item
  91. - Create index to speed up API calls
  92. - Log client IP in middleware
  93. * API client: Do not return body for response with no content
  94. * REST API:
  95. - Delete users asynchronously (Deleting large users might lock the tables)
  96. - Add CORS support
  97. * Align entry actions to the left
  98. - Attempt to avoid awkward alignment on smartphone screens
  99. - Keep the read/star actions aligned to the left
  100. - Remove CSS flex to allow easier override with custom CSS
  101. * Upgrade Postgres client library
  102. * Upgrade CI checks to Go 1.15
  103. Version 2.0.22 (Jun 19, 2020)
  104. -----------------------------
  105. * Remove child-src CSP policy (deprecated)
  106. * Add /version endpoint
  107. * Add the ability to use custom css
  108. * Handle more invalid dates
  109. * Add CSS styles for textarea
  110. * Add index to speed up slow query
  111. * Speed up feed list page rendering
  112. * Add alternative scheduler based on the number of entries
  113. * Setup Dependabot on GitHub
  114. * Update Docker image to Alpine 3.12
  115. * Add feed option to ignore HTTP cache
  116. * Fix some Italian and German translations
  117. * Added scraper rule for RayWenderlich.com, TheOatmeal.com, financialsamurai.com, dilbert.com and turnoff.us
  118. * Replace link to categories by a link to the list of entries in "Category > Feeds" page
  119. * Change feed title to a link to the original website
  120. * Add icons to feeds and categories list
  121. * Update dependencies and remove vendor folder
  122. Version 2.0.21 (Mar 28, 2020)
  123. -----------------------------
  124. * Add SVG icons to entry actions
  125. * Add support for Invidious
  126. - Embed Invidious player for invidio.us feeds
  127. - Add new rewrite rule to use Invidious player for Youtube feeds
  128. * Check during application startup if the database schema is up to date
  129. * Change default theme for public pages to "System Serif"
  130. * Add feature to share an article (create a public link of a feed entry)
  131. * Fix SQL injection in full-text search rank ordering
  132. * Add generic OpenID Connect provider (OAuth2)
  133. * Use more secure TLS configuration for autocert server (increase SSL Labs score from B to A+)
  134. * Add feature to create per-application API Keys
  135. * Add Go 1.14 to GitHub Actions
  136. * Add scraper rule for wdwnt.com
  137. * Add API client function to refresh all feeds
  138. * Add API endpoint to refresh all feeds
  139. * Add Auth Proxy authentication
  140. * Use rel=prev/next on pagination links
  141. Version 2.0.20 (Feb 15, 2020)
  142. -----------------------------
  143. * Add Japanese translation
  144. * History: show entries in the order in which they were read
  145. * Add button to add to Home screen
  146. * Ignore enclosures without URL
  147. * Correct spelling of "toggle"
  148. * List view: align information to the left side, and the actionable buttons to the right
  149. * Redirect to /unread when getting a 404 for an unread expired entry
  150. * Do not advance to the next item when using the 'v' shortcut on the list of starred items
  151. * Wrap around when navigating with keyboard shortcuts on a list view
  152. * Remove unused Feed.Entries and Entry.Category from API client
  153. * Add comments link keyboard shortcut
  154. * Allow application/xhtml+xml links as comments URL in Atom replies
  155. * Allow only absolute URLs in comments URL
  156. * Use internal XML workarounds to detect feed format
  157. * Make menu consistent across feed pages
  158. * Make sure external URLs are not encoded incorrectly by Go template engine
  159. * Make sure whitelisted URI schemes are handled properly by the sanitizer
  160. * Use white background for favicon (Improve legibility when using a dark theme)
  161. * Remove dependency on Sed to build Docker images
  162. * Normalize URL query string before executing HTTP requests
  163. * Improve Dublin Core support for RDF feeds
  164. * Improve Podcast support (iTunes and Google Play feeds)
  165. * Add support for Atom 0.3
  166. * Add support for Atom "replies" link relation
  167. * Return outer HTML when scraping elements
  168. * Update scraper rule for "Le Monde"
  169. * Filter valid XML characters for UTF-8 XML documents before decoding
  170. * Trim spaces for RDF entry links
  171. Version 2.0.19 (Dec 1, 2019)
  172. ----------------------------
  173. * Add shortcut "V" to open original link in current tab
  174. * Add the possibility to add rules during feed creation
  175. * Wrap attachments into <details> disclosure element
  176. * Show attachment size on entry page
  177. * Add support of RSS Media elements (group, description, peer link, and thumbnails)
  178. * Add rewrite functions: convert_text_link and nl2br
  179. * Add scraper rule for openingsource.org
  180. * Add Makefile target to build only amd64 Docker image
  181. * Make sure to remove integration settings when removing a user
  182. * Add API parameter to filter entries by category
  183. * Display list of feeds per category
  184. * Show the number of read and unread entries for each feed
  185. * Make sure settings menu is consistent
  186. * Remove fixed table-layout for entry content
  187. * Update autocert lib because ACME v1 is EOL
  188. * Do not lighten blockquote font color
  189. * Update de_DE translation
  190. * Send a response when changing status of removed entries in Fever API
  191. * Add meta tag to disable Google Translate
  192. * Improve storage module
  193. * Improve XML decoder to remove illegal characters
  194. * Compare Fever token case-insensitively
  195. * Make sure integration tests are marked as failed in Github Actions
  196. * Add new formats to date parser
  197. * Add notification message when using keyboard shortcuts: f, s, and m.
  198. * Avoid keyboard shortcuts to conflict with Firefox’s "Find as you type" feature
  199. Version 2.0.18 (Sep 25, 2019)
  200. -----------------------------
  201. * Add Docker image variant for arm32v7
  202. * Add theme variants
  203. - Use CSS variables instead of inherence
  204. - Rename default theme to "Light - Serif"
  205. - Rename Black theme to "Dark - Serif"
  206. - Rename "Sans-Serif" theme to "Light - Sans Serif"
  207. - Add "System" theme that use system preferences: Dark or Light
  208. - Add Serif and Sans-Serif variants for each color theme
  209. * Avoid constraint error when having duplicate entries during feed creation
  210. * Disable strict XML parsing
  211. * Ignore invalid content type
  212. * Update man page
  213. * Replace Travis by GitHub Actions
  214. * Rename cleanup config variables and deprecate old ones
  215. - CLEANUP_FREQUENCY_HOURS instead of CLEANUP_FREQUENCY
  216. - CLEANUP_ARCHIVE_READ_DAYS instead of ARCHIVE_READ_DAYS
  217. * Make configurable the number of days to remove old sessions
  218. * Add native lazy loading for images and iframes
  219. * Do not buffer responses in the image proxy
  220. * Update dependencies
  221. * Add Go 1.13 to test matrix
  222. * Replace link border by outline to avoid slight content shift
  223. * New rewrite function: add_mailto_subject
  224. * Import OPML from URL
  225. * Fix HTML injection in addImageTitle
  226. * Accept HTML entities when parsing XML
  227. Version 2.0.17 (Aug 3, 2019)
  228. ----------------------------
  229. * Update Docker image to Alpine Linux 3.10.1
  230. * Pass auth header to manifest request (crossorigin attribute)
  231. * Sort feed categories before serialization
  232. * Fix syntax errors in man page
  233. * Add .search margin-right
  234. * Ask for confirmation before flushing history, marking page as read, and mark all as read
  235. * Add option to disable feeds
  236. Version 2.0.16 (Jun 8, 2019)
  237. ----------------------------
  238. * Add option to toggle date/time in log messages
  239. * Add optional config file parser in addition to environment variables
  240. * Make HTTP Client timeout and max body size configurable
  241. * Refactor config package:
  242. - Parse configuration only once during startup time
  243. - Store configuration values in a global variable
  244. * Flip behavior of j and k keyboard shortcuts
  245. * Bump Postgresql client library to v1.1.1 to bring in SCRAM-SHA-256 authentication
  246. * Add option to enable/disable keyboard shortcuts
  247. * Add missing translation
  248. * Improve page reload when showing unread/all entries:
  249. - Show only unread entries = refresh current page
  250. - Show all entries = go to next page
  251. * Always display feed entries even when there is a feed error
  252. * Use loading label instead of saving when submitting login form
  253. * Add OPML v1 support during importation
  254. * Add 'allow-popups' to iframe sandbox permissions
  255. Version 2.0.15 (Mar 16, 2019)
  256. -----------------------------
  257. * Move Dockerfile to main repo
  258. * Change location of the binary from /usr/local/bin to /usr/bin in Docker image
  259. * Add double tap detection for next/previous page navigation
  260. * Allow users to disable auto-remove
  261. * Make parser compatible with Go 1.12
  262. * Add Golang 1.12 to CI
  263. * Use feed ID instead of user ID to check entry URLs presence
  264. * Fix typo in stylesheet
  265. * Sort search results by relevance
  266. * Use preferably the published date for Atom feeds
  267. * Add Spanish translation
  268. * Rename session cookies
  269. * Handle the case when application session is expired and not user session
  270. Version 2.0.14 (Jan 13, 2019)
  271. -----------------------------
  272. * Only attempt to change password if the confirmation field is filled in (Firefox)
  273. * Remove URL from client user agent
  274. * Make the feed list order case-insensitive
  275. * Handle XHTML Summary elements for Atom feeds
  276. * Make UTF-8 the default encoding for XML feeds
  277. * Add more targets to Makefile
  278. * Add -mod=vendor in Makefile
  279. * Move health check endpoint from ui package to httpd service
  280. * Add workaround for non GMT dates (RFC822, RFC850, and RFC1123)
  281. * Make sure `<strong>` elements are bold
  282. * Show scrollbars only when necessary for <pre> elements
  283. * Add Italian translation
  284. * Allow to switch between unread only and all entries on category/feed views
  285. * Add function storage.UpdateFeedError()
  286. * Add BBC News scraping rule
  287. * Ignore JSON feeds from EnsureUnicode()
  288. * Preserve category selection when no feed is found
  289. * Update XML encoding regex to take single quotes into consideration
  290. * Send cli errors to stderr
  291. * Update dependencies
  292. * Make password prompt compatible with Windows
  293. * Make configurable the number of days to archive read items
  294. * Change log level to debug when starting workers
  295. * Do not show $DATABASE_URL warning when showing application info
  296. * Move image proxy filter to template functions
  297. * Update scraper rule for lemonde.fr
  298. * Refactor manual entry scraper
  299. * Apply rewriter rules on manual "Fetch Original Content"
  300. * Add Makefile target for current OS and architecture
  301. * Improve Makefile
  302. Version 2.0.13 (Nov 25, 2018)
  303. -----------------------------
  304. * Add man page
  305. * Add support for Systemd Socket Activation (experimental)
  306. * Add the possiblity to listen on Unix sockets
  307. * Add config options to disable HTTP and scheduler services
  308. * Archive more read entries in cleanup job
  309. * Change default database connection string (backward compatible)
  310. * Improve logging messages in ui package
  311. * Improve overall Simplified Chinese translations
  312. * Improve time since post date displays:
  313. - "15 days" now is "15 days" rather than "3 weeks" ago
  314. - "32 days" is now "1 month" rather than "2 months" ago
  315. - "366 days" is now "1 year" rather than "2 years" ago
  316. * Allow the scraper to parse XHTML documents
  317. * Remove charset=utf-8 from JSON responses
  318. * Ignore hotkeys containing Control, Alt or Meta keys
  319. * Handle more encoding conversion edge cases
  320. * Disable go test caching
  321. * Avoid duplication of ldflags in Makefile
  322. * Fix wrong translation key for category pages
  323. * Code refactoring:
  324. - Simplify application HTTP middlewares
  325. - Replace daemon and scheduler package with service package
  326. - Move UI middlewares and routes to ui package
  327. - Move API middleware and routes to api package
  328. - Move Fever middleware and routes to fever package
  329. Version 2.0.12 (Oct 26, 2018)
  330. -----------------------------
  331. * Add OpenBSD build
  332. * Improve logging for OAuth2 callback
  333. * Make "g f" go to feed, or list of feeds
  334. * Add more details in feed storage errors to facilitate debugging
  335. * Add entries storage error to feed errors count
  336. * Set arbitrary maximum size for tsvector column
  337. * Unsubscribe from feed through link or "#"
  338. * Simplify feed entries filtering
  339. * Simplify feed fetcher
  340. * Simplify feed parser and format detection
  341. * Improve unit tests in url package
  342. * Add short cli flags -i and -v
  343. * Convert text links and line feeds to HTML in YouTube channels
  344. * Change link state when marking all entries as read
  345. * Add missing package descriptions for GoDoc
  346. * Fix typo in license header
  347. * Refactor HTTP response builder
  348. * Improve Fever API performances when marking a feed or group as read
  349. * Set focus on article link when pressing prev/next hotkeys
  350. * Improve request package and add more unit tests
  351. * Add more unit tests for config package
  352. * Simplify locale package usage (refactoring)
  353. * Translate application in Russian
  354. * Use disclosure widget <details> for advanced feed options
  355. * Use unique translation IDs instead of English text as key
  356. * Add more unit tests for template functions
  357. * Fix invalid output when truncating Unicode text in templates
  358. * Add the possibility to override default user agent for each feed
  359. * Split Makefile linux targets by architecture
  360. * Add compiler, Arch, and OS to info command
  361. * Avoid line break between emoji and (un)read/(un)star links
  362. * Build Docker image for multiple architectures (amd64, arm32v6, arm64v8)
  363. Version 2.0.11 (Sep 11, 2018)
  364. -----------------------------
  365. * Set cookie flag `SameSite` to Lax mode
  366. * Use predefined ciphers when TLS is configured
  367. * Avoid displaying an error when shutting down the daemon
  368. * Add "Mark this page as read" to the bottom
  369. * Store client IP address in request context
  370. * Refactor HTTP context handling
  371. * Make user creation via environment variables idempotent
  372. * Use regular text version of ✔︎ instead of emoji version on iOS
  373. * Add toggle status button to entry page
  374. * Migrate to Go Modules and Go 1.11
  375. * Show count of feeds with permanent errors in header menu
  376. * Display remote client IP in logs when having a login failure (Fail2Ban)
  377. * Add remove button in feed edit page
  378. * Split integration tests into multiple files
  379. * Update scraper rule for heise.de
  380. * Expose real error messages for internal server API errors
  381. * Move Golang API client in project source tree (the separate project is deprecated)
  382. * Use canonical imports
  383. * Add Procfile
  384. * Create database package (refactoring)
  385. * Update user agent with new website URL
  386. * Update German translation
  387. Version 2.0.10 (July 22, 2018)
  388. ------------------------------
  389. * Avoid browser caching issues when assets changes
  390. * Add Gzip/Deflate compression for HTML, JSON, CSS and Javascript responses
  391. * Improve themes handling
  392. * Store user theme in session
  393. * Logged out users will keep their theme
  394. * Add theme background color to web manifest and meta tag
  395. * Update application icon with different sizes
  396. * Add support for published tag in Atom feeds
  397. * Add tooltip to feed domain in feeds list (title attribute)
  398. * Prevent vertical scrolling on swipe
  399. * Show feed title instead of domain in items list
  400. * Add service worker to cache feed icons
  401. * Make image proxy configurable via IMAGE_PROXY environment variable:
  402. * none = No proxy
  403. * http-only = Proxy only non-HTTPS images (default)
  404. * all = Proxy everything
  405. * Add alt attribute for feed icons
  406. * Update CI jshint check
  407. * Add embedly.com to iframe whitelist
  408. * Use passive event listeners for touch events
  409. * Add `add_dynamic_image` rewriter for JavaScript-loaded images
  410. * Change feed password field type to text to avoid auto-completion with Firefox
  411. * Using autocomplete="off" or autocomplete="new-password" doesn't change anything
  412. * Changing the input ID doesn't change anything
  413. * Using a different input name doesn't change anything
  414. * Only Chrome supports autocomplete="new-password"
  415. * Add base URL validation
  416. * Update default stylesheet name in HTML layout
  417. * Pre-generate themes stylesheets at build time
  418. * Update vendor dependencies
  419. * Refactor assets bundler and split Javascript files
  420. * Run sanitizer after all processing and entry content rewrite
  421. * Remove timestamp from generated files
  422. * Add support for protocol relative YouTube URLs
  423. * Add Postgres full-text search for entries
  424. * Add search form in user interface
  425. * Add search parameter to the API
  426. * Improve Dutch locales
  427. * Sandbox iframes when sanitizing
  428. * Keep consistent text size on mobile orientation change
  429. * Change permission of /etc/miniflux.conf to 600 instead of 644 in RPM package
  430. * Add tzdata package to Docker image
  431. * Update Docker image to Alpine Linux 3.8
  432. Version 2.0.9 (July 1, 2018)
  433. ----------------------------
  434. * Avoid Chrome to autocomplete no-login password fields
  435. * Add cli flag to reset all feed errors
  436. * Do not ignore errored feeds when a user refresh feeds manually
  437. * Add specific 404 and 401 error messages
  438. * Strip binaries to reduce size
  439. * Make sure we always get the pagination in unread mode
  440. * Fix incorrect data value when toggling bookmark flag on entry page
  441. * Set opener to null when opening original URL with JavaScript
  442. * Remove unnecessary style
  443. * Refactor AddImageTitle rewriter
  444. * Only processes images with `src` **and** `title` attributes (others are ignored)
  445. * Processes **all** images in the document (not just the first one)
  446. * Wraps the image and its title attribute in a `figure` tag with the title attribute's contents in a `figcaption` tag
  447. * Improve sanitizer to remove `style`, `noscript` and `script` tag contents
  448. * Improve feed and user API updates with optional values
  449. * Add new fields for feed username/password
  450. * Improve memory usage debug log
  451. * Disable keep-alive for HTTP client
  452. * Close HTTP response body even for failed requests
  453. * Add Sans-Serif theme
  454. * Rewrite iframe Youtube URLs to https://www.youtube-nocookie.com
  455. * Add more filters for API call `/entries`:
  456. * before (unix timestamp)
  457. * before_entry_id (int64)
  458. * after (unix timestamp)
  459. * after_entry_id (int64)
  460. * starred (boolean)
  461. * Rewrite individual entry pagination SQL queries
  462. * Simplify entry query builder
  463. * Prevent items from sticking on touchend
  464. * Extended horizontal overflow to feed and category views
  465. * Translate missing strings
  466. * Update German translation
  467. Version 2.0.8 (June 4, 2018)
  468. ----------------------------
  469. * Add Pocket integration
  470. * Rewrite RealIP() to avoid returning an empty string
  471. * Convert IP field from text to inet type
  472. * Improve error handling in integration clients
  473. * Make unread counter clickable
  474. * Archive read entries automatically after 60 days
  475. * Hide horizontal overflow when swiping articles on touch devices
  476. * Add API endpoint to get logged user
  477. * Fever API: Return response with an empty list if there is no item
  478. * Handle feeds with dates formatted as Unix timestamp
  479. Version 2.0.7 (May 7, 2018)
  480. ---------------------------
  481. * Add API endpoint to import OPML file
  482. * Make sure to close request body in HTTP client
  483. * Do not show save link if no integration is configured
  484. * Make sure integrations are configured before to make any HTTP requests
  485. * Avoid people to unlink their OAuth2 account without having a local password
  486. * Do not use shared variable to translate templates (avoid concurrency issue)
  487. * Use vanilla HTTP handlers (refactoring)
  488. * Move HTTP client to its own package (refactoring)
  489. * Add middleware to read X-Forwarded-Proto header (refactoring)
  490. * Use Gorilla middleware (refactoring)
  491. * Scrape parent element for iframe
  492. * Add SoundCloud and Bandcamp iframe sources
  493. Version 2.0.6 (Apr 20, 2018)
  494. ----------------------------
  495. * Improve graceful shutdown
  496. * Simplify Heroku deployment
  497. * Display memory usage and some metrics in logs
  498. * Increase read/write timeout for HTTP server
  499. * Add support for Dublin Core date in RDF feeds
  500. * Do not return an error if the user session is not found
  501. * Handle some non-english date formats
  502. * Add missing French translation
  503. * Rename RSS parser getters
  504. * Get the right comments URL when having multiple namespaces
  505. * Ignore caching headers for feeds that send "Expires: 0"
  506. * Update translations
  507. Version 2.0.5 (Apr 7, 2018)
  508. ---------------------------
  509. * Avoid unread counter to be off by one when reading an entry
  510. * Add Comments URL to entries
  511. * Add FreeBSD build target
  512. * Handle RSS author elements with inner HTML
  513. * Fix typo in translations
  514. * Add Dutch translation
  515. * Convert enclosure size field to bigint
  516. * Switch CI to Go v1.10
  517. * Fix broken OPML import when compiling with Go 1.10
  518. Version 2.0.4 (Mar 5, 2018)
  519. ---------------------------
  520. * Add Simplified Chinese translation
  521. * Add Nunux Keeper integration
  522. * Filter the list of timezones
  523. * Add timezone to entries dates for REST and Fever API
  524. * Show last login and session creation date in current timezone
  525. * Fix typo in edit user template
  526. * Improve parser error messages
  527. * Remove parentheses around feed error messages
  528. * Support localized feed errors generated by background workers
  529. * Print info message if DATABASE_URL is not set
  530. Version 2.0.3 (Feb 19, 2018)
  531. ----------------------------
  532. * Add Polish translation
  533. * Change color of <q> tags for black theme
  534. * Add database indexes (don't forget to run database migrations)
  535. * Handle Atom feeds with HTML title
  536. * Strip invalid XML characters to avoid parsing errors
  537. * Improve error handling for HTTP client
  538. Version 2.0.2 (Feb 5, 2018)
  539. ---------------------------
  540. * Add support for Let's Encrypt http-01 challenge
  541. * Move template functions outside engine (refactoring)
  542. * Take timezone into consideration when calculating relative time
  543. * Add support for HTTP Strict Transport Security header
  544. * Add support for base URLs with subfolders
  545. * Add missing about menu in settings
  546. * Show API URL endpoints in user interface
  547. * Do not update entry date while refreshing a feed
  548. * Add flag to toggle debug logging
  549. * Improve unread counter updates
  550. Version 2.0.1 (Jan 22, 2018)
  551. ----------------------------
  552. * Change user agent (People are blocking the crawler with mod_security)
  553. * Move environment variables to config package (refactoring)
  554. * Add build targets for all ARM architectures
  555. * Do not crawl existing entry URLs
  556. * Show translated login page in user language when logged out
  557. * Handle more encoding edge cases:
  558. - Feeds with charset specified only in Content-Type header and not in XML document
  559. - Feeds with charset specified in both places
  560. - Feeds with charset specified only in XML document and not in HTTP header
  561. * Add German translation
  562. * Add mark as read/unread link on list items
  563. * Add API endpoint for OPML export
  564. Version 2.0.0 (Jan 11, 2018)
  565. ----------------------------
  566. * Initial release of Miniflux 2.