- in many cases support of sending files and images is not very good, and sending videos and large files is simply impossible. There are currently these problems:
+**On mobile**
-- the sender has to be online for file transfer to complete, once it was confirmed by the recipient.
-- when the file is sent to the group, the sender will have to transfer it separately to each member, creating a lot of traffic.
-- the file transfer is slow, as it is sent in small chunks - approximately 16kb per message.
+In mobile app settings choose *Use from desktop*, scan the QR code and verify session code when it appears on both devices - it should be the same. Verifying session code confirms that the devices are connected directly via a secure encrypted connection. There is an option to verify this code on subsequent connections too, but by default it is only required once.
-As a result, we limited the supported size of files in the app to 8mb. Even for supported files, it is quite inefficient for sending any files to large groups.
+
+
+The devices are now paired, and you can continue using all mobile profiles from desktop.
+
+If it is an Android app, you can move the app to background, but iOS app has to remain open. In both cases, while you are using mobile profiles from desktop, you won't be able to use mobile app.
+
+The subsequent connections happen much faster - by default, the desktop app broadcasts its session address to the network, in encrypted form, and mobile app connects to it once you choose *Use from desktop* in mobile app settings.
+
+### How does it work?
+
+The way we designed this solution avoided any security compromises, and the end-to-end encryption remained as secure as it was - it uses [double-ratchet algorithm](../docs/GLOSSARY.md#double-ratchet-algorithm), with [perfect forward secrecy](../docs/GLOSSARY.md#forward-secrecy), [post-compromise security](../docs/GLOSSARY.md#post-compromise-security) and deniability.
+
+This solution is similar to WhatsApp and WeChat. But unlike these apps, no server is involved in the connection between mobile and desktop. The connection itself uses a new SimpleX Remote Control Protocol (XRCP) based on secure TLS 1.3 and additional quantum-resistant encryption inside TLS. You can read XRCP protocol specification and threat model in [this document](https://github.com/simplex-chat/simplexmq/blob/master/rfcs/2023-10-25-remote-control.md). We will soon be [augmenting double ratchet](https://github.com/simplex-chat/simplex-chat/blob/master/docs/rfcs/2023-09-30-pq-double-ratchet.md) to be resistant to quantum computers as well.
+
+The downside of this approach is that mobile device has to be connected to the same local network as desktop. But the upside is that the connection is secure, and you do not need to have a copy of all your data on desktop, which usually has lower security than mobile.
+
+Please note, that the files you send, save or play from desktop app, and also images you view are automatically saved on your desktop device (encrypted by default except videos). To remove all these files you can unlink the paired mobile device from the desktop app settings – there will be an option soon allowing to remove the files without unlinking the mobile.
+
+### 🤖 Connecting to remote SimpleX CLI
+
+*Warning*: this section is for technically advanced users!
+
+If you run SimpleX CLI on a computer in another network - e.g., in the cloud VM or on a Raspberry Pi at home while you are at work, you can also use if from desktop via SSH tunnel. Below assumes that you have remote machine connected via SSH and CLI running there - you can use `tmux` for it to keep running when you are not connected via ssh.
+
+Follow these steps to use remote CLI from desktop app:
+1. On the remote machine add the IP address of your desktop to the firewall rules, so that when CLI tries to connect to this address, it connects to `localhost` instead: `iptables -t nat -A OUTPUT -p all -d 192.168.1.100 -j DNAT --to-destination 127.0.0.1` (replace `192.168.1.100` with the actual address of your desktop, and make sure it is not needed for something else on your remote machine).
+2. Also on the remote machine, run Simplex CLI with the option `--device-name 'SimpleX CLI'`, or any other name you like. You can also use the command `/set device name ` command, CLI can be used from desktop app.
+7. To stop remote session use `/stop remote ctrl` command.
+
+## Better groups
+
+### Faster to join, with more reliable message delivery
+
+We improved the protocols for groups, by making joining groups much faster, and also by adding message forwarding. Previously, the problem was that until a new member connects directly with each existing group member, they did not see each other messages in the group. The problem is explained in detail in [this video](https://www.youtube.com/watch?v=7yjQFmhAftE&t=1104s) at 18:23.
+
+With v5.4, the admin who added members to the group forwards messages to and from the new members until they connect to the existing members. So you should no longer miss any messages and be surprised with replies to messages you have never seen once you and new group members upgrade.
+
+### New group features
+
+
+
+**Create groups with incognito profile**
+
+Previously, you could only create groups with your main profile. This version allows creating groups with incognito profile directly. You will not be able to add your contacts, they can only join via group link.
+
+**Block group members to reduce noise**
+
+You now can block messages from group members that send too many messages, or the messages you don't won't to see. Blocked members won't know that you blocked their messages. When they send messages they will appear in the conversation as one line, showing how many messages were blocked. You can reveal them, or delete all sequential blocked messages at once.
+
+**Prohibit files and media in a group**
+
+Group owners now have an option to prohibit sending files and media. This can be useful if you don't won't any images shared, and only want to allow text messages.
+
+## Better calls
+
+Calls in SimpleX Chat still require a lot of work to become stable, but this version improved the speed of connecting calls, and they should work for more users.
+
+We also added screen sharing in video calls to desktop app.
+
+## Other improvements
+
+This version also has many small and large improvements to make the app more usable and reliable.
+
+The new users and group profiles now allow spaces in the names, to make them more readable. To message these contacts in CLI you need to use quotes, for example, `@'John Doe' Hello!`.
+
+When you delete contacts, you can notify them - to let them know they can't message you.
+
+When you try to connect to the same contact or join the same group, or connect via your own link, the app will recognize it and warn you, or simply open the correct conversation.
+
+You can find the full list of fixed bugs and small improvements in the [release notes](https://github.com/simplex-chat/simplex-chat/releases/tag/v5.4.0).
## SimpleX platform
diff --git a/blog/README.md b/blog/README.md
index 129ba2c80..815009139 100644
--- a/blog/README.md
+++ b/blog/README.md
@@ -1,5 +1,27 @@
# Blog
+Nov 25, 2023 [SimpleX Chat v5.4 released](./20231125-simplex-chat-v5-4-link-mobile-desktop-quantum-resistant-better-groups.md)
+
+- Link mobile and desktop apps via secure quantum-resistant protocol. 🔗
+- Better groups:
+ - faster to join and more reliable.
+ - create groups with incognito profile.
+ - block group members to reduce noise.
+ - prohibit files and media in a group.
+- Better calls: faster to connect, with screen sharing on desktop.
+- Many other improvements.
+
+---
+
+Sep 25, 2023 [SimpleX Chat v5.3 released](./20230925-simplex-chat-v5-3-desktop-app-local-file-encryption-directory-service.md)
+
+- new desktop app! 💻
+- directory service and other group improvements.
+- encrypted local files and media with forward secrecy.
+- simplified incognito mode.
+
+---
+
July 22, 2023 [SimpleX Chat v5.2 released](./20230722-simplex-chat-v5-2-message-delivery-receipts.md)
**What's new in v5.2:**
diff --git a/blog/images/20231125-block.png b/blog/images/20231125-block.png
new file mode 100644
index 000000000..1928b7a6f
Binary files /dev/null and b/blog/images/20231125-block.png differ
diff --git a/blog/images/20231125-desktop1.png b/blog/images/20231125-desktop1.png
new file mode 100644
index 000000000..bfbf97521
Binary files /dev/null and b/blog/images/20231125-desktop1.png differ
diff --git a/blog/images/20231125-desktop2.png b/blog/images/20231125-desktop2.png
new file mode 100644
index 000000000..cd7df13a9
Binary files /dev/null and b/blog/images/20231125-desktop2.png differ
diff --git a/blog/images/20231125-desktop3.png b/blog/images/20231125-desktop3.png
new file mode 100644
index 000000000..200598341
Binary files /dev/null and b/blog/images/20231125-desktop3.png differ
diff --git a/blog/images/20231125-desktop4.png b/blog/images/20231125-desktop4.png
new file mode 100644
index 000000000..ef0f7d660
Binary files /dev/null and b/blog/images/20231125-desktop4.png differ
diff --git a/blog/images/20231125-group1.png b/blog/images/20231125-group1.png
new file mode 100644
index 000000000..e9c67dce9
Binary files /dev/null and b/blog/images/20231125-group1.png differ
diff --git a/blog/images/20231125-group2.png b/blog/images/20231125-group2.png
new file mode 100644
index 000000000..740c9a49a
Binary files /dev/null and b/blog/images/20231125-group2.png differ
diff --git a/blog/images/20231125-mobile1.png b/blog/images/20231125-mobile1.png
new file mode 100644
index 000000000..8b9be6861
Binary files /dev/null and b/blog/images/20231125-mobile1.png differ
diff --git a/blog/images/20231125-mobile1a.png b/blog/images/20231125-mobile1a.png
new file mode 100644
index 000000000..a68a11e0e
Binary files /dev/null and b/blog/images/20231125-mobile1a.png differ
diff --git a/blog/images/20231125-mobile2.png b/blog/images/20231125-mobile2.png
new file mode 100644
index 000000000..fdbf3331e
Binary files /dev/null and b/blog/images/20231125-mobile2.png differ
diff --git a/blog/images/20231125-mobile3.png b/blog/images/20231125-mobile3.png
new file mode 100644
index 000000000..9a8841394
Binary files /dev/null and b/blog/images/20231125-mobile3.png differ
diff --git a/blog/images/20231125-mobile4.png b/blog/images/20231125-mobile4.png
new file mode 100644
index 000000000..5ae2253ed
Binary files /dev/null and b/blog/images/20231125-mobile4.png differ
diff --git a/blog/images/arrow.png b/blog/images/arrow.png
new file mode 100644
index 000000000..8d9061f1c
Binary files /dev/null and b/blog/images/arrow.png differ
diff --git a/website/src/_includes/blog_previews/20231125.html b/website/src/_includes/blog_previews/20231125.html
new file mode 100644
index 000000000..964a5ae98
--- /dev/null
+++ b/website/src/_includes/blog_previews/20231125.html
@@ -0,0 +1,15 @@
+v5.4 is released:
+
+
+ - Link mobile and desktop apps via secure quantum-resistant protocol. 🔗
+ Better groups:
+
+ - faster to join and more reliable.
+ - create groups with incognito profile.
+ - block group members to reduce noise.
+ - prohibit files and media in a group.
+
+
+ - Better calls: faster to connect, with screen sharing on desktop.
+ - Many other improvements.
+