ChangeLog 27 KB

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