Commit: 5b5e23cec3a75c056bb3029f872bbea87034a40d
Author: Brecht Van Lommel
Date:   Mon Jul 2 19:25:29 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB5b5e23cec3a75c056bb3029f872bbea87034a40d

Splash: add "Alpha" text and link to the development fund.

===================================================================

M       source/blender/windowmanager/intern/wm_operators.c

===================================================================

diff --git a/source/blender/windowmanager/intern/wm_operators.c 
b/source/blender/windowmanager/intern/wm_operators.c
index fb4ff4ddb28..5628d39e5f8 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -1959,7 +1959,13 @@ static uiBlock *wm_block_create_splash(bContext *C, 
ARegion *ar, void *UNUSED(ar
 
        /* label for 'a' bugfix releases, or 'Release Candidate 1'...
         *  avoids recreating splash for version updates */
-       if (STREQ(STRINGIFY(BLENDER_VERSION_CYCLE), "rc")) {
+       if (STREQ(STRINGIFY(BLENDER_VERSION_CYCLE), "alpha")) {
+               version_suffix = "Alpha";
+       }
+       else if (STREQ(STRINGIFY(BLENDER_VERSION_CYCLE), "beta")) {
+               version_suffix = "Beta";
+       }
+       else if (STREQ(STRINGIFY(BLENDER_VERSION_CYCLE), "rc")) {
                version_suffix = "Release Candidate";
        }
        else if (STREQ(STRINGIFY(BLENDER_VERSION_CYCLE), "release")) {
@@ -2027,10 +2033,8 @@ static uiBlock *wm_block_create_splash(bContext *C, 
ARegion *ar, void *UNUSED(ar
        split = uiLayoutSplit(layout, 0.0f, false);
        col = uiLayoutColumn(split, false);
        uiItemL(col, IFACE_("Links"), ICON_NONE);
-#if 0
-       uiItemStringO(col, IFACE_("Support an Open Animation Movie"), ICON_URL, 
"WM_OT_url_open", "url",
-                     "https://cloud.blender.org/join";);
-#endif
+       uiItemStringO(col, IFACE_("Join the Development Fund"), ICON_URL, 
"WM_OT_url_open", "url",
+                     "https://www.blender.org/foundation/development-fund/";);
        uiItemStringO(col, IFACE_("Donations"), ICON_URL, "WM_OT_url_open", 
"url",
                      "http://www.blender.org/foundation/donation-payment/";);
        uiItemStringO(col, IFACE_("Credits"), ICON_URL, "WM_OT_url_open", "url",

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to