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
2011-02-22Fix for [#26160] Blender Crashes when undoingJoerg Mueller
Was trying to free audio data from sequencer strips that don't even have audio. Corrected the error in several ways so this will definitely not happen again :-)
2011-02-22blender as module - workaround for not knowing __file__ when the module is ↵Campbell Barton
initialized.
2011-02-22fix for uninitialized stack variable in displaying the modifier template.Campbell Barton
2011-02-22Too many ifdefs made me miss the fact variables were declared insideTon Roosendaal
function...
2011-02-22No idea why this goes wrong, but I can't get preprocessor output withTon Roosendaal
cmake here. Somehow in OSX a function call doesn't return but enters a next function. Will find around if someone else can make an OSX preprocessed version of this C file. With this commit things go fine, and it's a sane check anyway.
2011-02-22feature back from 2.4x where a python error moves the cursor to the error ↵Campbell Barton
line, added moving to exact column for syntax errors too.
2011-02-22Fixed crash when sculpting on deformed mesh with smooth brush:Sergey Sharybin
vertex iter should be declared inside omp block or it'll be thread-unsafe otherwise.
2011-02-22Fix for [#26163] New Texture selectors don't update Texture previewJanne Karhu
* Send texture notifier instead of generic property space notifier when texture context is changed.
2011-02-22Bug fix: Fluidsim paths were not handled properlyJanne Karhu
* Tsk! Using sizeof(string) to determine string length works if the string is a char array, but not if it's a pointer to a char array! * Now the fluid code uses the actual size of the string directly.
2011-02-22missed updating this when modifying addons module.Campbell Barton
2011-02-22last commit used py3.2 function, inline for py3.1Campbell Barton
2011-02-22Small fix: reset the NTREE_DO_VERSIONS flag, so new node trees don't get ↵Lukas Toenne
updated in future.
2011-02-22Fixed missing initialization of node stack entries.Lukas Toenne
2011-02-22pyapi, use direct access to the frame rather then python attributes.Campbell Barton
2011-02-22Fixed sloppyness bug, used wrong pointer names when calling ↵Lukas Toenne
lib_nodetree_do_versions_group.
2011-02-22cmake was using dna source list with the variable out of scope, possibly ↵Campbell Barton
causing dependency problems.
2011-02-22make doc generation close files (py3.2 complains about this),Campbell Barton
minor formatting changes for C docstrings.
2011-02-22bugfix [#26126] Transparency panel label issueCampbell Barton
2011-02-22fix [#26172] Lattice vertice selection by border selection ( shortcut B ) ↵Campbell Barton
doesn't update vertice number ( in info header ) missing notifier.
2011-02-22operator ED_OT_undo_push, needed for editmode undo/redo glitch fix, (coming ↵Campbell Barton
next).
2011-02-21Accidentally left in a print for commit 34912Ton Roosendaal
2011-02-21Fixed do_versions for node groups which contain nodes that have changed ↵Lukas Toenne
sockets. do_versions is running before the lib_verify_nodetree function updates socket lists of nodes. This means that when adding unlinked sockets in do_versions to restore older node groups, the new sockets are not taken into account. To fix this a temporary node tree flag has been introduced, which delays actual group socket do_version until the group tree internal nodes have been updated. After that the unlinked group sockets are exposed (like old node groups did), then the external sockets look up the new index, so that external links to group instances are preserved.
2011-02-21Bugfix #26116Ton Roosendaal
Node materials with 'ray transparency' set now work again. Fix provided by Ervin Weber, thanks a lot!
2011-02-21Big node groups improvement patch. Node group trees now have their own lists ↵Lukas Toenne
of input/output sockets. Those can be linked to internal nodes just like links between regular nodes. In addition group sockets can be renamed and have a defined order, which can be modified, and they can be removed again. More details can be found in the patch tracker description (#24883) and on the code.blender.org development blog.
2011-02-21build python module without binreloc, add dummy argv[0] to initialize bprogname.Campbell Barton
2011-02-21And another one.Nathan Letwory
2011-02-21Missed this in battle against BLO vs MEM storm.Nathan Letwory
2011-02-21I swear, it was just an innocence change in guardedalloc!Nathan Letwory
The butterfly wing flap, causing a nice storm in the rest of blender. Now all dependencies should point ok again. CMakers, do double-test.
2011-02-21add includes to cmake filesCampbell Barton
2011-02-21Fix for [#26105] Key mapped Rotate equals crash (Windows/MSVC only)Janne Karhu
* Transform info text array was too short for all cases, so some characters got written to invalid addresses.
2011-02-21doxygen: add guardedalloc and AVINathan Letwory
2011-02-21doxygen: COLLADA entryNathan Letwory
2011-02-21doxygen: editor entryNathan Letwory
2011-02-21doxygen: entry for gpu, modifiers, nodes, python and renderNathan Letwory
2011-02-21Move blender version info into BKE_blender.h so we only have the info in one ↵Campbell Barton
place and so package building scripts can extract it in a more usable way. this also means we can have a version string like '2.56a-beta' without using buildinfo. release/VERSION was only used by scons, NSIS installer. Possibly helps to fix bug [#26062] too.
2011-02-21bugfix [#26156] Opening .blend files through OS ignores "Load UI" flagCampbell Barton
2011-02-21bugfix [#26118] Getting 'Error Totblock' when using sub-properties from a ↵Campbell Barton
PointerProperty blender wasnt freeing ID-Properties when freeing the material copy. Checked that this isnt a problem for other preview types - texture/world/lamp.
2011-02-21fix [#26152] Blender File for Image too SmallCampbell Barton
disallow 0% rendersize. also mark new cmake vars as advanced: RPMBUILD, X11_XF86keysym_INCLUDE_PATH
2011-02-21Experimental option to build blender as a python module, rather then blender ↵Campbell Barton
embedding python. CMake build option WITH_PYTHON_MODULE, will build ./bin/bpy.so This allows 'bpy' to be imported from python or other applications/IDE's which embed python, eg: python -c "import bpy ; bpy.ops.render.render(write_still=True)" This runs in background mode and has similar restrictions to running a script: blender --background --python test.py TODO: - install to site-packages with blender scripts - add support for imp.reload()
2011-02-21Revert r35003. It was just an extra semicolonJoshua Leung
2011-02-21Fixed compilation bug in r35002: C90 forbids mixed declarations and code. ↵Konrad Kleine
I've changed the order of variable declarations.
2011-02-21Bugfixes:Joshua Leung
- Fix for crash with Keying Sets when a Keying Set path has no ID- block to target - Info window now indicates the types of the reports shown by colouring their entries if the entries are not selected.
2011-02-20misc warnings/fixesCampbell Barton
- WITH_OPENJPEG wasn't defined for creator.c with CMake. - remove shadowed/redefined vars. - remove some unused RNA report args. - re-arrange IMB_FILE_TYPES so IRIS is not the first format tested, since its not very common test JPEG and PNG first.
2011-02-20Fix for crash when sculpting on multires object during playbackSergey Sharybin
- Restored BLI_pbvh_grids_update stuff; - Marc all nodes as changes in ED_sculpt_modifiers_changed, so draw_buffers would be keept correct.
2011-02-19Bugfix #26150Ton Roosendaal
Crash in hovering over the menu "Pose -> Poselib" sub-items. NULL context passed on to function and read before the test.
2011-02-19Todo item:Ton Roosendaal
Option menus (like Mapping options in texture) now show a tooltip on the button itself, explaining the selected option.
2011-02-19From the todo:Ton Roosendaal
New render output option "No Output", which renders without forcing an editor to show an image. Nice for people who prefer to setup composites with background image view.
2011-02-19Bugfix #25967Ton Roosendaal
Shader nodes: option "backface" failed for materials using full oversampling. The usage of shi->flippednorm in render code is heavily messed up... also flipping vertexnormals themselves feels wrong. Marked it in code with XXX for future fixups.
2011-02-19Bugfix #26015Ton Roosendaal
A very Bad Bug! On every draw-object, a function free_old_images() was called which was freeing "unused" images during renders/bakes This was a left-over from 2.4x code, missed it altogether. I'm sure this fix will solve a lot of render crashing... :)
2011-02-19Rename global_ft_lib and make it static.Diego Borghetti
Remove the XXX code from blf_glyph.c and use the pointer inside the FontBLF struct. If still have problem, let me know.