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
2013-11-23Merge branch 'master' into soc-2013-rigid_body_simsoc-2013-rigid_body_simSergej Reich
Conflicts: intern/rigidbody/CMakeLists.txt release/datafiles/splash.png source/blender/editors/space_view3d/drawobject.c source/blender/makesdna/DNA_view3d_types.h
2013-11-23OSX: fix T37065 cmd+c not working in Info - consoleJens Verwiebe
2013-11-23More short->bool refactoring work for anim channel type define callbacksJoshua Leung
Changed the "neg" flag for acf.setting_flag() to be a bool
2013-11-23Anim Editors: Refactored animchannel type definition callbacks to use boolsJoshua Leung
Changes: - acf.name_prop() and acf.has_setting() now return bools instead of shorts - Renamed a few name_prop() callbacks whose names ended in "_nameprop" instead of "_name_prop", which made it difficult to safely find all such instances
2013-11-22Style Cleanup: whitespaceCampbell Barton
2013-11-22Fix T37485: autocomplete while appending and autocomplete folder behaviour.Henrik Aarnio
This adds functionality to tab-autocomplete folders in the file browser file field, and the ability to autocomplete .blend files and their sub folders while linking. If only one match of a blend or a folder is found, it is opened, which applies to wildcards in the file field now. Reviewed By: elubie, brecht Differential Revision: http://developer.blender.org/D20
2013-11-22fix for active bone not saving in editmode.Campbell Barton
2013-11-22Armature Editing: select shortest path (Ctrl+RMB matching mesh operator)Campbell Barton
Patch originally from Terry Struven, modified to use more generic functions.
2013-11-21Code cleanup: Minor addition to rB254aa8f3a0fbffcbcb886cfaa81b630ae3e9bb78: ↵Bastien Montagne
handle copying of drawflag in ui_but_update_from_old_block() Note that this is not really needed currently, as the only flag being copied here (UI_BUT_REDALERT) remained in but->flag. However, since we'll have more flags in drawflag now, it's better to explicitly handle this situation... This func could use some cleanup anyway (a bunch of commented code here)... Thanks to Campbell for noting this!
2013-11-21Squashed commit of the following:Bastien Montagne
commit b8b7180760b7c57f15b9930c29207febcf5fefb3 Author: Bastien Montagne <montagne29@wanadoo.fr> Date: Thu Nov 21 16:31:16 2013 +0100 Code cleanup: replace "LISTLABEL" button type by an "UI_BUT_LIST_ITEM" button flag. Summary: Rationals: I) I was never that happy to have a full button type just to set custom colors to labels inside listitems! II) If we use (as planned) TEX buttons instead of labels to allow listitems click-rename, I'd like to be able to use listitems' theme color here as well, much easier witha flag than adding yet another button type! Note: related to D8 Reviewers: brecht Differential Revision: http://developer.blender.org/D25
2013-11-21Squashed commit of the following:Bastien Montagne
commit 6f97e194e58aab38d351c796bf7bb6abca33f5f9 Author: Bastien Montagne <montagne29@wanadoo.fr> Date: Wed Nov 20 21:18:20 2013 +0100 Code cleanup: Move some uiBut->flag to uiBut->drawflag, make those flags anonymous enums. Summary: Make some room in but->flag (I did not add another flag, we already have drawflag, which was nearly not used up till now). Note: I’m not sure whether REDALERT (and perhaps even DISABLED?) should not go to but->drawflag as well... Related to D8 Reviewers: brecht Differential Revision: http://developer.blender.org/D22
2013-11-21Fix a wrong check ls == NULL || lb->first == NULLSergey Sharybin
2013-11-21Fix T37558: Cosmetic label change to indicate that the path for individual ↵Lukas Tönne
inputs in the File Output node is actually a sub-path based on the overall node file path.
2013-11-20* Remove more code for stars, missed those. Sorry!Thomas Dinges
2013-11-20Blender Internal:Thomas Dinges
* Remove Stars feature. This was a quite minimalistic feature and there are better alternatives with more control (particles for example). Removal discussed during BCon13 developer meeting and already years before, time to do it.. Reviewed By: brecht Differential Revision: http://developer.blender.org/D17
2013-11-20Fix T37543: Multiline 3D Text saved in edit mode breaks on loadCampbell Barton
2013-11-20Code Cleanup: remove unused members for editfont (3D text)Campbell Barton
2013-11-20fix T37411: Transform mouse constraint could fail in some situations.Campbell Barton
Was caused by int rounding when an axis was < 1.0.
2013-11-20Fix T37550: Crash while snaping to curve made from Susane (bug in recent ↵Campbell Barton
addition)
2013-11-20NLA Channel Drawing Refactor: Remove rest of old drawing code for NLA Track ↵Joshua Leung
channels NLA Track drawing has now been ported over to use the UI widgets like the rest of the anim channels do in the DopeSheet and Graph Editors. The main benefit of this for users is that these buttons will now show tooltips when you hover over them. Hopefully this will help make the "solo" buttons more discoverable. I've decided to postpone porting the "Action Line" channels to the widget system for now, since there are quite a few more issues there which need quite a bit more time to work through.
2013-11-20Anim Editors: Ensure that "solo" flag doesn't get accidentally handled on ↵Joshua Leung
channels which don't support it
2013-11-20Anim Editors: Improve some tooltips to be more accurate for the type of ↵Joshua Leung
editor/data they're shown for This commit fixes some problems where some tooltips were not adapting as intended when used for different channel types in different places.
2013-11-20Remove old drawing code for NLA TracksJoshua Leung
2013-11-20Added button callback so that toggling solo mode on NLA Tracks now works ↵Joshua Leung
correctly
2013-11-20Ported code for setting colour of NLA Track anim channelJoshua Leung
2013-11-20Ported over logic for which animchannel settings are supported by NLA TracksJoshua Leung
2013-11-20Skeleton of type defines for NlaTrack animchannelJoshua Leung
2013-11-20Updating icons for NLA Track "solo" button (as used in standard widgets)Joshua Leung
2013-11-20Transform: Warp tool (rewritten)Campbell Barton
* Can optionally warp a segment (sets min/max default so it acts as old warp did). * Can rotate the warp axis (old warp tool was limited to horizontal).
2013-11-20Fix T37545: SV+H color cube display changes H slider position when modifying ↵Lukas Tönne
S or V. The widget for the SV gradient was disabling display colorspace transform, but this was not happening for the H slider below, leading to varying H values used to calculate the slider position.
2013-11-20Transform: rename Warp to BendCampbell Barton
2013-11-19Code Cleanup: style, spelling and pep8 editsCampbell Barton
2013-11-19Code Cleanup: move trans-verts out of snap code into their own file.Campbell Barton
Developer Note: * minmax & centroid was being calculated when creating trans-verts but never used. * static vars removed, replace with TransVertStore stack var.
2013-11-19Fix: tab completing a filepath name in file browsers asks to create a newHenrik Aarnio
directory if name was not fully matched When hitting tab to complete a directory name in the filepath field in the filebrowser Blender shows a "create new directory?" popup, if the beginning of directory name typed in the field matches many entries. For example if you have directories in the open directory called "test123" and "test456", typing "te", tab would complete up to "test", but ask to create a new folder with the name "test". This patch unsets the boolean storing the info about changing filepath if the folder with the completed name does not exist. Reviewed By: brecht Differential Revision: http://developer.blender.org/D10
2013-11-19Remove Surface modifier when removing force field from objectSergey Sharybin
Summary: Before this adding Surface type of force field and removing this field would leave Surface modifier alive in the stack. This might be really misleading and annoying. Now removing force field will ensure no modifiers needed for it are remained in the stack. This also fixes missing notifier to redraw modifier stack when changing force field type. Reviewers: brecht, campbellbarton Reviewed By: brecht Differential Revision: http://developer.blender.org/D13
2013-11-19Fix T37464: Crash when pressing "V" in UV/Image editorCampbell Barton
Also fix for missing draw-handler free. Delay activating until we know 'stitch_init' succeeds.
2013-11-19Fix for running datablock eyedropper outside of a button.Campbell Barton
2013-11-18Fix T37088: Crash with eyedropper (shortcut E)Campbell Barton
2013-11-18Fix T37336: Toggle selecting a pose-bone from object mode would de-select ↵Campbell Barton
all others.
2013-11-18Fix T37495: Duplis weren't handling negative scaled objects properly.Campbell Barton
2013-11-18Fix T37506: Duplicate Area into New, was disabled on fullscreen but works ok.Campbell Barton
2013-11-18Fix T37511: toggle-drag feature was crashing with menu items.Campbell Barton
2013-11-18Fix T37468: image empties now use no interpolation when mipmaps are disabled.Brecht Van Lommel
Image empties don't actually support mipmaps right now, but the user preference doubles as a way to disable any kind of interpolating in texture filter and just show nearest neighbour filter, so for this is a bit more consistent.
2013-11-18Fix part of T37326: IMAGE_OT_invert won't update if buffer is floatSergey Sharybin
Need to mark display buffer as out-of-date.
2013-11-18Fix T37345: Image baking progress bar wrongly appears in node editorSergey Sharybin
Baking job is owned by scene but only need to update image space contexts. This leads to job progress bar stuck in node editor. Made it so node editor does not display baking jobs now.
2013-11-18Fix T37428: NurbsPath Mesh Deform "Binding" not available or not functionalSergey Sharybin
Seems to be a regression when Campbell was working on T24009. Bind operator exec handles curves nicely, could not see reason why to disable this with a poll function. From quick tests everything seems to be just fine.
2013-11-18BMesh Refactor: BKE_bmbvh_new can now be created without an EditMesh.Walid Shouman
This adds BM_bmesh_calc_tessellation() so we can get triangles from a bmesh without having to have an editmesh available.
2013-11-18Fix for T36936: Crash when starting BI rendered viewIRIE Shinsuke
Discard the render database when stopping the rendered preview, otherwise starting it again may cause a segmentation fault because undo/redo with non-rendered preview corrupts the database.
2013-11-18Patch T37363: Highlight bone layers with active bones (as for Object Layers)Joshua Leung
Patch by Jose Molina Garcia (sentinel), with style fixes by myself.
2013-11-18Code cleanup - Reduce duplication of layer number calculations hereJoshua Leung