UI: Splash Screen Changes #111123

Merged
Harley Acheson merged 1 commits from Harley/blender:SplashChanges into blender-v4.0-release 2023-09-28 01:25:55 +02:00
Member

Updated splash screen with different options depending on whether the
user is new or upgrading. Simplifies the process for new users and
makes the choices more distinct when upgrading. Returning users also
get a link to "What's New".


Alters the Splash screen during version updates. For new users it remains mostly unchanged, with the main button changed to say "Continue":

image

But for existing users it adds a new section at the top to make the two main choices more clear. And that the options only apply to new setups. And to allow returning users to quickly view the release notes.

image

Updated splash screen with different options depending on whether the user is new or upgrading. Simplifies the process for new users and makes the choices more distinct when upgrading. Returning users also get a link to "What's New". --- Alters the Splash screen during version updates. For new users it remains mostly unchanged, with the main button changed to say "Continue": ![image](/attachments/d31b895d-f67d-4d8d-b92a-a64a07ffcb2f) But for existing users it adds a new section at the top to make the two main choices more clear. And that the options only apply to new setups. And to allow returning users to quickly view the release notes. ![image](/attachments/c5497219-2524-4eeb-9e1c-62d52c170dd9)
Harley Acheson added this to the User Interface project 2023-08-14 20:45:41 +02:00
Harley Acheson requested review from Julien Kaspar 2023-08-14 20:45:50 +02:00
Member

Following Brecht's suggestions:

"Import Your Existing Settings" -> "Import Existing Settings"
"Create New Setup (Ignore Previous Settings)" -> "Create New Settings"
Right align "Load 3.6 Settings" and "Save New Settings buttons"
Change Read the Release Notes into "Release Notes" with the same link/globe icon on the left as on the splash screen and without >embossing. Maybe put it on the left of "Load 3.6 Settings"

I would suggest:

  • Load 3.6 Settings -> Load Blender 3.6 Settings.
  • Release Notes -> See What's New, with the URL icon.
