mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
release 4.1.0
This commit is contained in:
19
CHANGELOG.md
19
CHANGELOG.md
@@ -1,5 +1,24 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [4.1.0]
|
||||||
|
|
||||||
|
- it is now possible to open the sidebar on mobile by swiping to the right (#1098)
|
||||||
|
- swiping to mark entries as read/unread changed from swipinig right to left because swiping right now opens the sidebar
|
||||||
|
- the full hierarchy of categories are now displayed in the category dropdown (#1045)
|
||||||
|
- added a setting `maxEntriesAgeDays` to delete old entries based on their age during database cleanup.
|
||||||
|
The setting is disabled by default for existing installations, except for the docker image where it is enabled and set
|
||||||
|
to 365 days
|
||||||
|
- if user registrations are disabled on your instance which is the default behavior, users are redirected on the login
|
||||||
|
page instead of the welcome page when not logged in (#1185)
|
||||||
|
- the sidebar resizer is no longer shown in the middle of the screen on mobile
|
||||||
|
- when using the system color scheme and the system is using a dark theme, feed entries no longer flicker on load
|
||||||
|
- the demo account (if enabled) cannot register custom javascript code anymore
|
||||||
|
- removed the usage of `toSorted` in the client because older browsers do not support it (#1183)
|
||||||
|
- the openapi documentation is no longer cached by the browser so you always have access to the latest version
|
||||||
|
- added a memory management section to the readme, reading it is recommended if you are running CommaFeed on a server
|
||||||
|
with limited memory
|
||||||
|
- fixed an issue that caused users without an email address set to be unable to edit their profile (#1184)
|
||||||
|
|
||||||
## [4.0.0]
|
## [4.0.0]
|
||||||
|
|
||||||
- migrated from dropwizard 2 to dropwizard 4, Java 17+ is now required
|
- migrated from dropwizard 2 to dropwizard 4, Java 17+ is now required
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.commafeed</groupId>
|
<groupId>com.commafeed</groupId>
|
||||||
<artifactId>commafeed</artifactId>
|
<artifactId>commafeed</artifactId>
|
||||||
<version>4.0.0</version>
|
<version>4.1.0</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>commafeed-client</artifactId>
|
<artifactId>commafeed-client</artifactId>
|
||||||
<name>CommaFeed Client</name>
|
<name>CommaFeed Client</name>
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.commafeed</groupId>
|
<groupId>com.commafeed</groupId>
|
||||||
<artifactId>commafeed</artifactId>
|
<artifactId>commafeed</artifactId>
|
||||||
<version>4.0.0</version>
|
<version>4.1.0</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>commafeed-server</artifactId>
|
<artifactId>commafeed-server</artifactId>
|
||||||
<name>CommaFeed Server</name>
|
<name>CommaFeed Server</name>
|
||||||
@@ -211,7 +211,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.commafeed</groupId>
|
<groupId>com.commafeed</groupId>
|
||||||
<artifactId>commafeed-client</artifactId>
|
<artifactId>commafeed-client</artifactId>
|
||||||
<version>4.0.0</version>
|
<version>4.1.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|||||||
2
pom.xml
2
pom.xml
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
<groupId>com.commafeed</groupId>
|
<groupId>com.commafeed</groupId>
|
||||||
<artifactId>commafeed</artifactId>
|
<artifactId>commafeed</artifactId>
|
||||||
<version>4.0.0</version>
|
<version>4.1.0</version>
|
||||||
<name>CommaFeed</name>
|
<name>CommaFeed</name>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user