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
2013-03-25More new data names translation (most cases should be covered now).Bastien Montagne
Also done a few cleanup here and there...
2013-03-25beautify fill: skip testing invalid cases (2 triangles that _don't_ have 4 ↵Campbell Barton
unique verts between them).
2013-03-25code cleanup:Campbell Barton
- remove unused defines. - quiet some shadow warnings. - bevel, ifdef out some asserts that are too common. - style
2013-03-25Fix #34730, set special brush rotation to zero if brush is not rake orAntony Riakiotakis
anchored.
2013-03-25cancel face/edge creation operator if nothing is done (so it wont register ↵Campbell Barton
or do an undo push)
2013-03-25patch [#34763] Center the View to the ZDepth Position under the Mouse CursorCampbell Barton
from Ralf Holzemer (cheleb) use Fkey in object mode (since its a mode-less fly).
2013-03-25Alpha mask textures porting part 1: Support for projective texturing.Antony Riakiotakis
Also add random mapping to brushes.
2013-03-25fix [#34745] TGA with size of 4Kx8K won't loadCampbell Barton
Checked the size limit on TGA files in svn history and this is was just an arbitrary limit that might have made sense some years back, but not now.
2013-03-24FIX: [#34467] File Browser Deletes Unselected FilesAndrea Weikert
* delete now acts on selected file(s) rather than the highlighted file.
2013-03-24White space commit.Thomas Dinges
And 55555. :D
2013-03-24edit to 55549, replace fake click event with call to uiButActiveOnly().Campbell Barton
also make it more clear args are for rna buttons.
2013-03-24UI small fixes:Ton Roosendaal
- Theme color for the brush popup was not correctly coded. Now it follows menu item style correctly, which also allows all the themes we have to give readable text. - RMB cancel also added for slider buttons and the color picker.
2013-03-24Code cleanup:Thomas Dinges
* Remove non used booleanops_mesh.c and header, got obsolete with Carve.
2013-03-24Small feature:Ton Roosendaal
While using number sliders, you can now press RMB to cancel (like ESC)
2013-03-24OS X Fullscreen: shortcut now is CTRL + Cmd + F. Is more common, and it keepsTon Roosendaal
Cmd + F for searches.
2013-03-24Usablity:Ton Roosendaal
In text editor, the CTRL+F find now opens property region (or keeps it) and activates the search button for input. That's already nice! But next step should be to do a search on exit of the button (or while typing). That's stuff I need Campbell to help with though. Notes: - Probably Py api for property buttons could get an "operator=" arg? - The warning menu "not found" should go away - I also suggest to make "wrap" search default for new editors
2013-03-24Fix for [#34747] Rendering invisible tilesThomas Dinges
* reset_session() was not taking render percentage into account in case persistent_data was enabled. * also deprecate old "maximsize" DNA variable.
2013-03-24Unix/X11 - use RGBA icon (netwm icon), rather then pixmap icon.Campbell Barton
2013-03-24code cleanup: move doxy docs from headers into source. also replace ↵Campbell Barton
strncpy();str[len]=0 with BLI_strncpy() in BLI_stringdec().
2013-03-24fix for struct definition building with msvc2008 and some style cleanup.Campbell Barton
2013-03-23Fix for opencollada building in install_deps.sh script.Bastien Montagne
Stick to rev c89cf095c40aa2a518b1104c448825eacc92d174 of opencollada repo, next commit breaks API and prevent blender from building anymore... :(
2013-03-23code cleanup: quiet shadow warning.Campbell Barton
2013-03-23Fix for cycles group node bug, reported on IRC: Group nodes input proxies ↵Lukas Toenne
did not get their correct default value set. Forgot to add this during r55440 ...
2013-03-23Bug fix 34743Ton Roosendaal
Mac OS X full screen: the old option to go full screen now didn't hide the dock/topbar anymore. Also made it use dock auto-hide now, not permanent hide.
2013-03-23code cleanup: remove unused button type HSVSLICampbell Barton
2013-03-23Theme fix:Ton Roosendaal
Node Editor and Sequencer were not using grid theme color, but 'back'. This commit adds versioning to copy background color to grid. I do this without increasing sub-version, which allows to add correct drawing when the subversion has to go up anyway for something else.
2013-03-23Cycles:Thomas Dinges
* Avoid an unnecessary condition in light.cpp, (totarea > 0.0f) is always true inside the "if(kintegrator->use_direct_light)" branch.
2013-03-23Constraint UI:Thomas Dinges
* Hide Script Constraint from UI, not functional. * Alphabetical order fix for Motion tracking constraints.
2013-03-23Code cleanuo:Thomas Dinges
* Remove already commented "use_radiosity" flag from RNA. * Remove some commented exceptions for old 2.4x 3D View preview region. * Remove empty and commented function declarations from 2.4x UI times
2013-03-23Code cleanup:Thomas Dinges
* Remove already deprecated USER_DISABLE_AA flag from code, only commented DNA flag left.
2013-03-23Cycles:Thomas Dinges
* Move OpenGL settings out of the film panel into its own. Imho these should go completely elsewhere, but better separated than mixed with Cycles settings.
2013-03-23Code cleanup:Thomas Dinges
* Use bpy.app.build_options for UI checks rather than custom ones.
2013-03-23OpenGL: Moving the GPU_pass_update_uniforms() call from ↵Mitchell Stokes
GPU_material_bind_uniforms() to GPU_material_bind(). This way, material specific uniforms don't need to be resent when sending object specific uniforms. This saves uniform update calls in the BGE where one material is bound and multiple objects can be drawn. This doesn't offer much in the way of performance, but it cleans up our OpenGL usage a bit. One test scene went from 8k OpenGL calls to 4k with just this one change.
2013-03-23BGE: getting rid of a few maybe-uninitialized warnings.Mitchell Stokes
2013-03-23GHOST_Cocoa, let new fullscreen also appear on 10.6 deployed buildsJens Verwiebe
2013-03-23fix for buffer out-of-bounds reading for STR_String comparisons with char ↵Campbell Barton
arrays.
2013-03-23fix for BGE crash replicating a navmesh.Campbell Barton
2013-03-22Add a license file for our i18n "droidsans.ttf" font (I hope I did not ↵Bastien Montagne
forget any, the history of this "font" is... complex :/ ).
2013-03-22Fix [#34721]: Smoke adaptive domain threshold ignores high resolution data.Miika Hamalainen
In some cases high resolution domain could have higher density than the low resolution counterpart, causing adaptive domain to clip off areas where density is still above domain threshold. Now also high resolution data is used to determine domain bounds.
2013-03-22Fix [#34685]: Dynamic paint sub-steps don't work if brush is animated ↵Miika Hamalainen
through parent chain longer than 2 objects. Maximum number of parents updated is now 5. Hopefully this will be enough until Blender has better subframe sampling system.
2013-03-22Patch [#34680] Updated install_deps script, by Ejner Fergo (ejnersan), thanks!Bastien Montagne
The script is updated with: Arch Linux support Numpy 1.7.0 final Fedora 17 / 18 support OpenSUSE 12.2 / 12.3 support Use FFMPEG from RPM-distro repos RPM-distro fixes Removed Schroedinger codec Fixes for Cmake/Scons config Reviewed by Sergey and me.
2013-03-22OSX feature:Ton Roosendaal
Blender now supports the 10.7+ "Full screen" mode, which pushes a window to a permanent other "screen", with animated zoom and sliding. Available via the icon in window header (right), Apple+F, or "Window" menu in top. Works much nicer than Blender's own "full screen" option. Todo: the zoom effect is still draws a bit ugly, because Blender doesn't have "live resize" yet.
2013-03-22code cleanup: shadowing, adjust type.Campbell Barton
2013-03-22Added missing node->id pointer checks in case node groups have unavailable ↵Lukas Toenne
node_tree data blocks.
2013-03-22Fix #34728, Int values in script Node can't be changed. Was caused by a bad ↵Lukas Toenne
typecast of the node socket default_value, which caused invalid value range.
2013-03-22Add missing comment for m_isResolutionSetSergey Sharybin
2013-03-22Increase hard limit for prefetch frames to INT_MAXSergey Sharybin
Don't see why it could give issues to use large number of frames to be prefetched, but just in case make it unlimited hard limit and kept soft limit still at 500.
2013-03-22code cleanup: unused defines, shadowing and unintended enum-as-variable.Campbell Barton
2013-03-22spaces->tabsPablo Vazquez
2013-03-22Fix for the custom_nodes.py template. Socket classes now return their ↵Lukas Toenne
drawing color in a callback instead of a simple property, this makes it possible to change a socket color e.g. based on data type.