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-01-15* don't copy .pyc filesNathan Letwory
2010-01-15Fix [#20437] Impossible to load "voxel data" sequence file from Matt Ebb
texture panel (field missing?)
2010-01-15* Fix two issues:Nathan Letwory
- makesrna would crash on Windows with this malloc business (writing wrong places). - The one malloc never got freed (apart from not being MEM_callocN - which should be used instead of vanilla malloc/calloc!)
2010-01-15Fix [#20129] emulate numpadMatt Ebb
Converted Command+LMB to send a RMB click event on Mac OS X, if Emulate 3 Button Mouse is switched on. Also fixes for previous commit, didn't all go through.
2010-01-15Tweaked/added poll functions to prevent operators that requireMatt Ebb
a 3D View from being used outside the 3D View (i.e. the info header search button)
2010-01-15Fix [#20514] In sculpting mode is possible to use page down/up to exceed the ↵Matt Ebb
actual multiresolution level
2010-01-15Adding back cursor to center menu entry that was mistakingly removed by an ↵Martin Poirier
unnamed person.
2010-01-15Transform Constraints: When axis is quasi perpendicular to the screen ↵Martin Poirier
(within 5 degrees), it uses vertical motion of the mouse instead of normal axis projection. This behavior isn't new, but the 5 degrees limit is (it's also the limit at which manipulator axis disappear), it used to be much lower than that making small angles hard to manage.
2010-01-15fix for possible crash with the boundbox of a mesh used when freed.Campbell Barton
2010-01-15patch [#20673] Fixed descriptions in Torus mesh controls, and added some ↵Campbell Barton
requested controls from Jaevixa McNomera (jaevixa)
2010-01-15Text Editor: Add an option "Tabs as Spaces".Dalai Felinto
So now tab is not ALWAYS converted to spaces. This is stored by text datablock (what allows to do nice things in the future, as automatic check for the indentation type of the file). Ideally we should redraw the other Text Editor windows after changing that (in case the same file is opened and the Property panel is also open). Not sure how to do that though. I'm using TABSTOSPACES as the DEFINE flag because TABSASSPACES sounds too ugly. (also fix for interface divisor bug)
2010-01-14Ctrl+RMB select in the dope-sheet wasnt working, this nlabackup stuff isnt ↵Campbell Barton
being done for select-all so not sure why its there, commented it out for now. Aligorith, please check.
2010-01-14[#20672] TimeLine (arrows will not proceed animation) Martin Poirier
RNA notifiers don't have a window and didn't get picked up correctly by the animation redraw system. If there's no window defined in a scene notifier, handle it anyway if the scene matches (or if there aren't any).
2010-01-14[#19978] Can not switch view with keymaps while emulate numpad is activated; ↵Martin Poirier
in modes other than object and edit Was caused by event emulation (numpad and mmb) happening separately at each level of the keymap, so brush selection was latching on the event before it had time to test emulated values with view navigation entries (at a lower level in the hierarchy). After discussion with Matt, decided that event emulation should be done at the root of the event loop, replacing the event with the emulated values. This is much more predictable and more logical as far as event emulation goes.
2010-01-14Mkey toggles mask while in vertex/texture/weight paint mode.Campbell Barton
remove unused operator property
2010-01-14improve volume preserving puff to shape the end strands of the hair in ↵Campbell Barton
relation to the underlying form of the head.
2010-01-14Cocoa : fix for modifiers keys handling upon application switchingDamien Plisson
- fix race condition between applicationBecomeActive, and WindowBecomeKey events that discarded the modifiers keys status change event message - workaround for a 10.6 bug that made the Cmd (oskey) modifier erroneously on.
2010-01-14uv layout svg files were not importing into inkscape or firefox (gimp worked)Campbell Barton
2010-01-14UV layoutCampbell Barton
- set the width of the line to be 1 pixel - add the object name onto the blendfile name.
2010-01-14Join as UVs.... (copies matching UVs to another object with the same topology)Campbell Barton
nice that it uses foreach_get/set for fast array copying from python. note: this is getting out of hand, we beed some central panel/interface for copying mesh data about - shapes, UVs weights etc. at the moment they are accessed from all different places.
2010-01-14Little fun feature for SCons users: set BF_LINE_OVERWRITE=True in your ↵Nathan Letwory
user-config.py or on command-line when BF_QUIET=True. This will reuse the same line of the previous compile message (Compiling ==>...). Warnings and other messages will still go on their own lines. Remember to set BF_LINE_OVERWRITE=False when you are redirecting the build output to a file
2010-01-14weight paint without shading when in wire view. use stipple wire to help ↵Campbell Barton
show where verts are. only way to do this previously was to have a UV layer, be in textured mode, not have any lights or textures and then set weight paint mode.
2010-01-14spelling errors, no real changes to code.Campbell Barton
2010-01-14no-functional change - use interpolation functions where possible.Campbell Barton
2010-01-14Fix mistake in recent commit, typed in wrong number for bitflagBrecht Van Lommel
causing various issues with constraints and duplis.
2010-01-14UV operator templateCampbell Barton
2010-01-14Fix [#20671] No access to creating textures for a materialMatt Ebb
Caused by my previous commit here.
2010-01-14Fix [#20029] Text input fields with dropdown list bugsMatt Ebb
2010-01-14enable smooth shading of particle colors in particle editmode, for weight ↵Campbell Barton
painting and selection.
2010-01-14particle weight brush back (mostly the same as in 2.4x), needed to control ↵Campbell Barton
long hairs movement.
2010-01-14* Added an 'enable manipulator' operator, with boolean properties for each of Matt Ebb
translate/rotate/scale, for people to bind to shortcut keys. wm.context_set doesn't work well here since it just toggles each component on/off. Fixes [#19730] Missing/conflicting keymaps for "Change Manipulator Mode" function Good defaults for this can be decided on for an updated 2.5 key layout.
2010-01-14ctrl +/- should be in default keymap for 3d view zoom in/out, probably other ↵Joseph Eagar
views too
2010-01-14Fix for previous properties editor crash, only remove ui handlersMatt Ebb
on new screens. Was preventing openGL render and possibly other things from working
2010-01-14Changed 3D View menu Duplicate Linked to use the same Matt Ebb
duplicate linked + move macro as in the default key map (alt d).
2010-01-14Show the image ID template too for 3D View BG imageMatt Ebb
2010-01-14Fix [#19932] When reducing panels vertically the scrollbar should not ↵Matt Ebb
continue redraw in opposite direction
2010-01-14renamed view_center to view_selected in view3d menu codeJoseph Eagar
2010-01-14fixed missing buttons if no bg imageJoseph Eagar
2010-01-14view3d bg image now updates on frame change, and the panel for it properly ↵Joseph Eagar
draws an image user template. someone else might want to look over the UI stuff, hopefully it's ok. also added some ffmpeg .dlls to the SConscript to install.
2010-01-14Fix URL to new py API docsMatt Ebb
2010-01-14Missing notifiers in some transform orientations operators.Martin Poirier
Also, nice harmless typo (only because KM_SHIFT|KM_CLICK (1|3) == KM_SHIFT|KM_CTRL (1|2))
2010-01-14Fix [#20663] Mouse cursor icon changes back to default in edit modeMatt Ebb
Seemed simple but actually turned out to be quite complex. ND_MODE notifier was being misused, changed to ND_TOOLSETTINGS Note: Although the fix itself doesn't involve this much, debugging uncovered that listeners can't rely on notifier->swinid to be correct, since notifiers can now be added from RNA without a region context.
2010-01-14Fix for saved animation image sequence renders being too dark Matt Ebb
(caused by my recent color management commit)
2010-01-14Fix [#19902] sculpt brush texture not accessible when the object has no materialMatt Ebb
Texture handling really needs deeper improvement, this fix doesn't really help for other situations like modifiers, but solves the inconvenient case of sculpting with no material at least.
2010-01-14[#20583] Snap Cursor to Center and more View editsMartin Poirier
Patches by Jonathan Smith (jaydez) Add a Cursor Center entry in the snap menu (Shift-S) to reset the cursor to 0,0,0. Also rename the view_center operator to view_selected to reflect better what it does (in the code only, description and name were already ok).
2010-01-14[#20112] User Preferences window causes a crashMartin Poirier
Opened preference window caused a crash (context pointing to freed screen) when Load UI was turned off.
2010-01-13- when the image is available export the SVG with the pixel width and ↵Campbell Barton
height, saves typing into the gimp each time. - option to only export selected faces. - add in some metadata from the scene
2010-01-13Makefiles: add -DNAN_BUILDINFO to CPPFLAGS in windowmanager/intern when ↵Stefan Gartner
building with NAN_BUILDINFO enabled
2010-01-13Patch [#20588] Adding multisample support to Win32 Ghost - by Mitchell ↵Nathan Letwory
Stokes (Moguri) Note: AA is still disabled due to AA creating problems for selection tools. If you must, set AA to 2 or 4 in wm_window.c where the GHOST window is created (line 317).
2010-01-13UV Layout export, writes an SVG, uses material colors.Campbell Barton