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
2009-09-15didnt change all filename's to path'sCampbell Barton
2009-09-15- opening the file selector was freeing a NULL pointerCampbell Barton
- some warnings in last commit.
2009-09-15Smoke:Daniel Genrich
* Less verbose * More OpenGL error messages (on blender -d)
2009-09-15UI: renamed 3dview menus to be lower case, not too important now,Brecht Van Lommel
but once these become extensible we need consistent names.
2009-09-15- new property attribute - default_array, which returns a variable size ↵Campbell Barton
array useful to get the defaults for operator & function arrays. - updated python api to check for array types rather then the length since a variable length array can be 1 or 0 length. - python docgen added .0 to the end of floats which messed up values like 1e-05
2009-09-15* Added RNA path functionality to fluidsim modifier settings, to allow ↵Matt Ebb
keying of fluidsim settings properties. Note: Although the properties can be animated with the RNA system, the values are not exported to the actual fluid sim yet, that can come later.
2009-09-15Smoke:Daniel Genrich
* Bugfix for non working 3dview Credits: Thanks to Wahooney, jesterKing and a big thanks to Matt/broken for hunting this down!
2009-09-15Smoke:Daniel Genrich
* Fixing compile warning
2009-09-152.5 BugfixesBrecht Van Lommel
#19302: the spin operator did not redo correct when changing properties. Actually the problem was somewhere else, the search menu always did an unnecessary undo push, which conflicted with an operator undo push with the same name. Only in the case of "Spin" was this noticed, because it's name is so short and you actually type it completely. #19328: swapping areas could crash when dragging mouse outside the window. Attempted fix for #19331, #19335 as well, where backspace and some other keys give square characters instead of working as expected. Couldn't reproducable here, so please test.
2009-09-15Also set utf8 encoded hint for window title.Guillermo S. Romero
2009-09-142.5 BugfixesBrecht Van Lommel
#19343: vertex paint blur was not working. shared vcol was disabled for speed, but blurring still needs it. Also fixed brushes with size > 64 not working correct. #19314: non-zbuffer selection did not work with background image, drawing it made the WM matrix go out of sync. Forgot to mention these in previous commit: * Manipulator type was not properly initialized, .B.blend update helps, but still needed version patch & correct setting for new space. * Added a utility function for the toggling region hide, instead of duplicating the code. * SSS preview render preprocessing pass now also uses multiple threads. * Added version patch for unit scale, was still 0.0.
2009-09-142.5 BugfixesBrecht Van Lommel
#19345: can't get out of grayed out pointer field. #19342: item_pointerR fields can't be cleared with one item. #19341: fix hanging tooltips when manipulating regions. #19339: context panel still allowed tabbing, but it has no header. #19334: editing SSS settings crashed previewrender. #19330: object mode could not be switched on from the header menu.
2009-09-14Smoke: Daniel Genrich
* Only simulate smoke when starting from startframe
2009-09-14fix warningCampbell Barton
2009-09-14use static functions where possible for some local functions.Campbell Barton
2009-09-14Smoke:Daniel Genrich
* Fixing some gcc warnings
2009-09-14Smoke:Daniel Genrich
* Introduce a better check for fragment support
2009-09-14netrender: add "Animation on network" button to send job to master and ↵Martin Poirier
gather the results in one step.
2009-09-14Bugfix with py operator api and modal operators. Modal operators would keep ↵Martin Poirier
a reference to Reports locally allocated in the api functions, which would crash and burn later when the operator would actually stop. This commit introduces a flag at the Reports level that can be used to indicate that it needs to be freed (on top of the flag already existing in the operator, which I guess could be removed). Reports for operators called through python are only persisted if they indicate that they are running modal.
2009-09-14*Changed texture blend property Flip XY to a proper enum.William Reynish
*Minor adjustments to lamp UI *Fixed issue #19319 (missing notifier)
2009-09-14Link/Append, small changes:Brecht Van Lommel
* Added separate menu items for Link and Append. * Change some OPERATOR_FINISHED to OPERATOR_CANCELLED. * Remove some IPO specific hacks, these are no longer ID blocks, so not necessary to take into account. * Some comment and code formatting tweaks.
2009-09-14Third widget commit ;)William Reynish
Thanks to Broken for finding the bug.
2009-09-14Depsgraph:Brecht Van Lommel
* Move function to compute visible screen layers to BKE. * Use this now in the depsgraph, was still using this all layers to flush. Still missing a way to get the current scene in background mode.. * Also two more function to not require a scene pointer anymore: * DAG_object_update_flags is now DAG_id_update_flags. * DAG_ids_flush_update is now available next to DAG_scene_flush_update.
2009-09-14UI: don't hide Object menu in 3d view header when there is noBrecht Van Lommel
active object, to avoid buttons jumping too much. Also small change in collision panel code.
2009-09-14* Fix for typo in icon_only commit, causing RNA property buttons text to be ↵Matt Ebb
doubled up brecht: I think this is right now...? :)
2009-09-14Bugfix #19337: Crash when tweaking knife operatorJoshua Leung
Knife operator now doesn't crash, but repeat operator for this won't work now since the appropriate 3D-View context info is not set when the mouse is in the Tools region (i.e. when using repeat operator in the tools panels).
2009-09-14Bugfixes:Joshua Leung
* #19338: Crash when using Convert operator Uninitialised var (basact) * Spacebar when in 3D-View EditMode for Text gets overridden by Search Menu. I've tried adding a fix there, but it doesn't seem to work. Woraround for now is shift-space for entering text. * Fixed some compiled warnings in wm_operators.c about naming of var named 'main'
2009-09-14Smoke:Daniel Genrich
* put another drawing method in to test for broken
2009-09-14Smoke:Daniel Genrich
* Bugifx for no shadow on startframe when loaded from cache
2009-09-14Three node selection operators added, patch by Michał Ziułek, thanks!Brecht Van Lommel
* Select all * Select linked to * Select linked from
2009-09-14updated .b.blend; show toolbar by default now, made the view3d clip start ↵Joseph Eagar
saner, and turend on grab manipulator
2009-09-14knife 'mode' is now leftclick with ctrl-x held down, instead of ctrl-altJoseph Eagar
2009-09-14to sphere transform hotkey is now alt-shift-s, since ctrl-shift-s was taken ↵Joseph Eagar
by save as.
2009-09-14* boundbox display option was missing from object propertiesMatt Ebb
2009-09-14remove doubles uses an operator property for the merge distance. it no ↵Joseph Eagar
longer reports number of merged verts to the user, as this violates operator nonmodality and messes up last operator panel workflow.
2009-09-142.5 mesh cleanup: merge tools all work againJoseph Eagar
2009-09-14Smoke:Daniel Genrich
* Totally new try to get cache running * Didn't try "bake" and such things yet Hint * Very verbose yet * Please do only test new blend files, not old ones! Please give me feedback on my blog about the old crashers.
2009-09-14Pointcache:Daniel Genrich
* reset on object transformations
2009-09-14Make compiler easily to override (CC & CCC) and clean up whitespace.Guillermo S. Romero
2009-09-14New 'icon_only' wasn't actually exposed in the ui api, causing errors in the ↵Matt Ebb
py scripts, so I added it to ItemR. Also reverted Joshua's temporary fix, which didn't seem to help much and was making the render engine menu too small.
2009-09-14Prepare for removal of FFMPEG from extern.Guillermo S. Romero
make clean and full rebuild recommended.
2009-09-14*Changed some userpref options to enums.William Reynish
*Tweaked curve UI slightly.
2009-09-13Sculpt UIWilliam Reynish
*Changed Sculpt Modes Flip Direction to an enum so that you can explicitly choose Add or Subtract. *Expanded the sculpt tool list. I realize Nicolas has a longer term plan for the brush tools, but at least now it's useable again.
2009-09-13use Py_SetPythonHome rather then setting environment vars PYTHONHOME and ↵Campbell Barton
PYTHONPATH
2009-09-13== FFMPEG ==Peter Schlaile
This fixes the underlying problem of the DV crashings - within blender code. Problem was, that we tried to seek on decode errors. (Unintentionally, curposition wasn't advanced in that case). That triggered a bug within ffmpeg, that made blender crash. My workaround fix for 2.49 actually only prevented the crash, but didn't stop ffmpeg from only decoding black frames after that point... (The patch also cleans up the color conversion a little bit, by using PIX_FMT_RGBA (still need to find a way to make it work with video files that actually *have* an alpha channel. At least, latest FFMPEG-SVN swscaler has the ability to use alpha.) Looks like we can remove extern/ffmpeg now...
2009-09-13replace curve.curve_2d True/False with curve.dimensions (2D/3D) enum ↵Campbell Barton
suggested by William.
2009-09-13after some discussion, this is the replacement for the old loopcut tool: ↵Joseph Eagar
edge ring select displays a preview of the edge ring, and you can move the mouse with ctrl-alt held down and change the edge ring selection.
2009-09-13Smoke:Daniel Genrich
* Report console error if gfx card does not support smoke drawing
2009-09-13Pointcache / Smoke:Daniel Genrich
* Disable "step" setting for smoke on GUI
2009-09-13Smoke:Daniel Genrich
* Making edge and vertex arrays local to avoid problems