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
path: root/source
AgeCommit message (Collapse)Author
2011-02-27doxygen: blender/imbuf tagged.Nathan Letwory
2011-02-27doxygen: blender/makesrna tagged.Nathan Letwory
2011-02-27doxygen: blender/nodes tagged.Nathan Letwory
2011-02-27doxygen: blender/python tagged.Nathan Letwory
2011-02-27doxygen: blender/quicktime tagged.Nathan Letwory
2011-02-27doxygen: blender/readblenfile tagged.Nathan Letwory
2011-02-27doxygen: blender/render tagged.Nathan Letwory
2011-02-27== CMake Win ==Andrea Weikert
* remove copying of libjack dll's, libjack is statically linked now.
2011-02-27== UI icons ==Andrea Weikert
* Change ICON_NULL --> ICON_NONE to avoid two #defines with the same meaning.
2011-02-27== UI icons ==Andrea Weikert
* Moved two #defines out of the enum to make code more readable.
2011-02-27Bugfix, own collection.Ton Roosendaal
Curve widget editing used bad pointer, unsure in which cases it would crash though...
2011-02-27== UI icons ==Andrea Weikert
* Moved ICON_BLENDER away from (0,0) spot in blenderbuttons, since ICON_BLENDER=0 define is conflicting ICON_NULL define as well as with logic checks for nonzero icon id. * This solved bug where ICON_BLENDER can't be set from Python as well as when using new UI functions from within Blender.
2011-02-27Fixes for undo when suclpting on deformed mesh:Sergey Sharybin
- Invalid shape when deformation mesh was disabled befoe undoing - Crash when deformation modifier was enabled before undoing Still got problems with undoing multires changes when toggling modifiers.
2011-02-27replace import *'s with named imports (using * is convenient for some ↵Campbell Barton
scripts but considered bad practice by python devs)
2011-02-272.5 Transform Operator:Thomas Dinges
* Added a NC_OBJECT|ND_TRANSFORM notifier to it, so we get a refresh when using the operator from python console. Issue reported by calli in IRC.
2011-02-27BGE patch: [#26223] Some RigidBody joints fixes (ui angles, conetwist/hinge ↵Dalai Felinto
limits etc) by Juha Mäki-Kanto + ui changes pour moi From the tracker::: Issues fixed: - ConeTwist-constraint's params weren't making it to the CcdPhysicsEnvironment, also added Hinge's params. - UI wasn't using angles where applicable. - btHingeConstraint's constructor can create frame-matrices which don't align so the hinge doesn's start at 0 degree tilt. This is an issue when setting limits. Changes: - UI: Hinge limits can be set (and disabled). - UI: ConeTwist only has max-limits and only the twistX can be disabled - PyApi via rna_constraint.c: added the functions limit_xyz_min, limit_xyz_max (for 6dof), limit_angle_xyz_min, limit_angle_xyz_max (for 6dof), limit_angle_x_min, limit_angle_x_max (for hinge). - PyApi: dropped python-function limit_cone_min. .:. Extra: UI Changes: - renamed "RigidBody Joint" to "Rigid Boidy Joint" - reorganized UI to conform with other parameters (e.g. Limit Rot) - added dis/active all over the place :)
2011-02-27pedantic warning cleanup, also remove texspace_edit() since its been added ↵Campbell Barton
using a different method.
2011-02-27- use Py_CLEAR for python internally referencing other PyObjects (supposed ↵Campbell Barton
to be safer). - detect includes for qtcreator projects as well as the ones from cmake (it didnt return all of the right paths).
2011-02-27cyclic gc support for KX_PythonSeqCampbell Barton
2011-02-27Grease Pencil stroke smoothing cleanup - making this less susceptibleJoshua Leung
to sequential error by adopting a two-pass smoothing strategy instead. This seems to give some minimal reductions in the amounts of unwanted shrinkage that occurs
2011-02-27Small animation tweaks:Joshua Leung
- Fixed problem where just trying to replace existing keyframes would result in the intepolation set on that keyframe to get lost. This was mostly an issue if trying to re-block some animation in the middle of a shot, with the rest of the keys set to Bezier, but the first keyframe in this new segment needing to be Constant so that we don't get sloppy automatic interpolation in the way - Hooked up Media-Play/Stop/Next/Prev controls to animation playback and keyframe jumping functionality in default keymap in addition the existing controls. I'm also considering whether to migrate Next/Prev Keyframe key mappings off the Ctrl-PageUp/Down keys for a more ergonomic option (i.e. shift <, shift >)
2011-02-26Sampling float colors in Image Editor only showed 3 digits precision.Ton Roosendaal
Let's make it four! :)
2011-02-26Bugfix #26231Ton Roosendaal
Mesh editing: operator "Blend From Shape" had blending off as default. A bit weird... so let's change :)
2011-02-26fix for 'live edit', running python scripts as you typeCampbell Barton
- errors would jump to the line which gets in the way. - the window wouldn't always redraw.
2011-02-26use const char for return values of getenv().Campbell Barton
2011-02-26Bugfix #26221Ton Roosendaal
Two bugs in one: - Lukas commit monday for new group/socket handling accidentally removed to set socketype in stacks, which as used by (texture) nodes to detect whether value, color or vector had to be read. Result was that all texture nodes were rendering as B&W - Old 2.5 bug: preview renders for texture nodes didn't call a NodeEndExec function, which gave crashes on deleting nodes. The change in interface_hanlers.c is only a comment to explain how keymaps are being found.
2011-02-26fix [#26227] "Sequence must have 2 items total, not -2"Campbell Barton
2011-02-26Bugfix: In Action Editor, when "show pose markers" was enabled, allJoshua Leung
markers were always drawn as local pose-markers, even when they were not.
2011-02-26Added operator which makes selected scene markers into local 'pose'Joshua Leung
markers. This is useful for when working with lipsync shots, where you've used markers for noting down key syllables and want to separate these out into chunks to manage things better.
2011-02-25Fix #26158: The layer hight of the layer tool cannot longer be controled by ↵Sergey Sharybin
the strength of the brush, as it was in 2.49 Layer height used to be controlled with brush radius, quite confusing decision. Added new property for brushes - height for adjusting affectable brush height (it could be not only layer height in the future).
2011-02-25Bugfix #26174Ton Roosendaal
Shift+A "add primitive" menu didn't allow to set shortcuts on the sublevels.
2011-02-25Bug fix, irc report.Ton Roosendaal
Menu Help -> Operator Cheat Sheet crashed, calling function with NULL context.
2011-02-25follow up on patch [#26215], not all weakref references were ifdef'dCampbell Barton
2011-02-25fix for scons with recent change to how BINRELOC is enabled via cmake.Campbell Barton
also add WITH_PYTHON define to qtcreator project generator until we get a way to add them properly.
2011-02-25patch [#26215] Python weak reference (weakref) support for game objectsCampbell Barton
by Alex Fraser (z0r)
2011-02-25doxygen: blender/windowmanager tagged.Nathan Letwory
2011-02-25doxygendoxygen: blender/modifiers tagged.Nathan Letwory
2011-02-25doxygen: tag blenderplayer stubs.Nathan Letwory
2011-02-25doxygen: gameengine/VideoTexture tagged.Nathan Letwory
2011-02-25doxygen: gameengine/SceneGraph tagged.Nathan Letwory
2011-02-25doxygen: gameengine/Rasterizer tagged.Nathan Letwory
2011-02-25doxygen: gameengine/Physics tagged.Nathan Letwory
2011-02-25doxygen: gameengine/Network tagged.Nathan Letwory
2011-02-25doxygen: gameengine/Ketsji tagged.Nathan Letwory
2011-02-25doxygen: gameengine/GamePlayer tagged.Nathan Letwory
2011-02-25doxygen: gameengine/GameLogic tagged.Nathan Letwory
2011-02-25doxygen: gameengine/Expressions tagged.Nathan Letwory
2011-02-25doxygen: gameengine/Converter tagged.Nathan Letwory
2011-02-25doxygen: gameengine/BlenderRoutines tagged.Nathan Letwory
2011-02-25doxygen: kernel/gen_system tagged.Nathan Letwory