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-04-30whitespace edits for bpy api, split some really long lines.Campbell Barton
2011-04-30Fix one more crash introduced with r36384: trying to bake resulted in a segfaultSergey Sharybin
Also, use tabs for indentation in previous fix for the same crash
2011-04-30fix crash using freed memory with SCREEN_OT_screen_set while the current ↵Campbell Barton
screen has a full area.
2011-04-30fix for render stamp text drawing too low.Campbell Barton
2011-04-30fixed a crash introduced in r36384M.G. Kishalmi
where the preview render was calling getCam before setting the scene.
2011-04-30fix [#27221] stamp text bug in lower linesCampbell Barton
2011-04-30normalize quaternions when setting the view axis - some old files had ↵Campbell Barton
non-normalize view rotation.
2011-04-30scene sequencer strips now work when camera override is used even if the ↵Campbell Barton
scene has no active camera.
2011-04-30use camera render argument to avoid temp overwriting the scene camera.Campbell Barton
also fix for mistake with rendering stars from previous commit.
2011-04-30- pass the camera to the render stamp function.Campbell Barton
- add BKE_write_ibuf_stamp() since saving environment maps & screen shots shouldn't have stamp.
2011-04-30add back support for rendering local view camera.Campbell Barton
2011-04-30fix for minor glitch when setting the camera in local view (camera could try ↵Campbell Barton
to smooth view into its self).
2011-04-29corrections for redundant null checks & transform printing a string into its ↵Campbell Barton
self.
2011-04-29fix [#27057] In cam perspective, world-axis-locked xform of an obj at cam ↵Campbell Barton
loc fails when constraining the axis, ensure central point of the transformation is not too close to the view origin since this fails.
2011-04-29spelling corrections.Campbell Barton
2011-04-29fix [#27198] Missing Live LSCM Update after Aligning of pinned vertices (W)Campbell Barton
UV Sync Select was failing with live unwrap.
2011-04-28fix [#26727] Make Proxy ignores group offsetCampbell Barton
2011-04-28Added tooltip note that parent curve 'Follow' needs to be enabled for track ↵Campbell Barton
axis to do anything. also show both enum descriptions in the tooltip (the enum properties description and the individual enums).
2011-04-28Twitter report fix :)Ton Roosendaal
More clear naming for image "source" type. "Single Image" and "Image Sequence" and "Movie File". Thanks @hjalti for poking!
2011-04-28fix [#27201] icosphere normals problemCampbell Barton
2011-04-28Bugfix [#27194] Difficulty selecting bones with boneshapes enabled andJoshua Leung
some bones made un-selectable Pose Bone selection (like object selection) used OpenGL to draw wireframes with different colours into an offscreen buffer and then from that identify which item was clicked on. The bug here was that unselectable bones were getting drawn for this step too, so they were getting caught instead of the control bones that were selectable.
2011-04-28fix [#27193] view/camera/set active object as camera sometimes "disabled" in ↵Campbell Barton
gui (grayed out) When in quad split view, operators that only apply to the unlocked region can now be accessed from menus and when the mouse is over a locked view. Applied to: - VIEW3D_OT_object_as_camera - VIEW3D_OT_view_persportho - VIEW3D_OT_view_orbit - VIEW3D_OT_viewnumpad
2011-04-28smooth view now takes the v3d and region as arguments. (no functional change)Campbell Barton
2011-04-28Mwahahahaha! I think I've found the cause of that awful purple/pinkJoshua Leung
"glow" that was appearing on bones drawn using "octahedral" from certain angles. It seems to have been caused by a typo in the code used to "clear spec colour"
2011-04-28CMake build option for security report: CVE-2009-3850Campbell Barton
Nothing is changed by default but some linux distributions want to have executing python be opt-in. This keeps the same functionality but disables auto-run from factory settings and in background mode unless its enabled as a command line argument. This CMake option is marked as advanced and wont show in the regular options list so its less likely to be enabled by people that like to turn everything ON without reading descriptions :)
2011-04-28skip some calculations with the wave modifier - when the vert has no vgroup ↵Campbell Barton
weight or 0.0 falloff.
2011-04-28fix [#27186] Wave modifier falloffCampbell Barton
regression from 2.4x (own fault)
2011-04-28rename duplicate header defines & remove unused var.Campbell Barton
2011-04-27fix for fix, was incorrectly looping over regions.Campbell Barton
2011-04-27Fix #27176: Creating a new UV layer in edit mode fails to copy previous oneSergey Sharybin
Implemented copying data from active MTFACE layer to newly created. Also, fixed the same bug with vertex colors layer.
2011-04-27fix [#27174] World Starfield Generation causes crashCampbell Barton
allow escaping from render if generating stars takes too long.
2011-04-27fix [#27164] uv unwrap stretchingCampbell Barton
2011-04-27comment regarding bug [#27175] UV faces show incorrect image in object mode ↵Campbell Barton
(VBO's)
2011-04-27remove normalize call in derived mesh GetNormal, its not done anywhere else.Campbell Barton
2011-04-27Fix for bug #26590, `Texture preview fails when path to custom brushNicholas Bishop
icon is set' * Main problem was calling BKE_icon_changed too much, blocked previews from updating * Also fixed clearing the icon when it's not a valid image path Review link: http://codereview.appspot.com/4356045/
2011-04-26fixed some issues with the new "shadow only + shading" code.M.G. Kishalmi
patch from MiikaH.
2011-04-26Adding support for adding copies of existing drivers to other animdataJoshua Leung
blocks via PyAPI/RNA For example: ob = bpy.context.active_object # assumes default cube has some drivers added already before running script dst = bpy.data.objects["Camera"] adt = dst.animation_data_create() for driver in ob.animation_data.drivers: new_driver = adt.drivers.from_existing(driver)
2011-04-26Bump version for imminent 2.57b tag.v2.57bNathan Letwory
2011-04-26- fix for player linkingCampbell Barton
- added notes to release todo's. - renamed view3d view transform matching functions. - added assert in edge split modifier to make a certain bug easier to spot.
2011-04-26fix [#27178] Material links lost when making mesh data localCampbell Barton
- making local object data - Curve/Mesh/MBall lost references to linked materials. - joining a linked mesh object into a local one lost the link. As well as these reported bugs, checked all local functions for consistency/correctness and found other cases which would also fail. - making local metaball didn't ensure unique ID name. - make_local_armature() was missing check for object users - main body of code would never run. - local particles didn't set the dupli-group or textures to extern. checked all local functions for consistency/correctness.
2011-04-25fix [#26993] Edge Split CrashCampbell Barton
2011-04-25indentation changes only.Campbell Barton
2011-04-252.5 Interface:Thomas Dinges
* Implemented a new operator "WM_OT_properties_context_change" to switch to a different tab inside the properties window. * This is used now inside the Modifier tab for Simulation Modifiers. Based on a mockup by Janne Karhu: http://www.pasteall.org/pic/11261 http://www.pasteall.org/pic/11262 Rather than having a delete button there anymore, the button changes the context to Physics/Particles, where you can edit the settings and delete the actual simulation.
2011-04-25workaround/fix [#27162] Running commands in python console crashes blenderCampbell Barton
2011-04-25Fix for [#27112] Boid Particles get Z clamped to 0.0 when "Allow Flighting"Janne Karhu
* Boids that can only fly shouldn't care about ground unless there's actually a collision object below them.
2011-04-25fix [#27139] Value Slider, some colours are two colouredCampbell Barton
2011-04-25fix [#27121] Normals always recalculated when adding a mesh in Edit modeCampbell Barton
2011-04-25fix for a crash with the following steps.Campbell Barton
- open file sel - save user defaults - new file - ctrl+u (crash) wasn't type checking the space file, passed info space to ED_fileselect_exit().
2011-04-25fix [#27140] Negative Subdiv level in the operator panel.Campbell Barton
when relative option is disabled, don't allow setting the subdiv value to a negative number.
2011-04-25Displace Modifier - Optimisation Tweaks for jpbouza and ZanQdoJoshua Leung
- When strength is 0, there's no need to perform any of the calculations at all - When the vertexgroup weight for a vert is set to 0, skip evaluating the modifier for that vertex as it should result in no-change to the final result