ChangeLog 29 KB

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