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-07-27[#22274] Special chars = 2 charactersCampbell Barton
workaround, just remove utf from number strings until we have proper UTF editing.
2010-07-27bugfix [#22605] Context auto-compleate fails first timeCampbell Barton
2010-07-27Jason, from your merge 30325.Campbell Barton
move toolsettings out of the userprefs into the sculpt menu, if these should be userprefs then they should be moved into that struct.
2010-07-27* Partially revert r30763, where PROP_IMAGEPATH was added.Nicholas Bishop
* Brush icon property back to not using image browser until a better solution is decided on.
2010-07-27patch [#23041] CMake WITH_PYTHON_INSTALL optionCampbell Barton
from Dan Eicher (dna) --- snip --- Adds the option to not copy python into the .blender/python directory. Also fixes the problem of deleting the blender installed python where the blender runtime only looks for the copied python and not the system one but not entirely sure why, something to do with CMake hardcoding the PYTHONPATH and PYTHONHOME vars I suppose. This patch only applies to the 'UNIX AND NOT APPLE' platforms but, then again, those are the only ones anyone really cares about...or at least the only ones where using the system python is really viable.
2010-07-27bugfix [#22832] ctrl+shift+a on linked in group which is in a group makes ↵Campbell Barton
outline green
2010-07-27== node editor ==Luca Bonavita
- added backdrop commands in the view menu I couldnt finf them in the menus and also liquidape asked for them - added cut links command in menu, since also this one wasnt thast obvious (now it's ctrl-drag) - micro patch reviewed by jesterKing
2010-07-27patch [#22901] pixel- and aspectratio corrected camera representation in 3dviewCampbell Barton
from Ralf Hölzemer (cheleb) with my own edits to make the selected camera more clear in the camera view, this also works around the problem where you cant see the camera to select it with passepartout close to 1.0. --- snip --- Attached patch changes the camera representation to draw pixel- and aspectratio corrected in 3dview. It does also fix a little issue where the camera name would jump when the title save would be (de)activated in the camera view.
2010-07-27* Fix: CPU usage was going way up because some WM_main_add_notifier ↵Jason Wilkins
functions that I thought were commented out somehow became active again.
2010-07-27* removing code meant for debuggingJason Wilkins
2010-07-27Saved a call to 'brush_alpha'Jason Wilkins
2010-07-26patch [#23039] cmake install taget fix for brush icons on linuxCampbell Barton
from Ralf Hölzemer (cheleb)
2010-07-26patch from Roelf De Kock (kiemdoder), removes redundant values from the ↵Campbell Barton
snapquats[] array.
2010-07-26bugfix [#22985] dope sheet crashes Blender 2.5 BetaCampbell Barton
2010-07-26Fix: Overlay should draw areas that will be affected transparently and areas ↵Jason Wilkins
that will not be effected opaquely.
2010-07-26Curve shape keys:Sergey Sharybin
- Fixed incorrect working of "from mix" insert keyblock operator property shapekey coordinated are applying on curve's data when creating displist, so curve's nurbs can't be used as unchanged data -- use basis keyblock data instead - Fixed tilt damaging when loading editcurve -- made a typo in array indexes
2010-07-26bugfix [#23038] View rotation snap has left and right view names swapped ↵Campbell Barton
arround. also noticed some spelling errors.
2010-07-26[#23033] Unindent after continue statement in Text Space [Patch to fix attached]Campbell Barton
from Justin Dailey (dail) from the tracker --- snip --- In the text space after the python commands return, break, pass or yeild and hitting "Enter" for a new line, it unindents 1 tab. However it does not do this for the continue statement.
2010-07-26[#23032] Bracket Highlighting in Text Space Fix [Patch to fix attached]Campbell Barton
from Justin Dailey (dail) from the tracker --- snip --- In the text editor doing something like this: print(":(") When it goes to match the closing bracket, it will highlight the one in the string, not the first one. Also doing: array["[index"] will cause it to match the second [ with the closing one. I have attached a patch to fix this issue. (See attached image to see correct highlighting) It also works with triple quotes strings(ie """...""" or '''...''') *Note* However, originally bracket highlighting always on even if syntax highlighting is off. The patch makes it so it only highlights brackets when syntax highlighting is on (this is a side effect of doing the code this way, if it was done any other way ALOT of code would have been needed to check for strings,triple quoted strings, escaped quotes, and comments forwards and backwards). When highlighting matching brackets, the code checks the line's format string to see if the char is in a string or comment to skip it. If syntax highlighting is turned off, the format string is null and cannot be used,thus no bracket highlighting.
2010-07-26* Added a new RNA subtype, PROP_IMAGEPATH. It's the same as PROP_FILEPATH, ↵Nicholas Bishop
but for images only. * Changed UI code to display image browser for PROP_IMAGEPATH * Set the icon_filepath RNA property for brushes to use PROP_IMAGEPATH * Changed preview icon drawing to ignore unset icons * Fixed const warnings in brush RNA
2010-07-26[#23035] Obj export crashCampbell Barton
check for an active object before switching modes.
2010-07-26[#23008] Wrong numbers in Edge LengthCampbell Barton
- tooltips didnt say how to get global values. - save a vector addition per vertex when drawing stats by using mul_mat3_m4_v3() instead of mul_m4_v3()
2010-07-26Hopefully fix building with MSVC 2008 from rev 30746.Campbell Barton
SCA_PythonController.cpp(303) : error C2133: 'mod_path' : unknown size
2010-07-26Fix #22749: texture view mapping for spot lamps wasn't doing perspectiveBrecht Van Lommel
division, giving incorrect projection.
2010-07-26move directories:Campbell Barton
dlltool --> build_files/make/dlltool bin --> release/bin Since dlltool is only used make + mingw and ./bin is misleading because it would seem the blender binary would be copied there, but its just used for home directory files. updated scons/cmake/make
2010-07-26[#22846] GCC 4.4.1 support in WindowsSergey Sharybin
In this commit i've fixed crash when opening file browser. This crash was caused by different _stat structures size in storage.c and filelist.c (because of force setting __MSVCRT_VERSION__ in storage.c), other errors from report were fixed earlier. I've used _stati64 strcutrure and functions and tested on official mingw-gcc 3.4.5, official mingw-gcc 4.4.0, tdm-mingw-gcc 4.4.1, cross mingw-gcc 4.4.4 and cross mingw-gcc 4.2.1-sjlj -- everything was ok in this configurations (except openexr and opencollada libraries which requires sjlj compiler, so i was unable to build blender with that libraries by official mingw-gcc 4.4.0)
2010-07-26Fix for [#22073] Particle Emit From Volume Button No Different Than Emit ↵Janne Karhu
From Faces Button
2010-07-26Add missing banner for installer.Nathan Letwory
2010-07-26in debug mode report the time to load addon modules.Campbell Barton
2010-07-26patch from Mitchell Stokes with some changes.Campbell Barton
BGE Py Controllers were effectively doing this... "a.b.c" --> "__import__('a').b.c()" This was annoying because it meant module 'a' would need to import 'b' explicitly. Now use import like this. "a.b.c" --> "__import__("a.b").c()" Note that this has the slight disadvantage that these need to be modules, where as before they could be collections of functions in a class instance for eg. So its possible this breaks existing files but dont think anyone used this since its a fairly obscure use case.
2010-07-26replace macros VECCOPY and QUATCOPY with inline math functions no functional ↵Campbell Barton
changes also replace mul_m4_v3() with mul_v3_m4v3() in a few places.
2010-07-26[#22617] Using register/unregister alone crashes blenderCampbell Barton
wasnt crashing anymore but made exception message clearer.
2010-07-26bugfix [#22962] Crash when starting the render in the attached file (Kino ↵Campbell Barton
Bug Reporting Sprint :) NULL checks on tex->pd are elsewhere in the code so this should be ok.
2010-07-26* was suggested I combine all the direction modes into a single enumeration ↵Jason Wilkins
by using RNA_def_property_enum_funcs
2010-07-26bugfix [#23018] Can't run 2.53 buildCampbell Barton
for some reason mbstowcs() was converting '/home/matrem/Téléchargements/' to '/home/matrem/T', where blenders utf8towchar() worked correctly, tried changing my locale but didnt help so using blenders utf8towchar() function.
2010-07-26== Sculpt ==Nicholas Bishop
Fixed brush icons loading slowly * Changed brush icon property from an enum to a flag that toggles whether a custom file is used for the brush icon * Changed get_brush_icon to only handle loading external icons, built-ins are handled through the regular icon system * Modified preview icon drawing to allow built-in icons * When not using a custom icon, a default icon is selected based on the current tool TODO: * Allowing preview to show built-in icons makes the brush texture selector look ugly when nothing is selected. As discussed on IRC though, the nothing-selected state needs to be clarified anyway; I'll address this in another commit * Use image browser when selecting a custom icon * Selecting the default icon is ugly (uses the active object's mode), this can be fixed by making brushes know which paint mode they are part of
2010-07-26* Accessing Brush size, alpha, size pressure, alpha pressure, and ↵Jason Wilkins
unprojected radius need to use the appropriate brush_* function.
2010-07-26* Factored out some duplicated code from rna_brush into paint.c, added a new ↵Nicholas Bishop
function that checks whether a brush is used by that paint struct * Fixed an improperly initialized variable in BKE_previewing_free_id * Added an RNA access function to get the icon associated with a value
2010-07-26[#22918] Animations not being deleted from .blend filesCampbell Barton
fake user button wasnt available so there was no way to have an action removed for the user.
2010-07-26bugfix [#22994] Crash when loading this fileCampbell Barton
2010-07-26bugfix [#21388] Auto depth + Z Transparency artifactsCampbell Barton
2010-07-26bugfix [#22836] Alt+MMB view alignment don't respect all axes directionsCampbell Barton
also moved rotation_between_quats_to_quat into BLI_math from python mathutils.
2010-07-26== Sculpt ==Nicholas Bishop
More icon work * Added icon defines for all the brushes * Load all the brush icons after loading regular Blender icons * Added the brush icons to their respective tool enums in RNA * Fixed a couple unused-variable warnings
2010-07-26== Sculpt ==Nicholas Bishop
Minor sculpt cleanups * Moved the (previously extern) declarations of the brush icon data to ED_datafiles.h * Set sculpt tool RNA to alphabetical order, quite a long list now
2010-07-25== Sequencer ==Peter Schlaile
Some cleanup on effects: - converted interface to float cfra - made effects return their own ImBufs, which has the following advantages: * code in sequencer.c is a lot more readable. * multicam saves one memcpy of an image * prepares things for GPU-rendering
2010-07-25Fix for [#22128] particle sizes and physicsJanne Karhu
* size wasn't updated at all for particles with keyed or no physics
2010-07-25Fix for [#22167] Hair lattice only works with dynamic hairJanne Karhu
* Doing hair effectors, guides & lattices all in one loop didn't work properly
2010-07-25Shapekeys for curves/surfecesSergey Sharybin
Fix #21498: Edit curve Shape key /252_r 27318 Added full support of shape keys for curves and nurbs surfaces including topology changing in edit mode, undo stuff, updating relative keys when working under basis and so on.
2010-07-25py api mathutils.Quaternion()Campbell Barton
- getting axis, angle wasnt calling read callbacks so it didnt work with RNA. - made setting axis and angle attributes possible.
2010-07-25from Luca's recent commit noticed there are more typo's: lenght -> lengthCampbell Barton