diff --git a/scripts/startup/bl_operators/wm.py b/scripts/startup/bl_operators/wm.py
index 6332634ba21..d3c4a784cca 100644
--- a/scripts/startup/bl_operators/wm.py
+++ b/scripts/startup/bl_operators/wm.py
@@ -3335,6 +3335,7 @@ class WM_MT_splash(Menu):
 
         col2.operator("wm.url_open_preset", text="Donate", icon='FUND').type = 'FUND'
         col2.operator("wm.url_open_preset", text="What's New", icon='URL').type = 'RELEASE_NOTES'
+        col2.operator("wm.url_open_preset", text="Tornavis project's Website", icon='URL').type = 'TORNAVIS'
 
         layout.separator()
         layout.separator()
diff --git a/source/blender/tornavis/patches/MB_0005.h b/source/blender/tornavis/patches/MB_0005.h
new file mode 100644
index 00000000000..c978e52a11c
--- /dev/null
+++ b/source/blender/tornavis/patches/MB_0005.h
@@ -0,0 +1 @@
+/* Empty File */
\ No newline at end of file
diff --git a/source/blender/windowmanager/intern/wm_splash_screen.cc b/source/blender/windowmanager/intern/wm_splash_screen.cc
index 8e27fb16533..22fc89c5f41 100644
--- a/source/blender/windowmanager/intern/wm_splash_screen.cc
+++ b/source/blender/windowmanager/intern/wm_splash_screen.cc
@@ -200,6 +200,10 @@ static uiBlock *wm_block_create_splash(bContext *C, ARegion *region, void * /*ar
                               BKE_blender_version_string(),
                               splash_width - 8.0 * UI_SCALE_FAC,
                               splash_height - 13.0 * UI_SCALE_FAC);
+	wm_block_splash_add_label(block,
+                              "Tornavis Project",
+                              splash_width - 8.0 * UI_SCALE_FAC,
+                              splash_height - ((13.0 + 10)  * UI_SCALE_FAC));
   }
 
   const int layout_margin_x = UI_SCALE_FAC * 26;
diff --git a/source/blender/windowmanager/intern/wm_window.cc b/source/blender/windowmanager/intern/wm_window.cc
index c029d12d329..6284a944e59 100644
--- a/source/blender/windowmanager/intern/wm_window.cc
+++ b/source/blender/windowmanager/intern/wm_window.cc
@@ -524,6 +524,7 @@ void wm_window_title(wmWindowManager *wm, wmWindow *win)
 
   str += " - Blender ";
   str += BKE_blender_version_string_compact();
+  str += " - Tornavis";
 
   GHOST_SetTitle(handle, str.c_str());
 
