Revision a84e43c by Nathan Letwory March 17, 2011, 16:40 (GMT) |
COLLADA: Don't write empty libraries for geometry, lights, cameras, controllers |
Revision 27abad1 by Ton Roosendaal March 17, 2011, 14:52 (GMT) |
Bugfix #26483 Two small draw fixes to make the giant preview-image search-menu draw correctly. (previews were drawing over a button) |
Revision e0871e0 by Campbell Barton March 17, 2011, 11:08 (GMT) |
bugfix [#26502] segmentationfault on pressing button to browse existing images for UV window really old one!, since initial commit blender would crash scaling down large sizes eg: 60962 -> 128 (width or height). the problem is scaledownx/y doesn't check buffer endpoints, with really large images theres a loop on a float value which can fail with large image sizes. previous commit added asserts if the buffer runs over (assuming it doesnt crash), This commit changes an epsilon value, tested this with random small images as well as images over 200,000 px, and it works fine, this is still flakey though and for really really big images it probably still fails. |
Revision 172f333 by Campbell Barton March 17, 2011, 10:37 (GMT) |
BLI_assert's for when scaledownx / scaledowny don't use the buffer correctly (theres a buffer overrun here [#26502]). |
Revision 4c3dea8 by Lukas Toenne March 17, 2011, 10:31 (GMT) |
Small tooltip change to better indicate the purpose of the node name string and moved the node label button to the top, since this is usually what user will want to edit instead of the identifier name. |
Revision afd8865 by Lukas Toenne March 17, 2011, 10:11 (GMT) |
Added an optional label string to nodes. As pointed out by Sebastian Koenig, some nodes (in particular render layer nodes) need custom labels, but it is not possible to make any useful generic abbreviation. The label string can be used as a custom user-defined label in this case, without the ugly .xxx extensions needed for unique node names. When the label string is empty, the default type label will be used. |
Revision e3842d1 by Joshua Leung March 17, 2011, 10:02 (GMT) |
Bugfix [#26505] zoom in selected keys on graph editor Not really a "bug", but it was on my todo anyways. Based on patch [#26508] by Campbell, with a few modifications including extending this to the Action/DopeSheet editor too. |
Revision 58c8dca by Campbell Barton March 17, 2011, 09:09 (GMT) |
missed removing WITH_INSTALL reference. |
Revision 3304758 by Campbell Barton March 17, 2011, 07:02 (GMT) |
add cancel() method for python defined operators. |
Revision 0277073 by Campbell Barton March 17, 2011, 06:57 (GMT) |
error with TIMEIT util define. |
Revision 719afd2 by Campbell Barton March 17, 2011, 05:15 (GMT) |
changed short's to int's image scale and flip functions (images can be bigger then short range) |
Revision 197e903 by Campbell Barton March 17, 2011, 04:43 (GMT) |
fix for [#26524] Api autocomplete more errors problem was caused by change in python behavior, now hasattr(val, attr) only suppresses attribute exceptions. |
Revision 63099d4 by Joshua Leung March 17, 2011, 02:53 (GMT) |
Bugfix: Grease Pencil paint didn't clean up properly after error-exits This manisfested as an inability to draw any more strokes after trying to draw a stroke while the active layer was locked and then unlocking that layer to try and draw on it again. |
Revision 3ac925b by Campbell Barton March 16, 2011, 22:25 (GMT) |
fix own error - missing NULL check [#26523] Crash when load factory settings ( linked to rigify add-on ? ) |
Revision dc5a78a by Campbell Barton March 16, 2011, 21:58 (GMT) |
fix own error [#26522] Api autocomplete return many errors collections were getting __call__ attribute from the StructRNA, now ignore all starting with '_' |
Revision 4f5e20a by Campbell Barton March 16, 2011, 21:32 (GMT) |
remove cmake WITH_INSTALL option since its a target now. |
Revision 6c972d6 by Erwin Coumans March 16, 2011, 21:20 (GMT) |
BGE PhysicsConstraints.exportBulletFile improvement: also export the object names to .bullet files. |
Revision 67c7fa4 by Andrea Weikert March 16, 2011, 21:05 (GMT) |
== filebrowser == People had trouble finding the 'Create New Directory' operator button in the file browser. Changed this to show the text as well and make button bigger. |
Revision 6dda182 by Janne Karhu March 16, 2011, 18:21 (GMT) |
Fix for [#26520] Point Density turbulence not accessible in Texture Properties. * Mistake in the ui file. * Also found a possible memory leak. |
Revision bcee234 by Brecht Van Lommel March 16, 2011, 15:44 (GMT) |
Mac OS X cmake changes and bundle fixes For cmake users, you should now use "make install" instead of "make". This was already changed for Linux and Windows. Same for Xcode, use the install target. Changes: * CMake install mechanism, resulting bundle was verified to be indentical here. * For cmake, include Info.plist in bundle using builtin mechanism for that. There was some code in packaging.cmake, but it wasn't correct as these properties need to be set on the executable. * For scons, fix app bundle version, was still using removed release/VERSION. * Remove unused blendercreator.app and blenderpublisher.app. * Fix Info.plist being set as a binary file in svn, should be plain text. |
|