Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-01-03Improve system info tipCampbell Barton
2015-12-28White Balance modifier for the VSEThomas Beck
This snippet creates a white balance modifier for the video sequence editor. It is useful for everyone who likes to set a new white point in the video source (easily via the eyedropper). Just select a point in the source file where you know that it should be white. The algorithm will then shift the colors towards your new white point. See attached the image for a quick demo. {F270576} Reviewers: psy-fi Reviewed By: psy-fi Subscribers: Blendify Projects: #bf_blender Differential Revision: https://developer.blender.org/D1698
2015-12-24Fix (unreported) do not show 'appearances' options tool panel in ↵Bastien Montagne
ParticleEdit mode (not supported).
2015-12-23Update Link to the Blender Store.Thomas Dinges
2015-12-18Cleanup: use unpacking generalizationCampbell Barton
2015-12-18Add wrap argument to cycle wm utility funcsCampbell Barton
Now zooming text in the console and text editor isn't wrapping from large/small font size (annoying).
2015-12-17Revert "3D Cursor: Add option to lock it in place to prevent accidental ↵Campbell Barton
modification" This reverts commit a791153ca5e6f87d50396e188a3664b579884161. Rather users get feedback on changing cursor-depth, instead of preventing 3d-cursor placement entirely.
2015-12-17Fix particle count being grayed out when emitting from verts, but grid is on.Eberhard Höpfner
Differential Revision: https://developer.blender.org/D1675
2015-12-15Temporary solution for Add/Subtract toggles being meaningless for some ↵Joshua Leung
GPencil brushes For now, we just change the labels of these toggles so that it makes sense what results we should expect from each. A better solution may be to create separate "direction" props for the different brush types here, so that we can also define more appropriate tooltips too to go with the labels.
2015-12-15Fix 'change path' opening file browser with wrong filter for sound stripsJulian Eisel
Changing path of a sound strip (select strip->C->'Path/Files') opened a file browser without filter for sound files, so sound files weren't visible. Also, for movie/image files, now only movie **or** image files are visible in the file browser by default (instead of both). Reported by @venomgfx, thanks!
2015-12-14Usual i18n fixes, and cleanup: fix 'randomise' -> 'randomize' spelling in code.Bastien Montagne
2015-12-13OpenGL: system info tweaksMike Erwin
- show extensions one per line in order for easier human scanning - show DrawElements vertex & index limits - assume GL version >= 2 for GLSL limit queries
2015-12-133D Cursor: Add option to lock it in place to prevent accidental modificationJoshua Leung
This option helps users protect themselves from accidentally changing the cursor location (and not being aware of this until it has already caused problems) when drawing using Grease Pencil (or with other tools where this is equally likely). It seems to occur most frequently when using a tablet. Currently, this only affects the use of the mouse to set the cursor, as this is where most accidental invocations occur. (I'm aware that this change may turn out to be quite contentious. Fortunately, it should be simple to just revert this commit in that case :)
2015-12-13Grease Pencil: Merge GPencil_Editing_Stage3 branch into masterJoshua Leung
This commit merges all the work done in the GPencil_Editing_Stage3 branch as of ef2aecf2db981b5344e0d14e7f074f1742b0b2f7 into master. For more details about the changes that this brings, see the WIP release notes: http://wiki.blender.org/index.php/Dev:Ref/Release_Notes/2.77/GPencil
2015-12-11BMesh: Add option to use BMesh boolean modifierCampbell Barton
This uses a bmesh-intersection, BLI_kdtree and watertight intersections to perform boolean operations. For now keep both BMesh and Carve booleans usable at once for testing & bug reports, however we plan to phase out Carve by next release.
2015-12-11Use Python3.5's unpacking generalizationsCampbell Barton
2015-12-11BMesh: Boolean as an edit-mode toolCampbell Barton
Works much the same as intersect operator, expose as a new operator since for users its quite different. Access from face menu. Internally, this adds boolean args to BM_mesh_intersect function.
2015-12-06Fix T46929: error exporting Key configuration.Bastien Montagne
2015-12-03Error in own recent commit, (left in debug test)Campbell Barton
2015-12-02Update template for changes in ray-castCampbell Barton
2015-12-01Report error when removing presets failsCampbell Barton
2015-12-01UI: mono-space font user preferenceCampbell Barton
2015-11-30Fix T46891: Error removing PropertyGroupCampbell Barton
2015-11-30PyAPI: expose low level RNA to bpy.typesCampbell Barton
2015-11-28UI: More minor UI cleanups for keymap editorJulian Eisel
Place non-editor related keymaps together, place animation editor keymaps together, move 'Header' keymap (which had exactly 1 entry) into 'Screen' keymap, move SCREEN_OT_header (for showing/hiding header) into 'Header' keymap. Again, this shouldn't break any key configs, but key configs that contain SCREEN_OT_header will add an entry for this under 'Screen' again. Just a very minor glitch.
2015-11-28UI Cleanup: Mask keymap shouldn't be part of Clip Editor keymapJulian Eisel
Also removed unrelated comment (copied & pasted from a few lines above I guess). Shouldn't break any custom key configs.
2015-11-25Sequencer: nested scene strip support (like metas)Campbell Barton
This makes it possible to use scenes as a kind of multi-user meta-strip (with their own time). Currently this supports rendering & drawing nested strips, but no convenient way to tab-enter into a scene strip.
2015-11-24OpenGL: clean up use of old extensionsMike Erwin
2015-11-23UV Smart Project: restore 'Stretch to UV Bounds'Campbell Barton
This option wasn't exposed since 2.4x. D1622 by @candreacchio
2015-11-22Error out on Windows if driver does not support OpenGL 2.1 with an errorAntony Riakiotakis
messagebox.
2015-11-22Remove vertex array support from GPUBuffers. Remove USER_DISABLE_VBO. AllAntony Riakiotakis
GPUBuffer rendering is now done using vertex buffers. Vertex arrays are completely removed from GL 3.2 core profile, so we'll have to do this change at some point anyway. This commit, though big, is not modifying blender in any way. Use should be exactly as if the vetex buffer option is constantly on.
2015-11-20Correct error in background job templateCampbell Barton
Remove check for the path being writable, the operator raises error in this case.
2015-11-18BMesh: symmetry aware decimateCampbell Barton
Support for decimating while maintaining symmetry on a single axis.
2015-11-16Python: use keyword only args for addon_utilsCampbell Barton
2015-11-16Cleanup: remove unused profiling from bpyCampbell Barton
2015-11-12Fix T46749: Texture paint & shadeless mode failsCampbell Barton
Using shadeless did nothing in texture-paint mode. (regression in 2.76)
2015-11-11OpenGL Render: Support full-sample Anti-AliasingCampbell Barton
This brings back old (slower), higher quality method. Useful since graphics cards often use a faster MSAA which only oversamples edges.
2015-11-06Fix T46522: DataTransfer modifier: Impossible to set multiple transfer modes ↵Bastien Montagne
by script (if they're on different properties). This patch basically gets rid of (ui-related) hack where we was adding specific 'fake' enums for datatypes needing additional options. That was done because of broken UI code - to summarize, 'align' code did not support correctly layout mixing vertical and horizontal sub-layouts, in particular if it was 'column-major'. A complete rewrite of this align code has been done, so now we can use a more sane UI code.
2015-11-06Use toggle buttons instead of checkboxes for VSE proxy percentageJulian Eisel
Was inconsistent with Clip Editor which uses toggle buttons. Toggle buttons are narrower, so changing to them. Reported in T46708.
2015-11-05Fix T46699: copy_prev_settings() gives misleading error message when ↵Bastien Montagne
previous version's config dir doesn't exist.
2015-11-04Tracking: Solve annoying "script needs updating" warning printed to the consoleSergey Sharybin
2015-11-04File Selector, support filepath droppingGaia Clary
This adds support for dropping a filepath on an open file-selector to set that path.
2015-10-30Include Python binary in system-info.txtCampbell Barton
2015-10-28Freestyle: Fix for 'Distance from Object' modifiers without a target object.Tamito Kajiyama
'Distance from Object' color/alpha/thickness modifiers without a target object were raising a run-time exception although it is not considered an error condition.
2015-10-24Fix error in bone UICampbell Barton
2015-10-24Fix invalid exceptions w/ preview APICampbell Barton
D1575 by @januz
2015-10-23Cleanup: rename 'datablocks' -> 'data-blocks'Campbell Barton
Similar to addons -> add-ons, for reading it fits better to hyphenate.
2015-10-20Minor edits to sytem-info scriptCampbell Barton
- list script paths on their own line. - use title util function.
2015-10-16Revert part of rB4d9345479aa86f61, and cleanup a bit.Bastien Montagne
'thumbnail_size' is now used in all cases, it controlls column width in other viewmodes of filebrowser. We cannot (easily) rename that DNA member, but I also renamed RNA property, and fixed its tooltip...
2015-10-16UI: only show thumbnail size when its enabledCampbell Barton
Also make enum identifiers less cryptic.