diff --git a/README.md b/README.md
index 901cb2a7b9578ba22bd6fc066c2e7842cb2ca685..fad108f268e2a1212a0ac402e9fc807fc2606b29 100644
--- a/README.md
+++ b/README.md
@@ -2,6 +2,19 @@
 ![ISPConfig logo](https://www.ispconfig.org/wp-content/themes/ispconfig/images/ispconfig_logo.png "") \
 Development branch: [![pipeline status](https://git.ispconfig.org/ispconfig/ispconfig3/badges/develop/pipeline.svg)](https://git.ispconfig.org/ispconfig/ispconfig3/commits/develop)
 
+# Helmo's stable branch
+
+For changes compared to the base version see https://git.ispconfig.org/helmo/ispconfig3/-/compare/3.2.9...stable-helmo?from_project_id=1
+
+Update:
+```
+cd /tmp
+wget https://git.ispconfig.org/helmo/ispconfig3/-/archive/stable-helmo/ispconfig3-stable-helmo.tar.gz
+tar xvfz ispconfig3-stable-helmo.tar.gz
+cd ispconfig3-stable-helmo/install
+php -q update.php
+```
+
 ## Functions
 - Manage multiple servers from one control panel
 - Single server, multiserver and mirrored clusters.
diff --git a/install/update.php b/install/update.php
index 37a0919999ed6dc4e398d94335f4fc1ce4122520..8d5f04c1c379d9b1513efe9169a9aa78185a215c 100644
--- a/install/update.php
+++ b/install/update.php
@@ -72,7 +72,7 @@ echo " _____ ___________   _____              __ _         ____
                                               __/ |
                                              |___/ ";
 echo "\n".str_repeat('-', 80)."\n";
-echo "\n\n>> Update  \n\n";
+echo "\n\n>> Update " . ISPC_APP_VERSION . " \n\n";
 
 //** Include the library with the basic installer functions
 require_once 'lib/install.lib.php';
@@ -675,6 +675,6 @@ if ($conf['courier']['installed'] == true) {
 	swriteln('WARNING: You are running Courier. We are removing support for Courier from ISPConfig. Migrate your system to Dovecot as soon as possible. See https://www.howtoforge.com/community/threads/migrate-from-courier-to-dovecot-on-your-ispconfig-managed-mailserver.88523/ for more information.');
 }
 
-echo "Update finished.\n";
+echo "Update finished(" . ISPC_APP_VERSION . ").\n";
 
 ?>