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
2014-02-20Fix for bad imbuf creation by compositor viewers if resolution is (0,0).Lukas Tönne
This can happen if no image buffers are used to define a sensible resolution. Then the viewer will stiff create a float buffer in the output imbuf, which defies the usual ibuf->rect_float check and leads to invalid memory access. Float buffer should not be created in this case.
2014-02-20Fix for reading past allocated bounds when calculating pathsCampbell Barton
2014-02-20Fix for off-by-one error switching nurbs directionCampbell Barton
2014-02-20Docs: update man page script based on D251Campbell Barton
2014-02-20Fix crash when deleting strip used as mask in another strip modifierSergey Sharybin
2014-02-20Allow using strips from the top of the stack as modifier argumentsSergey Sharybin
Poll function tried to be smart and disallow having dependency cycles, but it didn't work properly. Further, it still possible to re-shuffle strips stack in the way which introduces dependency cycles. So disabled this smartness in the poll function for now.
2014-02-20Editmesh: add convex hull to vertex menuCampbell Barton
2014-02-20Transform: revert to 2.69 numeric input behavior by defaultBastien Montagne
This allows to get the same "quickies" as in previous (2.69) code, (XYZ, -/, etc.), yet keeping nice non-conflicting new stuff like cursor navigation or copy/paste. You can switch to full mode hitting '=', and back to simple mode hitting 'ctrl ='.
2014-02-20Transform: skip setting colors when picking with the manipulatorCampbell Barton
2014-02-20NDOF: yaw/pitch were swapped and add timeline fit.Campbell Barton
2014-02-20UI: Fix for rna-enum submenus not showing a right arrowCampbell Barton
2014-02-20Fix T38723: Crash on loading with NULL sequence stripdataCampbell Barton
2014-02-20NDOF: define 2 default navigation modes: free & orbitCampbell Barton
After some discussion it seems both are valid defaults but useful for very different purposes. - 'free' lets you explore the scene with full 6dof (like fly mode) - 'orbit' is closer to typical mouse view orbit, constraining to orbiting about a central location. This doesn't effect orbit/pan which are available with modifier keys.
2014-02-20OSX/Cmake: tentative handling for clang-omp,Jens Verwiebe
set flags hardcoded when used
2014-02-20Image Editor: Fix View menu, after Scopes rename.Thomas Dinges
2014-02-19Use tabs for image editor.Antony Riakiotakis
For initial discussion see T38371 This commit organized panels for image editor to new tab categories dependent on the image editor mode: View Mode: Tools - contains UV tools (currently only transform and UV Sculpting) Scopes - contains scopes Grease Pencil - contains Grease Pencil operators Paint Mode: Tools - contains brush options Scopes - as above Grease Pencil - as above Mask Mode Mask - contains mask tools Scopes - as above Grease Pencil - as above Grease Pencil panel/tab now includes operators, not view options which have been moved to the UI region on the right. To make this work better, image editor toolbar now is of type TOOLS instead of PREVIEW as was the case previously. A nice version patch makes sure all works predictably, but opening newer files with older blender executables could backfire. This commit does not address which UV Tools will be included in the Tools tab for the view mode, but does include some basic tools (transform) and provides a class to inherit from to avoid conflicts with UV Sculpting. Reviewers: brecht, dingto, sergey Differential Revision: https://developer.blender.org/D315
2014-02-19Cycle CUDA: revert the f1aeb2ccf4 and 84f958754 busywait fixes for now.Brecht Van Lommel
It's unclear what kind of impact they have on performance at the moment, so I rather play it safe and postpone this for 2.71. Ref T38679, Ref T38712
2014-02-19fix T38721 Vertex Group pop menu (CTRL+G) Set Active Group not updating ↵Dalai Felinto
Vertex Groups Panel I set ND_VERTEX_GROUP to update the buttons. Reviewed by: Lukas Toenne
2014-02-19Fix T38717: Copy Vertex Group To Selected fails when all Vertex GroupsLukas Tönne
are empty. This is now considered a no-op and counts as a successful copy (since nothing would have changed anyway).
2014-02-19Fix for Copy Settings From Active TrackSergey Sharybin
it didn't copy weight from active track.
2014-02-19added support for double,float and int property values for maya restpose ↵gaiaclary
matrix properties
2014-02-19Added Maya restpose_matrix support via custom properties to Collada exportergaiaclary
2014-02-19Change default track to 15px pattern and 71px searchSergey Sharybin
After recent seed improvements it makes tracking more robust without speed loss.
2014-02-19Added track weight to presetsSergey Sharybin
Useful for cases when you need to create bunch of witness tracks.
2014-02-19Fix T38720: Clear preview range operator missing notifier to redrawLukas Tönne
timeline.
2014-02-19Added an option to camera preset to include/exclude focal length from the presetSergey Sharybin
Useful for cameras which have fixed focal length.
2014-02-19Camera presets changesSergey Sharybin
- Fixed typo in Canon C300 camera name - Added preset for Nexus5
2014-02-19Fix T38603: Output File node sockets were drawing the regular socketLukas Tönne
label in addition to the actual specialized socket ui.
2014-02-19NDOF: fix helicopter fly option, revert default to trackball.Campbell Barton
Rationale for using trackball is that it allows roll which you expect with an ndof device.
2014-02-19Code cleanup: de-duplicate ndof controls for walk/fly modeCampbell Barton
2014-02-19BSP was still hanging around in CMakeSergey Sharybin
2014-02-19Update the camera presets in various ways:Sergey Sharybin
* Switch to using Canon sensor type instead of camera models. There are a ton of camera models that reuse the same sensor so it's just confusing and forever incomplete to try and cover all models. * Delete all redundant Canon camera models.. * Leave only the Canon camera models that are special, that is have non regular sensor sizes. * Fix a few errors in some Canon models. * Capitalize a few unrelated sensor presets for consistency. * Added presets for GoPro and iPhone. Their distortion models and shutter isn't really supported ATM but tracker is robust enough to give reasonable tracking and solving results. Presets are from Daniel Salazar and Sebastian Koenig, thanks! Differential Revision: https://developer.blender.org/D264
2014-02-19Totally remove BSP from SConscriptSergey Sharybin
2014-02-19MSVC: add more warnings to match OSX/LinuxCampbell Barton
2014-02-19MSVC: improve warnings for scons and cmakeCampbell Barton
Some int/float conversion warnings were disabled by buildsystems but re-enabled by BLI_winstuff.h, the warnigns relate to conversions not considered issues on other systems so better just quiet them.
2014-02-19Fix T38567: Branch smoothing on skin modifier brokenCampbell Barton
own regression when changing delete commands
2014-02-19blender-thumbnailer.py: Fix GVFS support not working with Python 3IRIE Shinsuke
also update doc string.
2014-02-19Fix T38715: Setting object mode fails from command lineCampbell Barton
also run load pre/post callbacks
2014-02-19PyAPI: bpy.ops was showing 'module' in autocomplete outputCampbell Barton
2014-02-19Fix T38714: MeshPolygon.center not a Vector typeCampbell Barton
2014-02-19Fix T38706: dropdown labels in popups not updatingCampbell Barton
Caused by own recent changes to menu handling
2014-02-19Keymap: load/save improvementsCampbell Barton
- avoid passing redundant operator name to keymap property set function. - avoid double attr lookups when setting each property. - handle exceptions on value type mismatch. - avoid resource warning on failed load.
2014-02-19Update keymaps for changes to NDOFCampbell Barton
2014-02-19OSX/CMAKE: make linking and bundling of clang omp lib work,Jens Verwiebe
Cmake will still not find -fopenmp working, so the user must set WITH_OPENMP and flags manually
2014-02-19prepare 32bit build msvc2013 scons/buildbotMartijn Berger
2014-02-19UI: increase contrast active/inactive (see: T38490)Campbell Barton
2014-02-19Code cleanup: styleCampbell Barton
2014-02-18Fix windows build error in splash screen commit.Brecht Van Lommel
2014-02-18Fix T38661: make number button increment/decrement areas smaller.Brecht Van Lommel
Previously 1/3 of the button was used to decrement, 1/3 to edit and 1/3 to increment. However with the number text now right aligned this meant that the increment area would overlap the number text, which is confusing. So it was made to smaller to only cover the arrows. It's not as easy to click but I don't know of a better solution with right aligned number text.
2014-02-18Splash screen: use a retina resolution image for Mac OS X.Brecht Van Lommel