2018-09-12 18:22:00 +10:00
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
* \ingroup blenloader
|
2018-09-12 18:22:00 +10:00
|
|
|
*
|
|
|
|
* Version patch user preferences.
|
|
|
|
*/
|
2019-05-08 15:38:11 +02:00
|
|
|
#define DNA_DEPRECATED_ALLOW
|
2018-09-12 18:22:00 +10:00
|
|
|
#include <string.h>
|
|
|
|
|
2018-10-04 15:45:58 +02:00
|
|
|
#include "BLI_math.h"
|
2018-09-12 18:22:00 +10:00
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
|
|
|
|
#include "DNA_userdef_types.h"
|
|
|
|
#include "DNA_curve_types.h"
|
|
|
|
#include "DNA_windowmanager_types.h"
|
2019-05-08 15:38:11 +02:00
|
|
|
#include "DNA_scene_types.h"
|
UI: Remember File Browser Display Options in Preferences
This makes it so that some display related properties of the file
browser state are remembered in the Preferences. Otherwise, users often
end up doing the same set up work over and over again, so this is a
nice way to save users some work.
It's typical for other file browsers to remember their state too, so
another benefit is having a more conventional behavior, meeting user
expectations better.
Some points:
* We currently store: Window size, display type, thumbnail size,
enabled details-columns, sort options, "Show Hidden" option. More can
be added easily.
* No changes are stored to the Preferences if "Auto-save Preferences"
is disabled. This is how Quick Favorites behave too and it's a
reasonable way to make this behavior optional.
* The Preferences are only saved to permanent memory upon closing
Blender, following existing convention of Preferences and Quick
Favorites.
* If settings weren't actually changed, Preference saving is skipped.
* Only temporary file browsers save their state (invoked through
actions like open or save), not regular file browser editors. These
are usually used for different purposes and workflows.
* Removes "Show Thumbnails" Preferences option. It would need some
special handling, possibly introducing bugs. For users, this
simplifies behavior and should make things more predictable.
Left in DNA data in case we decide to bring it back.
Reviewers: brecht, #user_interface, billreynish, campbellbarton
Reviewed By: #user_interface, William Reynish, Campbell Barton, Brecht
van Lommel (quick first pass review in person)
Maniphest Tasks: T69460
Differential Revision: https://developer.blender.org/D5893
2019-09-30 18:54:11 +02:00
|
|
|
#include "DNA_space_types.h"
|
2019-10-01 21:38:44 +03:00
|
|
|
#include "DNA_anim_types.h"
|
2018-09-12 18:22:00 +10:00
|
|
|
|
|
|
|
#include "BKE_addon.h"
|
|
|
|
#include "BKE_colorband.h"
|
|
|
|
#include "BKE_main.h"
|
2019-10-25 21:05:12 +11:00
|
|
|
#include "BKE_idprop.h"
|
2018-11-19 06:14:20 +11:00
|
|
|
#include "BKE_keyconfig.h"
|
2018-09-12 18:22:00 +10:00
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
#include "BLO_readfile.h" /* Own include. */
|
2018-09-12 18:22:00 +10:00
|
|
|
|
2018-11-16 08:28:58 +11:00
|
|
|
#include "wm_event_types.h"
|
|
|
|
|
2018-09-12 19:58:37 +10:00
|
|
|
/* Disallow access to global userdef. */
|
2018-09-12 18:22:00 +10:00
|
|
|
#define U (_error_)
|
|
|
|
|
2019-05-13 15:59:27 +10:00
|
|
|
static void do_versions_theme(const UserDef *userdef, bTheme *btheme)
|
2018-09-12 19:58:37 +10:00
|
|
|
{
|
2018-09-13 07:56:58 +10:00
|
|
|
|
|
|
|
#define USER_VERSION_ATLEAST(ver, subver) MAIN_VERSION_ATLEAST(userdef, ver, subver)
|
2019-04-17 06:17:24 +02:00
|
|
|
if (!USER_VERSION_ATLEAST(280, 20)) {
|
|
|
|
memcpy(btheme, &U_theme_default, sizeof(*btheme));
|
|
|
|
}
|
|
|
|
|
2019-08-06 04:20:17 +10:00
|
|
|
#define FROM_DEFAULT_V4_UCHAR(member) copy_v4_v4_uchar(btheme->member, U_theme_default.member)
|
2019-04-17 06:17:24 +02:00
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 25)) {
|
2019-08-06 04:20:17 +10:00
|
|
|
copy_v4_v4_uchar(btheme->space_action.anim_preview_range, btheme->space_action.anim_active);
|
|
|
|
copy_v4_v4_uchar(btheme->space_nla.anim_preview_range, btheme->space_nla.anim_active);
|
|
|
|
copy_v4_v4_uchar(btheme->space_graph.anim_preview_range, btheme->space_action.anim_active);
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 26)) {
|
|
|
|
FROM_DEFAULT_V4_UCHAR(tui.icon_collection);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(tui.icon_object);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(tui.icon_object_data);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(tui.icon_modifier);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(tui.icon_shading);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 27)) {
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_action.shade2);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_action.hilite);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_action.group);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_action.group_active);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_action.strip_select);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_action.ds_channel);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_action.ds_subchannel);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_action.keytype_movehold);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_action.keytype_movehold_select);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 28)) {
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_action.ds_ipoline);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 29)) {
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_properties.navigation_bar);
|
|
|
|
}
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 31)) {
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_clip.list_text);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 36)) {
|
|
|
|
FROM_DEFAULT_V4_UCHAR(tui.wcol_state.inner_changed);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(tui.wcol_state.inner_changed_sel);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 39)) {
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_clip.metadatabg);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_clip.metadatatext);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 40)) {
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_preferences.navigation_bar);
|
2019-08-06 04:20:17 +10:00
|
|
|
copy_v4_v4_uchar(btheme->space_preferences.execution_buts,
|
|
|
|
btheme->space_preferences.navigation_bar);
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 41)) {
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_view3d.back);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 52)) {
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_info.info_info);
|
|
|
|
}
|
2019-03-28 17:54:35 +01:00
|
|
|
|
2019-05-14 10:42:53 +02:00
|
|
|
if (!USER_VERSION_ATLEAST(280, 64)) {
|
2019-05-09 17:07:06 +02:00
|
|
|
FROM_DEFAULT_V4_UCHAR(tui.icon_scene);
|
|
|
|
|
2019-05-01 17:42:50 +02:00
|
|
|
if (btheme->space_view3d.obcenter_dia == 0) {
|
|
|
|
btheme->space_view3d.obcenter_dia = U_theme_default.space_view3d.obcenter_dia;
|
|
|
|
}
|
2019-05-07 15:09:14 +02:00
|
|
|
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_graph.text);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_action.text);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_nla.text);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_sequencer.text);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_clip.text);
|
|
|
|
|
2019-05-28 16:17:15 +10:00
|
|
|
FROM_DEFAULT_V4_UCHAR(space_graph.time_scrub_background);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_action.time_scrub_background);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_nla.time_scrub_background);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_sequencer.time_scrub_background);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_clip.time_scrub_background);
|
2019-05-01 17:42:50 +02:00
|
|
|
}
|
|
|
|
|
2019-05-15 13:51:34 +02:00
|
|
|
if (!USER_VERSION_ATLEAST(280, 67)) {
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_outliner.selected_object);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_outliner.active_object);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_outliner.edited_object);
|
2019-05-16 11:54:50 +10:00
|
|
|
FROM_DEFAULT_V4_UCHAR(space_outliner.row_alternate);
|
|
|
|
}
|
|
|
|
|
2019-08-20 14:34:39 -06:00
|
|
|
if (!USER_VERSION_ATLEAST(281, 3)) {
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_outliner.selected_highlight);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_outliner.active);
|
|
|
|
}
|
|
|
|
|
2019-10-05 10:27:25 +02:00
|
|
|
if (!USER_VERSION_ATLEAST(281, 14)) {
|
UI: File Browser Design Overhaul
This is a general redesign of the File Browser GUI and interaction
methods. For screenshots, check patch D5601.
Main changes in short:
* File Browser as floating window
* New layout of regions
* Popovers for view and filter options
* Vertical list view with interactive column header
* New and updated icons
* Keymap consistency fixes
* Many tweaks and fixes to the drawing of views
----
General:
* The file browser now opens as temporary floating window. It closes on
Esc. The header is hidden then.
* When the file browser is opened as regular editor, the header remains
visible.
* All file browser regions are now defined in Python (the button
layout).
* Adjusted related operator UI names.
Keymap:
Keymap is now consistent with other list-based views in Blender, such as
the Outliner.
* Left click to select, double-click to open
* Right-click context menus
* Shift-click to fill selection
* Ctrl-click to extend selection
Operator options:
These previously overlapped with the source list, which caused numerous
issues with resizing and presenting many settings in a small panel area.
It was also generally inconsistent with Blender.
* Moved to new sidebar, which can easily be shown or hidden using a
prominent Options toggle.
* IO operators have new layouts to match this new sidebar, using
sub-panels. This will have to be committed separately (Add-on
repository).
* If operators want to show the options by default, they have the option
to do so (see `WM_FILESEL_SHOW_PROPS`, `hide_props_region`), otherwise
they are hidden by default.
General Layout:
The layout has been changed to be simpler, more standard, and fits
better in with Blender 2.8.
* More conventional layout (file path at top, file name at the bottom,
execute/cancel buttons in bottom right).
* Use of popovers to group controls, and allow for more descriptive
naming.
* Search box is always live now, just like Outliner.
Views:
* Date Modified column combines both date and time, also uses user
friendly strings for recent dates (i.e. "Yesterday", "Today").
* Details columns (file size, modification date/time) are now toggleable
for all display types, they are not hardcoded per display type.
* File sizes now show as B, KB, MB, ... rather than B, KiB, MiB, … They
are now also calculated using base 10 of course.
* Option to sort in inverse order.
Vertical List View:
* This view now used a much simpler single vertical list with columns
for information.
* Users can click on the headers of these columns to order by that
category, and click again to reverse the ordering.
Icons:
* Updated icons by Jendrzych, with better centering.
* Files and folders have new icons in Icon view.
* Both files and folders have reworked superimposed icons that show
users the file/folder type.
* 3D file documents correctly use the 3d file icon, which was unused
previously.
* Workspaces now show their icon on Link/Append - also when listed in
the Outliner.
Minor Python-API breakage:
* `bpy.types.FileSelectParams.display_type`: `LIST_SHORT` and
`LIST_LONG` are replaced by `LIST_VERTICAL` and `LIST_HORIZONTAL`.
Removes the feature where directories would automatically be created if
they are entered into the file path text button, but don't exist. We
were not sure if users use it enough to keep it. We can definitely bring
it back.
----
//Combined effort by @billreynish, @harley, @jendrzych, my university
colleague Brian Meisenheimer and myself.//
Differential Revision: https://developer.blender.org/D5601
Reviewers: Brecht, Bastien
2019-09-03 15:43:38 +02:00
|
|
|
FROM_DEFAULT_V4_UCHAR(space_file.execution_buts);
|
2019-09-10 08:07:39 -07:00
|
|
|
FROM_DEFAULT_V4_UCHAR(tui.icon_folder);
|
2019-09-16 12:43:51 +02:00
|
|
|
FROM_DEFAULT_V4_UCHAR(space_clip.path_keyframe_before);
|
|
|
|
FROM_DEFAULT_V4_UCHAR(space_clip.path_keyframe_after);
|
2019-10-02 18:36:51 +02:00
|
|
|
copy_v4_v4_uchar(btheme->space_nla.nla_track, btheme->space_nla.header);
|
2019-05-14 10:42:53 +02:00
|
|
|
}
|
|
|
|
|
2019-10-05 10:27:25 +02:00
|
|
|
/**
|
|
|
|
* Include next version bump.
|
|
|
|
*/
|
|
|
|
{
|
2019-11-02 22:34:44 -07:00
|
|
|
FROM_DEFAULT_V4_UCHAR(space_sequencer.anim_preview_range);
|
2019-11-20 12:59:19 -08:00
|
|
|
FROM_DEFAULT_V4_UCHAR(space_text.line_numbers);
|
2019-11-25 08:36:05 -08:00
|
|
|
FROM_DEFAULT_V4_UCHAR(tui.widget_text_cursor);
|
2019-10-05 10:27:25 +02:00
|
|
|
}
|
|
|
|
|
2019-01-11 13:23:27 +11:00
|
|
|
#undef FROM_DEFAULT_V4_UCHAR
|
|
|
|
|
UI: Vertical Properties Editor Tabs
Moves the Properties editor context switching to a vertical tabs region.
Design Task: T54951
Differential Revison: D3840
The tabs are regular widgets, unlike the 'old' toolshelf tabs. This means they
give mouse hover feedback, have tooltips, support the right-click menu, etc.
Also, when vertical screen space gets tight, the tabs can be scrolled, they
don't shrink like the toolshelf ones.
The tab region is slightly larger than the header. The tabs are scaled up
accordingly. This makes them nicely readable.
The header is quite empty now. As shown in T54951, we wanted to have a search
button there. This should be added next.
Implementation Notes:
* Added a new region type, RGN_TYPE_NAVIGATION.
* Having the tabs in a separate region allows scrolling of the tab-bar, unlike
the toolshelf tabs. We might want to remove the scrollbars though.
* Added a new region flag RGN_FLAG_PREFSIZE_OR_HIDDEN, to ensure the tab region
is either hidden or has a fixed size.
* Added some additional flags to support fine-tuning the layout in panel and
layout code.
* Bumps subversion.
2018-10-29 21:34:14 +01:00
|
|
|
#undef USER_VERSION_ATLEAST
|
2018-09-13 07:56:58 +10:00
|
|
|
}
|
2018-09-12 19:58:37 +10:00
|
|
|
|
2018-11-19 06:14:20 +11:00
|
|
|
/* UserDef.flag */
|
2019-04-17 06:17:24 +02:00
|
|
|
#define USER_LMOUSESELECT (1 << 14) /* deprecated */
|
2018-11-19 06:14:20 +11:00
|
|
|
|
2018-11-16 08:28:58 +11:00
|
|
|
static void do_version_select_mouse(UserDef *userdef, wmKeyMapItem *kmi)
|
|
|
|
{
|
2019-04-17 06:17:24 +02:00
|
|
|
/* Remove select/action mouse from user defined keymaps. */
|
|
|
|
enum {
|
|
|
|
ACTIONMOUSE = 0x0005,
|
|
|
|
SELECTMOUSE = 0x0006,
|
|
|
|
EVT_TWEAK_A = 0x5005,
|
|
|
|
EVT_TWEAK_S = 0x5006,
|
|
|
|
};
|
|
|
|
const bool left = (userdef->flag & USER_LMOUSESELECT) != 0;
|
|
|
|
|
|
|
|
switch (kmi->type) {
|
|
|
|
case SELECTMOUSE:
|
|
|
|
kmi->type = (left) ? LEFTMOUSE : RIGHTMOUSE;
|
|
|
|
break;
|
|
|
|
case ACTIONMOUSE:
|
|
|
|
kmi->type = (left) ? RIGHTMOUSE : LEFTMOUSE;
|
|
|
|
break;
|
|
|
|
case EVT_TWEAK_S:
|
|
|
|
kmi->type = (left) ? EVT_TWEAK_L : EVT_TWEAK_R;
|
|
|
|
break;
|
|
|
|
case EVT_TWEAK_A:
|
|
|
|
kmi->type = (left) ? EVT_TWEAK_R : EVT_TWEAK_L;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2018-11-16 08:28:58 +11:00
|
|
|
}
|
|
|
|
|
2019-10-25 21:05:12 +11:00
|
|
|
static bool keymap_item_has_invalid_wm_context_data_path(wmKeyMapItem *kmi,
|
|
|
|
void *UNUSED(user_data))
|
|
|
|
{
|
|
|
|
if (STRPREFIX(kmi->idname, "WM_OT_context_") && kmi->properties) {
|
|
|
|
IDProperty *idprop = IDP_GetPropertyFromGroup(kmi->properties, "data_path");
|
|
|
|
if (idprop && (idprop->type == IDP_STRING) && STRPREFIX(idprop->data.pointer, "(null)")) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-12 18:22:00 +10:00
|
|
|
/* patching UserDef struct and Themes */
|
|
|
|
void BLO_version_defaults_userpref_blend(Main *bmain, UserDef *userdef)
|
|
|
|
{
|
2018-09-13 07:56:58 +10:00
|
|
|
|
2018-09-12 18:22:00 +10:00
|
|
|
#define USER_VERSION_ATLEAST(ver, subver) MAIN_VERSION_ATLEAST(bmain, ver, subver)
|
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
/* the UserDef struct is not corrected with do_versions() .... ugh! */
|
2019-04-22 09:13:00 +10:00
|
|
|
if (userdef->wheellinescroll == 0) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->wheellinescroll = 3;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
if (userdef->menuthreshold1 == 0) {
|
|
|
|
userdef->menuthreshold1 = 5;
|
|
|
|
userdef->menuthreshold2 = 2;
|
|
|
|
}
|
2019-04-22 09:13:00 +10:00
|
|
|
if (userdef->mixbufsize == 0) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->mixbufsize = 2048;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
if (userdef->autokey_mode == 0) {
|
|
|
|
/* 'add/replace' but not on */
|
|
|
|
userdef->autokey_mode = 2;
|
|
|
|
}
|
|
|
|
if (userdef->savetime <= 0) {
|
|
|
|
userdef->savetime = 1;
|
|
|
|
// XXX error(STRINGIFY(BLENDER_STARTUP_FILE)" is buggy, please consider removing it.\n");
|
|
|
|
}
|
|
|
|
if (userdef->gizmo_size == 0) {
|
|
|
|
userdef->gizmo_size = 75;
|
|
|
|
userdef->gizmo_flag |= USER_GIZMO_DRAW;
|
|
|
|
}
|
2019-04-22 09:13:00 +10:00
|
|
|
if (userdef->pad_rot_angle == 0.0f) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->pad_rot_angle = 15.0f;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
|
|
|
/* graph editor - unselected F-Curve visibility */
|
|
|
|
if (userdef->fcu_inactive_alpha == 0) {
|
|
|
|
userdef->fcu_inactive_alpha = 0.25f;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(192, 0)) {
|
|
|
|
strcpy(userdef->sounddir, "/");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* patch to set Dupli Armature */
|
|
|
|
if (!USER_VERSION_ATLEAST(220, 0)) {
|
|
|
|
userdef->dupflag |= USER_DUP_ARM;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* added seam, normal color, undo */
|
|
|
|
if (!USER_VERSION_ATLEAST(235, 0)) {
|
|
|
|
userdef->uiflag |= USER_GLOBALUNDO;
|
2019-04-22 09:13:00 +10:00
|
|
|
if (userdef->undosteps == 0) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->undosteps = 32;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
if (!USER_VERSION_ATLEAST(236, 0)) {
|
|
|
|
/* illegal combo... */
|
2019-04-22 09:13:00 +10:00
|
|
|
if (userdef->flag & USER_LMOUSESELECT) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->flag &= ~USER_TWOBUTTONMOUSE;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
if (!USER_VERSION_ATLEAST(240, 0)) {
|
|
|
|
userdef->uiflag |= USER_PLAINMENUS;
|
|
|
|
}
|
|
|
|
if (!USER_VERSION_ATLEAST(242, 0)) {
|
|
|
|
/* set defaults for 3D View rotating axis indicator */
|
|
|
|
/* since size can't be set to 0, this indicates it's not saved in startup.blend */
|
|
|
|
if (userdef->rvisize == 0) {
|
|
|
|
userdef->rvisize = 15;
|
|
|
|
userdef->rvibright = 8;
|
2019-06-25 21:34:21 +10:00
|
|
|
userdef->uiflag |= USER_SHOW_GIZMO_NAVIGATE;
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!USER_VERSION_ATLEAST(244, 0)) {
|
|
|
|
/* set default number of recently-used files (if not set) */
|
2019-04-22 09:13:00 +10:00
|
|
|
if (userdef->recent_files == 0) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->recent_files = 10;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
if (!USER_VERSION_ATLEAST(245, 3)) {
|
2019-04-22 09:13:00 +10:00
|
|
|
if (userdef->coba_weight.tot == 0) {
|
2019-04-17 06:17:24 +02:00
|
|
|
BKE_colorband_init(&userdef->coba_weight, true);
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
if (!USER_VERSION_ATLEAST(245, 3)) {
|
|
|
|
userdef->flag |= USER_ADD_VIEWALIGNED | USER_ADD_EDITMODE;
|
|
|
|
}
|
|
|
|
if (!USER_VERSION_ATLEAST(250, 0)) {
|
|
|
|
/* adjust grease-pencil distances */
|
|
|
|
userdef->gp_manhattendist = 1;
|
|
|
|
userdef->gp_euclideandist = 2;
|
|
|
|
|
|
|
|
/* adjust default interpolation for new IPO-curves */
|
|
|
|
userdef->ipo_new = BEZT_IPO_BEZ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(250, 3)) {
|
|
|
|
/* new audio system */
|
2019-04-22 09:13:00 +10:00
|
|
|
if (userdef->audiochannels == 0) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->audiochannels = 2;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
if (userdef->audioformat == 0) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->audioformat = 0x24;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
if (userdef->audiorate == 0) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->audiorate = 48000;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(250, 8)) {
|
|
|
|
wmKeyMap *km;
|
|
|
|
|
|
|
|
for (km = userdef->user_keymaps.first; km; km = km->next) {
|
2019-04-22 09:13:00 +10:00
|
|
|
if (STREQ(km->idname, "Armature_Sketch")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "Armature Sketch");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "View3D")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "3D View");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "View3D Generic")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "3D View Generic");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "EditMesh")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "Mesh");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "UVEdit")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "UV Editor");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "Animation_Channels")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "Animation Channels");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "GraphEdit Keys")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "Graph Editor");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "GraphEdit Generic")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "Graph Editor Generic");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "Action_Keys")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "Dopesheet");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "NLA Data")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "NLA Editor");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "Node Generic")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "Node Editor");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "Logic Generic")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "Logic Editor");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "File")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "File Browser");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "FileMain")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "File Browser Main");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "FileButtons")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "File Browser Buttons");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
else if (STREQ(km->idname, "Buttons Generic")) {
|
2019-04-17 06:17:24 +02:00
|
|
|
strcpy(km->idname, "Property Editor");
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(252, 3)) {
|
2019-04-22 09:13:00 +10:00
|
|
|
if (userdef->flag & USER_LMOUSESELECT) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->flag &= ~USER_TWOBUTTONMOUSE;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
if (!USER_VERSION_ATLEAST(252, 4)) {
|
|
|
|
/* default new handle type is auto handles */
|
|
|
|
userdef->keyhandles_new = HD_AUTO;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(257, 0)) {
|
|
|
|
/* clear "AUTOKEY_FLAG_ONLYKEYINGSET" flag from userprefs,
|
|
|
|
* so that it doesn't linger around from old configs like a ghost */
|
|
|
|
userdef->autokey_flag &= ~AUTOKEY_FLAG_ONLYKEYINGSET;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(260, 3)) {
|
|
|
|
/* if new keyframes handle default is stuff "auto", make it "auto-clamped" instead
|
|
|
|
* was changed in 260 as part of GSoC11, but version patch was wrong
|
|
|
|
*/
|
2019-04-22 09:13:00 +10:00
|
|
|
if (userdef->keyhandles_new == HD_AUTO) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->keyhandles_new = HD_AUTO_ANIM;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(267, 0)) {
|
|
|
|
|
|
|
|
/* GL Texture Garbage Collection */
|
|
|
|
if (userdef->textimeout == 0) {
|
|
|
|
userdef->texcollectrate = 60;
|
|
|
|
userdef->textimeout = 120;
|
|
|
|
}
|
|
|
|
if (userdef->memcachelimit <= 0) {
|
|
|
|
userdef->memcachelimit = 32;
|
|
|
|
}
|
|
|
|
if (userdef->dbl_click_time == 0) {
|
|
|
|
userdef->dbl_click_time = 350;
|
|
|
|
}
|
|
|
|
if (userdef->v2d_min_gridsize == 0) {
|
|
|
|
userdef->v2d_min_gridsize = 35;
|
|
|
|
}
|
2019-04-22 09:13:00 +10:00
|
|
|
if (userdef->widget_unit == 0) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->widget_unit = 20;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
|
|
|
if (userdef->anisotropic_filter <= 0) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->anisotropic_filter = 1;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
|
|
|
if (userdef->ndof_sensitivity == 0.0f) {
|
|
|
|
userdef->ndof_sensitivity = 1.0f;
|
|
|
|
userdef->ndof_flag = (NDOF_LOCK_HORIZON | NDOF_SHOULD_PAN | NDOF_SHOULD_ZOOM |
|
|
|
|
NDOF_SHOULD_ROTATE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (userdef->ndof_orbit_sensitivity == 0.0f) {
|
|
|
|
userdef->ndof_orbit_sensitivity = userdef->ndof_sensitivity;
|
|
|
|
|
2019-04-22 09:13:00 +10:00
|
|
|
if (!(userdef->flag & USER_TRACKBALL)) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->ndof_flag |= NDOF_TURNTABLE;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NOTE!! from now on use userdef->versionfile and userdef->subversionfile */
|
2018-09-12 18:22:00 +10:00
|
|
|
#undef USER_VERSION_ATLEAST
|
|
|
|
#define USER_VERSION_ATLEAST(ver, subver) MAIN_VERSION_ATLEAST(userdef, ver, subver)
|
|
|
|
|
2019-04-17 06:17:24 +02:00
|
|
|
if (!USER_VERSION_ATLEAST(271, 5)) {
|
|
|
|
userdef->pie_menu_radius = 100;
|
|
|
|
userdef->pie_menu_threshold = 12;
|
|
|
|
userdef->pie_animation_timeout = 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(275, 2)) {
|
|
|
|
userdef->ndof_deadzone = 0.1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(275, 4)) {
|
|
|
|
userdef->node_margin = 80;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(278, 6)) {
|
|
|
|
/* Clear preference flags for re-use. */
|
|
|
|
userdef->flag &= ~(USER_FLAG_NUMINPUT_ADVANCED | USER_FLAG_UNUSED_2 | USER_FLAG_UNUSED_3 |
|
|
|
|
USER_FLAG_UNUSED_6 | USER_FLAG_UNUSED_7 | USER_FLAG_UNUSED_9 |
|
|
|
|
USER_DEVELOPER_UI);
|
|
|
|
userdef->uiflag &= ~(USER_HEADER_BOTTOM);
|
|
|
|
userdef->transopts &= ~(USER_TR_UNUSED_2 | USER_TR_UNUSED_3 | USER_TR_UNUSED_4 |
|
|
|
|
USER_TR_UNUSED_6 | USER_TR_UNUSED_7);
|
|
|
|
|
|
|
|
userdef->uiflag |= USER_LOCK_CURSOR_ADJUST;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 20)) {
|
|
|
|
userdef->gpu_viewport_quality = 0.6f;
|
|
|
|
|
|
|
|
/* Reset theme, old themes will not be compatible with minor version updates from now on. */
|
|
|
|
for (bTheme *btheme = userdef->themes.first; btheme; btheme = btheme->next) {
|
|
|
|
memcpy(btheme, &U_theme_default, sizeof(*btheme));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Annotations - new layer color
|
|
|
|
* Replace anything that used to be set if it looks like was left
|
|
|
|
* on the old default (i.e. black), which most users used
|
|
|
|
*/
|
|
|
|
if ((userdef->gpencil_new_layer_col[3] < 0.1f) || (userdef->gpencil_new_layer_col[0] < 0.1f)) {
|
|
|
|
/* - New color matches the annotation pencil icon
|
|
|
|
* - Non-full alpha looks better!
|
|
|
|
*/
|
|
|
|
ARRAY_SET_ITEMS(userdef->gpencil_new_layer_col, 0.38f, 0.61f, 0.78f, 0.9f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 31)) {
|
|
|
|
/* Remove select/action mouse from user defined keymaps. */
|
|
|
|
for (wmKeyMap *keymap = userdef->user_keymaps.first; keymap; keymap = keymap->next) {
|
|
|
|
for (wmKeyMapDiffItem *kmdi = keymap->diff_items.first; kmdi; kmdi = kmdi->next) {
|
|
|
|
if (kmdi->remove_item) {
|
|
|
|
do_version_select_mouse(userdef, kmdi->remove_item);
|
|
|
|
}
|
|
|
|
if (kmdi->add_item) {
|
|
|
|
do_version_select_mouse(userdef, kmdi->add_item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (wmKeyMapItem *kmi = keymap->items.first; kmi; kmi = kmi->next) {
|
|
|
|
do_version_select_mouse(userdef, kmi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 33)) {
|
|
|
|
/* Enable GLTF addon by default. */
|
|
|
|
BKE_addon_ensure(&userdef->addons, "io_scene_gltf2");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 35)) {
|
|
|
|
/* Preserve RMB select setting after moving to Python and changing default value. */
|
|
|
|
if (USER_VERSION_ATLEAST(280, 32) || !(userdef->flag & USER_LMOUSESELECT)) {
|
|
|
|
BKE_keyconfig_pref_set_select_mouse(userdef, 1, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
userdef->flag &= ~USER_LMOUSESELECT;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 38)) {
|
|
|
|
|
|
|
|
/* (keep this block even if it becomes empty). */
|
|
|
|
copy_v4_fl4(userdef->light_param[0].vec, -0.580952, 0.228571, 0.781185, 0.0);
|
|
|
|
copy_v4_fl4(userdef->light_param[0].col, 0.900000, 0.900000, 0.900000, 1.000000);
|
|
|
|
copy_v4_fl4(userdef->light_param[0].spec, 0.318547, 0.318547, 0.318547, 1.000000);
|
|
|
|
userdef->light_param[0].flag = 1;
|
|
|
|
userdef->light_param[0].smooth = 0.1;
|
|
|
|
|
|
|
|
copy_v4_fl4(userdef->light_param[1].vec, 0.788218, 0.593482, -0.162765, 0.0);
|
|
|
|
copy_v4_fl4(userdef->light_param[1].col, 0.267115, 0.269928, 0.358840, 1.000000);
|
|
|
|
copy_v4_fl4(userdef->light_param[1].spec, 0.090838, 0.090838, 0.090838, 1.000000);
|
|
|
|
userdef->light_param[1].flag = 1;
|
|
|
|
userdef->light_param[1].smooth = 0.25;
|
|
|
|
|
|
|
|
copy_v4_fl4(userdef->light_param[2].vec, 0.696472, -0.696472, -0.172785, 0.0);
|
|
|
|
copy_v4_fl4(userdef->light_param[2].col, 0.293216, 0.304662, 0.401968, 1.000000);
|
|
|
|
copy_v4_fl4(userdef->light_param[2].spec, 0.069399, 0.020331, 0.020331, 1.000000);
|
|
|
|
userdef->light_param[2].flag = 1;
|
|
|
|
userdef->light_param[2].smooth = 0.4;
|
|
|
|
|
|
|
|
copy_v4_fl4(userdef->light_param[3].vec, 0.021053, -0.989474, 0.143173, 0.0);
|
|
|
|
copy_v4_fl4(userdef->light_param[3].col, 0.0, 0.0, 0.0, 1.0);
|
|
|
|
copy_v4_fl4(userdef->light_param[3].spec, 0.072234, 0.082253, 0.162642, 1.000000);
|
|
|
|
userdef->light_param[3].flag = 1;
|
|
|
|
userdef->light_param[3].smooth = 0.7;
|
|
|
|
|
|
|
|
copy_v3_fl3(userdef->light_ambient, 0.025000, 0.025000, 0.025000);
|
|
|
|
|
|
|
|
userdef->flag &= ~(USER_FLAG_UNUSED_4);
|
|
|
|
|
|
|
|
userdef->uiflag &= ~(USER_HEADER_FROM_PREF | USER_UIFLAG_UNUSED_12 | USER_UIFLAG_UNUSED_22);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 41)) {
|
|
|
|
/* (keep this block even if it becomes empty). */
|
|
|
|
|
|
|
|
if (userdef->pie_tap_timeout == 0) {
|
|
|
|
userdef->pie_tap_timeout = 20;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 44)) {
|
|
|
|
userdef->uiflag &= ~(USER_UIFLAG_UNUSED_0 | USER_UIFLAG_UNUSED_1);
|
|
|
|
userdef->uiflag2 &= ~(USER_UIFLAG2_UNUSED_0);
|
|
|
|
userdef->gp_settings &= ~(GP_PAINT_UNUSED_0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 50)) {
|
|
|
|
/* 3ds is no longer enabled by default and not ported yet. */
|
|
|
|
BKE_addon_remove_safe(&userdef->addons, "io_scene_3ds");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 51)) {
|
|
|
|
userdef->move_threshold = 2;
|
|
|
|
}
|
|
|
|
|
2019-04-20 12:47:06 +02:00
|
|
|
if (!USER_VERSION_ATLEAST(280, 58)) {
|
|
|
|
if (userdef->image_draw_method != IMAGE_DRAW_METHOD_GLSL) {
|
|
|
|
userdef->image_draw_method = IMAGE_DRAW_METHOD_AUTO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-30 17:36:58 +02:00
|
|
|
/* patch to set Dupli Lightprobes and Grease Pencil */
|
|
|
|
if (!USER_VERSION_ATLEAST(280, 58)) {
|
|
|
|
userdef->dupflag |= USER_DUP_LIGHTPROBE;
|
|
|
|
userdef->dupflag |= USER_DUP_GPENCIL;
|
|
|
|
}
|
|
|
|
|
2019-05-08 15:38:11 +02:00
|
|
|
if (!USER_VERSION_ATLEAST(280, 60)) {
|
|
|
|
const float GPU_VIEWPORT_QUALITY_FXAA = 0.10f;
|
|
|
|
const float GPU_VIEWPORT_QUALITY_TAA8 = 0.25f;
|
|
|
|
const float GPU_VIEWPORT_QUALITY_TAA16 = 0.6f;
|
|
|
|
const float GPU_VIEWPORT_QUALITY_TAA32 = 0.8f;
|
|
|
|
|
2019-05-15 11:51:20 +02:00
|
|
|
if (userdef->gpu_viewport_quality <= GPU_VIEWPORT_QUALITY_FXAA) {
|
2019-05-08 15:38:11 +02:00
|
|
|
userdef->viewport_aa = SCE_DISPLAY_AA_OFF;
|
|
|
|
}
|
2019-05-15 11:51:20 +02:00
|
|
|
else if (userdef->gpu_viewport_quality <= GPU_VIEWPORT_QUALITY_TAA8) {
|
2019-05-08 15:38:11 +02:00
|
|
|
userdef->viewport_aa = SCE_DISPLAY_AA_FXAA;
|
|
|
|
}
|
2019-05-15 11:51:20 +02:00
|
|
|
else if (userdef->gpu_viewport_quality <= GPU_VIEWPORT_QUALITY_TAA16) {
|
2019-05-08 15:38:11 +02:00
|
|
|
userdef->viewport_aa = SCE_DISPLAY_AA_SAMPLES_8;
|
|
|
|
}
|
2019-05-15 11:51:20 +02:00
|
|
|
else if (userdef->gpu_viewport_quality <= GPU_VIEWPORT_QUALITY_TAA32) {
|
2019-05-08 15:38:11 +02:00
|
|
|
userdef->viewport_aa = SCE_DISPLAY_AA_SAMPLES_16;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
userdef->viewport_aa = SCE_DISPLAY_AA_SAMPLES_32;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-13 15:59:27 +10:00
|
|
|
if (!USER_VERSION_ATLEAST(280, 62)) {
|
2019-04-17 06:17:24 +02:00
|
|
|
/* (keep this block even if it becomes empty). */
|
2019-04-19 18:52:38 +02:00
|
|
|
if (userdef->vbotimeout == 0) {
|
|
|
|
userdef->vbocollectrate = 60;
|
|
|
|
userdef->vbotimeout = 120;
|
|
|
|
}
|
2019-05-04 14:03:51 +02:00
|
|
|
|
2019-05-09 21:35:52 +10:00
|
|
|
if (userdef->lookdev_sphere_size == 0) {
|
|
|
|
userdef->lookdev_sphere_size = 150;
|
2019-05-04 14:03:51 +02:00
|
|
|
}
|
2019-05-13 15:59:27 +10:00
|
|
|
|
|
|
|
userdef->pref_flag |= USER_PREF_FLAG_SAVE;
|
|
|
|
}
|
|
|
|
|
2019-05-30 14:47:24 +10:00
|
|
|
if (!USER_VERSION_ATLEAST(280, 73)) {
|
|
|
|
userdef->drag_threshold = 30;
|
|
|
|
userdef->drag_threshold_mouse = 3;
|
|
|
|
userdef->drag_threshold_tablet = 10;
|
|
|
|
}
|
|
|
|
|
2019-09-09 17:41:38 +02:00
|
|
|
if (!USER_VERSION_ATLEAST(281, 9)) {
|
|
|
|
/* X3D is no longer enabled by default. */
|
|
|
|
BKE_addon_remove_safe(&userdef->addons, "io_scene_x3d");
|
|
|
|
}
|
|
|
|
|
2019-09-18 16:28:17 +02:00
|
|
|
if (!USER_VERSION_ATLEAST(281, 12)) {
|
|
|
|
userdef->render_display_type = USER_RENDER_DISPLAY_WINDOW;
|
|
|
|
userdef->filebrowser_display_type = USER_TEMP_SPACE_DISPLAY_WINDOW;
|
|
|
|
}
|
|
|
|
|
2019-10-01 21:38:44 +03:00
|
|
|
if (!USER_VERSION_ATLEAST(281, 13)) {
|
|
|
|
userdef->auto_smoothing_new = FCURVE_SMOOTH_CONT_ACCEL;
|
|
|
|
|
|
|
|
if (userdef->file_space_data.display_type == FILE_DEFAULTDISPLAY) {
|
|
|
|
memcpy(
|
|
|
|
&userdef->file_space_data, &U_default.file_space_data, sizeof(userdef->file_space_data));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-25 21:05:12 +11:00
|
|
|
if (!USER_VERSION_ATLEAST(281, 16)) {
|
|
|
|
BKE_keyconfig_pref_filter_items(userdef,
|
|
|
|
&((struct wmKeyConfigFilterItemParams){
|
|
|
|
.check_item = true,
|
|
|
|
.check_diff_item_add = true,
|
|
|
|
}),
|
|
|
|
keymap_item_has_invalid_wm_context_data_path,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
2019-10-16 12:04:56 +02:00
|
|
|
if (!USER_VERSION_ATLEAST(282, 1)) {
|
|
|
|
userdef->file_space_data.filter_id = U_default.file_space_data.filter_id;
|
|
|
|
}
|
|
|
|
|
2019-12-05 14:21:57 +01:00
|
|
|
if (!USER_VERSION_ATLEAST(282, 4)) {
|
2019-11-24 22:47:47 +11:00
|
|
|
if (userdef->view_rotate_sensitivity_turntable == 0.0f) {
|
|
|
|
userdef->view_rotate_sensitivity_turntable = DEG2RADF(0.4f);
|
|
|
|
userdef->view_rotate_sensitivity_trackball = 1.0f;
|
|
|
|
}
|
2019-11-24 22:53:16 +11:00
|
|
|
if (userdef->scrollback == 0) {
|
|
|
|
userdef->scrollback = U_default.scrollback;
|
|
|
|
}
|
2019-12-05 14:21:57 +01:00
|
|
|
|
|
|
|
/* Enable Overlay Engine Smooth Wire by default */
|
|
|
|
userdef->gpu_flag |= USER_GPU_FLAG_OVERLAY_SMOOTH_WIRE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Include next version bump.
|
|
|
|
*/
|
|
|
|
{
|
2019-05-13 15:59:27 +10:00
|
|
|
/* pass */
|
2019-04-17 06:17:24 +02:00
|
|
|
}
|
|
|
|
|
2019-04-22 09:13:00 +10:00
|
|
|
if (userdef->pixelsize == 0.0f) {
|
2019-04-17 06:17:24 +02:00
|
|
|
userdef->pixelsize = 1.0f;
|
2019-04-22 09:13:00 +10:00
|
|
|
}
|
2019-04-17 06:17:24 +02:00
|
|
|
|
|
|
|
for (bTheme *btheme = userdef->themes.first; btheme; btheme = btheme->next) {
|
|
|
|
do_versions_theme(userdef, btheme);
|
|
|
|
}
|
2018-09-13 07:56:58 +10:00
|
|
|
#undef USER_VERSION_ATLEAST
|
2018-09-12 18:22:00 +10:00
|
|
|
}
|
2018-11-19 06:14:20 +11:00
|
|
|
|
|
|
|
#undef USER_LMOUSESELECT
|