diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8946f2a5e..691acb47d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,29 @@
+## 2.35.0 – 2024-02-20
+
+### Added
+- S/MIME support
+ [#259](https://github.com/the-djmaze/snappymail/issues/259)
+
+### Changed
+- Disable IMAP METADATA by default (hardly used)
+- Update Polish translation by @tinola
+- Rename CSS .openpgp-control to .crypto-control
+- Renamed some methods in PHP
+
+### Fixed
+- When moving a folder/mailbox check for parent delimiter
+- Mask `passphrase` in the logs for PHP < 8.2
+- Added some missing translations
+- Sign messages using PGP
+- Check for CONDSTORE or QRESYNC to get the HIGHESTMODSEQ
+- Unable to login on certain IMAP server since 2.34.2
+ [#1438](https://github.com/the-djmaze/snappymail/issues/1438)
+
+### Nextcloud
+- Save as .eml
+ [#1425](https://github.com/the-djmaze/snappymail/issues/1425)
+
+
## 2.34.2 – 2024-02-14
### Fixed
diff --git a/README.md b/README.md
index ae156f7d6..b582d07b4 100644
--- a/README.md
+++ b/README.md
@@ -140,26 +140,26 @@ RainLoop 1.17 vs SnappyMail
|js/* |RainLoop |Snappy |
|--------------- |--------: |--------: |
-|admin.js |2.170.153 | 81.613 |
-|app.js |4.207.787 | 421.481 |
+|admin.js |2.170.153 | 81.641 |
+|app.js |4.207.787 | 426.852 |
|boot.js | 868.735 | 4.142 |
|libs.js | 658.812 | 192.625 |
|sieve.js | 0 | 84.707 |
|polyfills.js | 334.608 | 0 |
|serviceworker.js | 0 | 285 |
-|TOTAL |8.240.095 | 784.853 |
+|TOTAL |8.240.095 | 790.252 |
|js/min/* |RainLoop |Snappy |RL gzip |SM gzip |RL brotli |SM brotli |
|--------------- |--------: |--------: |------: |------: |--------: |--------: |
-|admin.min.js | 256.831 | 40.119 | 73.606 | 13.425 | 60.877 | 12.028 |
-|app.min.js | 515.367 | 190.884 |139.456 | 64.643 |110.485 | 55.533 |
+|admin.min.js | 256.831 | 40.142 | 73.606 | 13.445 | 60.877 | 12.047 |
+|app.min.js | 515.367 | 193.738 |139.456 | 65.570 |110.485 | 56.281 |
|boot.min.js | 84.659 | 2.084 | 26.998 | 1.202 | 23.643 | 1.003 |
|libs.min.js | 584.772 | 92.664 |180.901 | 34.414 |155.182 | 30.850 |
|sieve.min.js | 0 | 41.164 | 0 | 10.365 | 0 | 9.359 |
|polyfills.min.js | 32.837 | 0 | 11.406 | 0 | 10.175 | 0 |
-|TOTAL user |1.217.635 | 285.632 |358.761 |100.259 |299.485 | 87.386 |
-|TOTAL user+sieve |1.217.635 | 326.796 |358.761 |110.624 |299.485 | 96.745 |
-|TOTAL admin | 959.099 | 134.867 |292.911 | 49.041 |249.877 | 43.881 |
+|TOTAL user |1.217.635 | 288.486 |358.761 |101.186 |299.485 | 88.134 |
+|TOTAL user+sieve |1.217.635 | 329.650 |358.761 |111.551 |299.485 | 97.493 |
+|TOTAL admin | 959.099 | 134.890 |292.911 | 49.061 |249.877 | 43.900 |
For a user it is around 69% smaller and faster than traditional RainLoop.
@@ -188,8 +188,8 @@ For a user it is around 69% smaller and faster than traditional RainLoop.
|css/* |RainLoop |Snappy |RL gzip |SM gzip |SM brotli |
|------------ |-------: |------: |------: |------: |--------: |
-|app.css | 340.331 | 84.444 | 46.946 | 17.613 | 15.077 |
-|app.min.css | 274.947 | 67.834 | 39.647 | 15.528 | 13.542 |
+|app.css | 340.331 | 84.435 | 46.946 | 17.612 | 15.091 |
+|app.min.css | 274.947 | 67.825 | 39.647 | 15.526 | 13.540 |
|boot.css | | 1.326 | | 664 | 545 |
|boot.min.css | | 1.071 | | 590 | 474 |
|admin.css | | 30.576 | | 7.013 | 6.096 |
diff --git a/integrations/cloudron/DESCRIPTION.md b/integrations/cloudron/DESCRIPTION.md
index 60de3c101..dd880b220 100644
--- a/integrations/cloudron/DESCRIPTION.md
+++ b/integrations/cloudron/DESCRIPTION.md
@@ -1,4 +1,4 @@
-This app packages SnappyMail 2.34.2.
+This app packages SnappyMail 2.35.0.
SnappyMail is a simple, modern, lightweight & fast web-based email client.
diff --git a/integrations/cloudron/Dockerfile b/integrations/cloudron/Dockerfile
index 293de14ef..fa0c1dfba 100644
--- a/integrations/cloudron/Dockerfile
+++ b/integrations/cloudron/Dockerfile
@@ -4,7 +4,7 @@ RUN mkdir -p /app/code
WORKDIR /app/code
# If you change the extraction below, be sure to test on scaleway
-VERSION=2.34.2
+VERSION=2.35.0
RUN wget https://github.com/the-djmaze/snappymail/releases/download/v${VERSION}/snappymail-${VERSION}.zip -O /tmp/snappymail.zip && \
unzip /tmp/snappymail.zip -d /app/code && \
rm /tmp/snappymail.zip && \
diff --git a/integrations/nextcloud/snappymail/appinfo/info.xml b/integrations/nextcloud/snappymail/appinfo/info.xml
index 79969702a..d0cd260d7 100644
--- a/integrations/nextcloud/snappymail/appinfo/info.xml
+++ b/integrations/nextcloud/snappymail/appinfo/info.xml
@@ -3,7 +3,7 @@
snappymail
SnappyMail
SnappyMail Webmail
- 2.34.2
+ 2.35.0
agpl
SnappyMail, RainLoop Team, Nextgen-Networks, Tab Fitts, Nathan Kinkade, Pierre-Alain Bandinelli