Following [Brecht's suggestions](https://projects.blender.org/blender/blender/issues/110425#issuecomment-999343): >"Import Your Existing Settings" -> "Import Existing Settings" >"Create New Setup (Ignore Previous Settings)" -> "Create New Settings" >Right align "Load 3.6 Settings" and "Save New Settings buttons" >Change Read the Release Notes into "Release Notes" with the same link/globe icon on the left as on the splash screen and without >embossing. Maybe put it on the left of "Load 3.6 Settings" I would suggest: * `Load 3.6 Settings` -> `Load Blender 3.6 Settings`. * `Release Notes` -> `See What's New`, with the `URL` icon.
Author
Member

@pablovazquez - I would suggest... Load Blender 3.6 Settings.. .See What's New, with the URL icon.

Do you mind taking a quick look at this? If you load this PR it will look like this (if no 4.0 settings):

image

I can't figure out how to change the buttons to be how you would like. I can turn embossing off and the button look goes away. But the text remains centered no matter what I try.

> @pablovazquez - I would suggest... `Load Blender 3.6 Settings`.. .`See What's New`, with the `URL` icon. Do you mind taking a quick look at this? If you load this PR it will look like this (if no 4.0 settings): ![image](/attachments/340156c2-8486-464f-9c2e-752b019c9bb3) I can't figure out how to change the buttons to be how you would like. I can turn embossing off and the button look goes away. But the text remains centered no matter what I try.
322 KiB
Member

How about both in a row, left side right under Import... is the Load Blender 3.6 Settings button.

Center-aligned Right-aligned
mockup center-aligned mockup right-aligned

And just for the sake of trying different layouts.

both

How about both in a row, left side right under `Import...` is the `Load Blender 3.6 Settings` button. |Center-aligned|Right-aligned| |----|----| |![mockup center-aligned](/attachments/03331b93-bec3-4a4d-b619-3a3938d480cf)|![mockup right-aligned](/attachments/c847465c-7f75-4913-a44c-eb34e429750a)| And just for the sake of trying different layouts. ![both](/attachments/de13bb31-f216-4a2e-b347-4f92e106ade9)
285 KiB
285 KiB
285 KiB
Member

During the recent module meeting it was agreed on going with a mix:

mockup

The diff for the image above is this:

diff --git a/scripts/startup/bl_operators/wm.py b/scripts/startup/bl_operators/wm.py
index 006c359e628..6612c1aa89e 100644
--- a/scripts/startup/bl_operators/wm.py
+++ b/scripts/startup/bl_operators/wm.py
@@ -3188,21 +3188,22 @@ class WM_MT_splash_quick_setup(Menu):
 
         if can_import:
             layout.label(text="Import Existing Settings")
-            col2 = layout.split(factor=0.20)
-            col2.label()
-            col2 = col2.split(factor=0.73)
-            sub2 = col2.column()
-            sub2.operator(
-                "wm.url_open", text="See What's New", icon='URL'
-            ).url = "https://wiki.blender.org/wiki/Reference/Release_Notes/4.0"
-            sub2.operator(
+            split = layout.split(factor=0.20) # Left margin.
+            split.label()
+
+            split = split.split(factor=0.73) # Content width.
+            col = split.column()
+            col.operator(
                 "preferences.copy_prev",
                 text=iface_(
                     "Load Blender %d.%d Settings",
                     "Operator") %
                 old_version, icon='DUPLICATE',
                 translate=False)
-            sub2.separator(factor=1.0)
+            col.operator(
+                "wm.url_open", text="See What's New...", icon='URL'
+            ).url = "https://wiki.blender.org/wiki/Reference/Release_Notes/4.0"
+            col.separator(factor=2.0)
 
         if can_import:
             layout.label(text="Create New Settings")
@@ -3242,6 +3243,7 @@ class WM_MT_splash_quick_setup(Menu):
             col.row().prop(kc_prefs, "spacebar_action", text="Spacebar")
 
         # Themes.
+        col.separator()
         sub = col.column(heading="Theme")
         label = bpy.types.USERPREF_MT_interface_theme_presets.bl_label
         if label == "Presets":
@@ -3250,7 +3252,7 @@ class WM_MT_splash_quick_setup(Menu):
 
         if can_import:
             sub.label()
-            sub.operator("wm.save_userpref", text="Save New Settings", icon='FILE_NEW',)
+            sub.operator("wm.save_userpref", text="Save New Settings", icon='CHECKMARK')
         else:
             sub.label()
             sub.operator("wm.save_userpref", text="Continue")
During the recent module meeting it was agreed on going with a mix: ![mockup](/attachments/ab405d0c-ab43-4c1e-bc6b-d2107bb17512) The diff for the image above is this: ```diff diff --git a/scripts/startup/bl_operators/wm.py b/scripts/startup/bl_operators/wm.py index 006c359e628..6612c1aa89e 100644 --- a/scripts/startup/bl_operators/wm.py +++ b/scripts/startup/bl_operators/wm.py @@ -3188,21 +3188,22 @@ class WM_MT_splash_quick_setup(Menu): if can_import: layout.label(text="Import Existing Settings") - col2 = layout.split(factor=0.20) - col2.label() - col2 = col2.split(factor=0.73) - sub2 = col2.column() - sub2.operator( - "wm.url_open", text="See What's New", icon='URL' - ).url = "https://wiki.blender.org/wiki/Reference/Release_Notes/4.0" - sub2.operator( + split = layout.split(factor=0.20) # Left margin. + split.label() + + split = split.split(factor=0.73) # Content width. + col = split.column() + col.operator( "preferences.copy_prev", text=iface_( "Load Blender %d.%d Settings", "Operator") % old_version, icon='DUPLICATE', translate=False) - sub2.separator(factor=1.0) + col.operator( + "wm.url_open", text="See What's New...", icon='URL' + ).url = "https://wiki.blender.org/wiki/Reference/Release_Notes/4.0" + col.separator(factor=2.0) if can_import: layout.label(text="Create New Settings") @@ -3242,6 +3243,7 @@ class WM_MT_splash_quick_setup(Menu): col.row().prop(kc_prefs, "spacebar_action", text="Spacebar") # Themes. + col.separator() sub = col.column(heading="Theme") label = bpy.types.USERPREF_MT_interface_theme_presets.bl_label if label == "Presets": @@ -3250,7 +3252,7 @@ class WM_MT_splash_quick_setup(Menu): if can_import: sub.label() - sub.operator("wm.save_userpref", text="Save New Settings", icon='FILE_NEW',) + sub.operator("wm.save_userpref", text="Save New Settings", icon='CHECKMARK') else: sub.label() sub.operator("wm.save_userpref", text="Continue") ```
305 KiB
Harley Acheson force-pushed SplashChanges from f06030d437 to 19d233a3a2 2023-09-28 00:07:51 +02:00 Compare
Harley Acheson changed title from UI: Splash Screen Changes to UI: Splash Screen Changes 2023-09-28 00:08:25 +02:00
Harley changed target branch from main to blender-v4.0-release 2023-09-28 00:08:27 +02:00
Harley Acheson requested review from Pablo Vazquez 2023-09-28 00:10:42 +02:00
Pablo Vazquez approved these changes 2023-09-28 01:10:16 +02:00
Harley Acheson merged commit 13f5879e3c into blender-v4.0-release 2023-09-28 01:25:55 +02:00
Harley Acheson deleted branch SplashChanges 2023-09-28 01:25:56 +02:00
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#111123
No description provided.