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-03-17Bugfix [#26505] zoom in selected keys on graph editorJoshua Leung
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.
2011-03-17missed removing WITH_INSTALL reference.Campbell Barton
2011-03-17add cancel() method for python defined operators.Campbell Barton
2011-03-17error with TIMEIT util define.Campbell Barton
2011-03-17changed short's to int's image scale and flip functions (images can be ↵Campbell Barton
bigger then short range)
2011-03-17fix for [#26524] Api autocomplete more errorsCampbell Barton
problem was caused by change in python behavior, now hasattr(val, attr) only suppresses attribute exceptions.
2011-03-17Bugfix: Grease Pencil paint didn't clean up properly after error-exitsJoshua Leung
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.
2011-03-17fix own error - missing NULL check [#26523] Crash when load factory settings ↵Campbell Barton
( linked to rigify add-on ? )
2011-03-17fix own error [#26522] Api autocomplete return many errorsCampbell Barton
collections were getting __call__ attribute from the StructRNA, now ignore all starting with '_'
2011-03-17remove cmake WITH_INSTALL option since its a target now.Campbell Barton
2011-03-17BGE PhysicsConstraints.exportBulletFile improvement: also export the object ↵Erwin Coumans
names to .bullet files.
2011-03-16Fix for [#26520] Point Density turbulence not accessible in Texture Properties.Janne Karhu
* Mistake in the ui file. * Also found a possible memory leak.
2011-03-16Mac OS X cmake changes and bundle fixesBrecht Van Lommel
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.
2011-03-16Bug fix: Changing volume texture properties after render crashes (reported ↵Janne Karhu
by mats on irc) * Preview render copied the volume texture, but not the actual volumedata, so normal render and preview render clashed.
2011-03-16Fix for [#26516] Blender crashes for Particle Physics Path Editing.Janne Karhu
* Silly own mistake from some previous code cleanup.
2011-03-16redo panel now runs check() function when defined, filesel and popup dialog ↵Campbell Barton
were already doing this.
2011-03-16update x3d test md5s for recent changes, also ensure directory is created or ↵Campbell Barton
export tests fail.
2011-03-16api function added for [#26481] Export to X3D of IndexedFaceSet should use ↵Campbell Barton
X3D 's DEF USE mechanism Object.is_modified(scene, 'PREVIEW') function for python exporters to check if any modifiers or shape keys are applied (weather the original mesh can be used for exporters).
2011-03-16Fix nan / black dots in image textures in some corner cases.Brecht Van Lommel
2011-03-16changes to icon loadingCampbell Barton
- look for icons in datafiles/icons (was looking in datafiles) - was loading all images in datafiles/ on startup to check if they were the correct icon size, commented this since its unnecessary disk overhead on startup & images are checked for correctness when used anyway. when running blender from the source dir would load splash.png every time. also add missing NULL pointer check if the icon couldn't be loaded and ensure no buffer overflow check on icon path creation.
2011-03-15Small safety fix: clear temporary link list in node space when copying.Lukas Toenne
2011-03-15"Fix" #26445: edit mode vertex distortionSergey Sharybin
Discussed with Campbell, it's not actually bug and it's more about limitation of topology mirror. It will work properly when both sides of mesh have matching unique topology. Added note to tooltip, so now unpredictable behaviour shouldn't confuse users so much. Also gray out "Topology mirror" when "X Mirror" is disabled.
2011-03-15fix for crash with textbox add poll function, missing NULL check.Campbell Barton
2011-03-15fix [#26494] Auto run Python scripts option in User Preferences problemCampbell Barton
- opening a file with blender by passing it as an argument would and loading it once in blender left script auto execute flag in a different state. - command line args --enable/disable-autoexec were being overridden by the user prefs.
2011-03-15use defines for BKE_read_file, no functional change.Campbell Barton
2011-03-15fix [#26507] Rename bone -> segfaultCampbell Barton
2011-03-15fix [#26504] Deselection of vertices not working in UVs editorCampbell Barton
2011-03-15bugfix [#26505] zoom in selected keys on graph editorCampbell Barton
measure uv vertex distance in screen pixels rather then image.
2011-03-15fix for building on some configurations.Campbell Barton
2011-03-15fix/disallow [#26502] segmentationfault on pressing button to browse ↵Campbell Barton
existing images for UV window creating RNA within draw functions can free existing RNA, crashing blender when this is already used in the UI. disallowing this so it raises a python exception. This was being used to dynamically generate addon categories so for now they are hard coded and we need proper enum-functions for python to do this.
2011-03-15quiet warning for GCCCampbell Barton
2011-03-15fix [#26478] New image extension is appended to the old one instead of ↵Andrea Weikert
replacing it Note: Extension is replaced with the new extension if it's a known image extension. Brings back old behaviour, a little bit refined.
2011-03-14== filebrowser ==Andrea Weikert
Cleanup of selection code. Also fixed bug where selection outside the tiles was clamped and file in last column was selected.
2011-03-14Fix for [#20171] Properties of Hair are not animateableJanne Karhu
* Don't know when this got broken again, but now the "regrow hair" option works like it's supposed to again.
2011-03-14Fixes for GNUmakefile on Mac:Brecht Van Lommel
* Don't use "make install", doesn't work yet. * Use total number of cores rather than number of processors. * Quicker number of cores query, by not asking for all system info.
2011-03-14Bugfix #26498Ton Roosendaal
CTRL+L "Make Links" operators were not using a correct poll(), causing crash on using it without active object.
2011-03-14Bugfixes:Joshua Leung
- Sync Markers option works for local markers (or any other list of markers in future) too now. - Apply Pose to Restpose operator now displays a warning if an action was found (warning about the action now being invalid)
2011-03-14bpy.types.libraries.load sphinx doc & examples (doc system needed some updates).Campbell Barton
http://www.blender.org/documentation/blender_python_api_2_56_3/bpy.types.BlendDataLibraries.html#bpy.types.BlendDataLibraries.load
2011-03-14Measure of precaution: clear the list of temporary links in the node space ↵Lukas Toenne
after loading, in case the file was saved during active modal linking operators.
2011-03-14auto-complete was moving the selection.Campbell Barton
2011-03-14fix [#26489] Auto completion in console brokenCampbell Barton
own mistake in r35492.
2011-03-14move mathutils api changelog into wiki.Campbell Barton
2011-03-14change addon defaults.Campbell Barton
- export uv layout enabled. - 'render_netrender' enabled (still needs being made into an addon). - export camera data disabled.
2011-03-14patch [#26495] Adjustable outline width for selected objectsCampbell Barton
2011-03-14tag var as unused.Campbell Barton
2011-03-14Bugfix: "Sync Markers" option in Action Editor is now a bit moreJoshua Leung
useful. Instead of only working for the "extend" transform mode, standard transforms now work too now (i.e. grab and scale). TODO: This currently only works on Scene markers, though it should be possible to make this work on a provided list of markers instead...
2011-03-14RNA API RenameCampbell Barton
'create' was used as prefix and suffix, change dupli list functions to use as suffix, this matches obj.animation_data_create() & obj.animation_data_clear(). obj.create_dupli_list() --> obj.dupli_list_create() obj.free_dupli_list() --> obj.dupli_list_clear() Don't use 'create' for object to mesh function since other uses of this are for createing data which stays attached, instead use mathutils style naming convention. obj.create_mesh() --> obj.to_mesh()
2011-03-14add dir() function for library objects, also was missing call to clear temp ↵Campbell Barton
flag on exceptions.
2011-03-14Group tree sockets were not being freed after removing.Lukas Toenne
2011-03-14Fix for crashes due to links without fromnode pointers. This can happen with ↵Lukas Toenne
"unfinished" links created during the modal linking operator or when creating links from group tree inputs. In addition don't store unfinished links in the nodetree->links list any more. This makes code a bit safer because all links in that list can be considered valid now. The temporary bNodeLinkDrag structs used by the modal linking operator are now also stored in a list in SpaceNode, so these links can be drawn too (this separation also allows different display of temporary links, e.g. currently they are drawn on top of all nodes).