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
2010-08-04Add BF_BUILDINFO support to Python API too.Nathan Letwory
reported by dail in IRC #blendercoders.
2010-08-04== docs ==Luca Bonavita
Started some api documentation, hopefully these pages are now a bit more clear: - http://www.blender.org/documentation/250PythonDoc/bpy.types.Panel.html - http://www.blender.org/documentation/250PythonDoc/bpy.types.Menu.html - http://www.blender.org/documentation/250PythonDoc/bpy.types.Header.html
2010-08-04Fix #23003: setting particle number to 0 was not working correct,Brecht Van Lommel
committing patch #23119 by Jeroen Bakker to fix this, thanks!
2010-08-04Fix #23099: cmake/mac did not copy the scripts/ directory correct for install.Brecht Van Lommel
2010-08-04Fix sculpt 3d view menu showing in two columns.Brecht Van Lommel
2010-08-04Fix #23157: missing sculpt symmetry and appearance panels after pythonBrecht Van Lommel
registration changes.
2010-08-04Fix hang on opening addons tab, having a .py file without bl_addon_infoBrecht Van Lommel
would go into eternal loop.
2010-08-04Fix #22869: procedural compositing buffers from texture nodes were not restoredBrecht Van Lommel
correct between localize/merge, bugfix for #21727 only did it one way.
2010-08-04rewrote wm.context_set_id() to automatuically match the pointer type with ↵Campbell Barton
the bpy.data.* iterator by inspecting rna.
2010-08-04updated brush options from last commit so they are filtered correctly ↵Campbell Barton
(sculpt brushes only available in sculpt mode)
2010-08-04Brush/Paint internal changesCampbell Barton
- remove brush array for each Paint struct, just use a single brush pointer. - removed rna function based template filtering. - filter brushes using a flag on the brush and the pointer poll function. - set the brushes using a new operator WM_OT_context_set_id(). TODO - remake startup.blend, currently brush groupings are lost. - rewrite WM_OT_context_set_id() to use rna introspection.
2010-08-04fix path to release/python.zip for scons and cmakeStefan Gartner
I hope this doesn't break anything
2010-08-04Fix crash accessing particle edit values outside of particle edit mode.Brecht Van Lommel
2010-08-04Fix crash in point cache baking due to my recent changes.Brecht Van Lommel
2010-08-042.5: Hide options panel for halo materials, none of the settings hereBrecht Van Lommel
should have an effect on halo's currently, and they share some of the same flag bits as other halo options, which makes it even more confusing.
2010-08-04== Makefiles ==Stefan Gartner
* add support for LCMS (disabled by default, set WITH_LCMS to true to enable it) * fixed typo that prevented TIFF support to be properly enabled * enable ray optimization by default (scons and cmake already did this) * fixed building with libsndfile on darwin (disabled by default) * quicktime: use audaspace headers from $(NAN_AUDASPACE)/include instead of intern * gameengine: add -DWITH_FFMPEG to compiler flags when building with ffmpeg support
2010-08-04include cleanup, no functional changesCampbell Barton
- removed DNA_brush_types.h from DNA_scene_types.h (and some other similar cases) - removed DNA_wave_types.h (never used) - removed Main.wave
2010-08-04[#23162] GCC 4.2 and prior support broken in CMakeLists.txt as of r30985Campbell Barton
revert warning changes from r30985, broke with older GCC
2010-08-04Fix unbalanced {}.Guillermo S. Romero
2010-08-04bugfix [#23173] Blender crashes on selecting display color corrected image ↵Campbell Barton
in image editor notes, - Use our own callback which doesnt exit() blender. - Hard coded 'MONOSCNR.ICM' is bad, should this be a user preference or stored per image? - imb->crect was being set to imb->rect in some cases, disable this because its possible 'rect' gets reallocated and crect becomes freed memory. - when crect cant be created draw pink checkers, so users dont get confused if color correction isnt working. (previously would draw the uncorrected image, if it didnt crash)
2010-08-04Increase min/max range for Value input nodes. More useful when using Math ↵Nathan Letwory
nodes (inverting sign was impossible using value input in CMP before).
2010-08-04Add button to set Compression level when output to PNG. Without this there'd ↵Nathan Letwory
be absolute no compression at all = large PNGs.
2010-08-04Missed keyIndex data existment check when the whole nurb is deletingSergey Sharybin
2010-08-04exit image externally wasnt checking if the image existed first.Campbell Barton
2010-08-04removing the f so that glsl shaders work on older cardsTom Musgrove
2010-08-04bugfix [#23174] Text Editor: View Top of File and View Bottom of File not ↵Campbell Barton
working [Patch to fix attached] also moved these into the View menu (removed Edit->View)
2010-08-04bugfix [#23158] Translate operator leaks memory if nothing selectedCampbell Barton
2010-08-03fix for typo in commit #31007: filtering in file browser for png and tga ↵Andrea Weikert
files wouldn't work anymore.
2010-08-03Export OBJ script:Thomas Dinges
*Removing some ancient lines.
2010-08-03Audaspace Py API: Updated some outdated docs.Joerg Mueller
2010-08-03minor cleanup, minimal functional change.Campbell Barton
replace some long duplicated, ifdef'd if statements for image extension. - new function: BLI_testextensie_array(), can take an array of extensions. - define extension arrays: imb_ext_image, imb_ext_movie, imb_ext_sound - we could have more of these. - removed amiga extensions iff and lbm
2010-08-03build options to disable image formats WITH_CINEON, WITH_HDR.Campbell Barton
- updated cmake, make & scons. - renamed CMake build options WITH_TIFF -> WITH_IMAGE_TIFF, same for DDS, OPENJPEG etc.
2010-08-03Audaspace:Joerg Mueller
* Py API: Renamed Sound to Factory to match the C++ classes and make it possible to add Readers when necessary to the API. * Py API docs: Added the filter example. * Fixed a crash for sounds without stop callback.
2010-08-03Audaspace Py API: Getting rid of unnecessary forward declarations.Joerg Mueller
2010-08-03remove commented scons lines from cmake files, fixed use of pointer poll ↵Campbell Barton
function for ID drobdowns (currently unused)
2010-08-03Audaspace:Joerg Mueller
* Added an error string for audaspace exceptions. * Fixed PyAPI exceptions. * Minor bugfixes. * Added a name parameter to the Jack device, so that one can define an own name via Python.
2010-08-03pointer poll functions for object's, mainly for modifiers, constraints.Campbell Barton
Lattice modifier only shows lattices types, Shrink wrap only meshes etc.
2010-08-03forgot to update addons with recent update to bpy.typesCampbell Barton
2010-08-03rna pointer poll function, not used yet.Campbell Barton
2010-08-03py/rna update, reload works again.Campbell Barton
- fix for reload (f8) crashing, missing incref when creating the script namespace. - store the module names rather then the modules for reloading incase the modules get out of date.
2010-08-03bugfix for python console getting its namespace cleared after the first ↵Campbell Barton
command was executed.
2010-08-03set origin was setting surfaces as 2D curves, added dupli-group support ↵Campbell Barton
using the dupli's offset value.
2010-08-03Audaspace Py API:Joerg Mueller
* Devices are now created with the constructor instead of class methods.
2010-08-03[#23156] Cannot Edit Custom PropertiesMartin Poirier
Missing import after moving operators around.
2010-08-02Audaspace:Joerg Mueller
* Added a stopCallback function that is called when the end of a sound is reached. * Fixed the scrubbing not working. * Minor SoundActuator cleanup.
2010-08-02added capabilty to limit color spill by an input maskRobert Holcomb
2010-08-02bugfix [#23151] UV Project not update in realtime until you save the file ↵Campbell Barton
and reopen it.
2010-08-02patch [#23054] Fix for bug #22725 "text editor doent scroll with cursor"Campbell Barton
fixes [#22725] text editor doent scroll with cursor from Justin Dailey (dail)
2010-08-02SConsCampbell Barton
- remove scons option WITH_BF_FHS, its not needed anymore. - comment WITH_BF_DOCS, was using epydocs which we dont use now. - blenderlite target was broken, always using openmp. - building without python wasnt working. - fixed some warnings.
2010-08-02cmakeCampbell Barton
- more strict warnings for gcc/unix, still <50 for a clean build. - install files to /usr/local/share/blender/2.53 rather then /usr/local/share/blender/.blender