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
2014-12-31Joystick: Suppress add/remove device eventsSergey Sharybin
Previously they'll be printed to the console as a totally unknown events together claim this shouldn't have happened which is just misleading.
2014-12-31Compilation error fix for strict flagsSergey Sharybin
2014-12-31Remove executable flag from the build configuration filesSergey Sharybin
They're not intended to be executed directly and seems mode change happened by accident. Setting -x for this files to avoid possible incidents by trying to run this files in shell.
2014-12-31Operator to duplicate the active Grease Pencil layerJoshua Leung
TODO: this needs a proper "duplicate" icon, without the "ID" label
2014-12-30Fix an odd line that slipped in my ghost_hack_first_file commitJens Verwiebe
2014-12-30Fix issue in separate rake control commit:Antony Riakiotakis
Mask slot still depended on regular slot to check some capabilities. Some angle capabilities now only depend on the texture slot, not the brush, so separate them and use the slot where appropriate.
2014-12-30Fix T42780: Object linking allows to have linked armatures in pose modeSergey Sharybin
This isn't so bad for until one goes re-posing the armature and then uses undo. It is the same issue as with edit mode which was solved back in the days.
2014-12-30PyAPI: geometry.normal, support polygonsCampbell Barton
Previously this only supported tri/quads, now arbitrary size poly lines are supported.
2014-12-30PyAPI: allow non-vector args for geometry moduleCampbell Barton
Previously only vector args were accepted, now allow generic sequence of numbers. Was annoying to create vectors just to pass in args.
2014-12-30Fix possible NULL pointer dereferenceCampbell Barton
also remove redundant NULL check
2014-12-29Fix stupid handling of 'Object.matrix_local' in RNA.Bastien Montagne
The getter of this matrix (actually, `BKE_object_matrix_local_get()`) was only correct in case of pure-object parenting, bone parenting and such did not gave valid results. Also cleaned up a bit setter code, was using as temp storage ob->obmat itself, which is supposed to be a world matrix! Reviewers: campbellbarton Reviewed By: campbellbarton Differential Revision: https://developer.blender.org/D958
2014-12-29Rotate around selection now will work on last stroke position in textureAntony Riakiotakis
paint too.
2014-12-29Move average stroke from sculpt session to unified paint settings so itAntony Riakiotakis
can be reused by other paint systems too.
2014-12-29Cleanup: get rid of sculpt minmax and reuse last stroke function (codeAntony Riakiotakis
did that anyway, just kept the result in an intermediate variable)
2014-12-29cleanup: redundant call to BKE_object_apply_mat4Bastien Montagne
2014-12-28Fix T40930: Add a new option to select faces by smooth/flat shading.Bastien Montagne
Org code by robschia (Roberto Schiavone), first review by campbellbarton (Campbell Barton), final review and minor changes by mont29 (Bastien Montagne). Reviewers: cambellbarton, mont29 Subscribers: mont29, campbellbarton Maniphest Tasks: T40930 Differential Revision: https://developer.blender.org/D638
2014-12-28Cleanup: no need for hacks here, RNA allows for real read-only props, and if ↵Bastien Montagne
you define a getter func, it won't rely on any DNA member either...
2014-12-28Fix leak in cycles-bakeCampbell Barton
2014-12-28Fix leak in select-similar regionsCampbell Barton
2014-12-28Fix buffer overrun calculating unique namesCampbell Barton
2014-12-28BLI_string_utf8: add BLI_strncpy_utf8_rlenCampbell Barton
2014-12-28cleanup: avoid ref-counting None for a new matrixCampbell Barton
2014-12-27Fix a very stupid memleak in own bpy_app_translations.c code...Bastien Montagne
Safe for 2.73.
2014-12-27GPencil UI: Color swatches for both Stroke and Fill colors are now shownJoshua Leung
The layers list and the Dopesheet channels now show color swatches for both the stroke and fill colours now. This is useful when you've got layers that only use either/or. * Currently, these only get shown if the relevant opacity setting is high enough for that aspect to contribute to the result. * The sizing of these items could do with some more tweaking (especially in the Dopesheet), as these may now be too small to accurately see and/or interact with. * There are some potential issues when using near-gray (or actually, colours similar to the list backgrounds, but that issue exists in other areas of Blender anyway. (NOTE: At this stage, these changes are still experimental, and not for 2.73 yet)
2014-12-27Experimental fix for "random large dots" bug when using a stylusJoshua Leung
Since I don't have a (pressure sensitive) tablet handy, I can't really test this out, but apparently there is a bug which currently exists with the following description: "Small Dots, when you do just one click a single GP dot is created, it´s fine but don't recognize the pen pressure, always the maximum value of thickness, and It´s so easy create dots accidentally (even when you use the eraser, this dots appear spontaneously) and you start to have big screen-size-constant dots beside of you fine lines." This commit just shuffles around the order of things a bit so that some of the misfiring events might get skipped instead.
2014-12-27Restoring all the whitespace!Joshua Leung
2014-12-27Fix T43034: beautify-fill leaves zero area tri'sCampbell Barton
2014-12-27cleanup: redundant tri-normal calculationCampbell Barton
2014-12-27cleanup: knife tools, use generic sort functionCampbell Barton
2014-12-27Fix typo in angle commit, noticed by Kevin Dietrich, thanks!Antony Riakiotakis
2014-12-27Only add a fill brush to default .blend if there isn't one already. ForAntony Riakiotakis
some reason this happened twice here. Likely candidate for 2.73 final
2014-12-27Brush Texture Angle Goodies:Antony Riakiotakis
This commit includes a few things: * It moves the Rake and Random flags from the brush to the MTex. * The first change allows mask textures to have independent rake support. * Random rotation now has an angle value that controls the width of the effect from the rake or default angle * Rake and Random are now supported together.
2014-12-26Fix T43010 regression in material setting.Antony Riakiotakis
Caused by own fix for another display case. Shoud be safe for 2.73 final.
2014-12-26GPencil: Picky whitespace cleanupjulianeisel
2014-12-26Put editor initialization before python.Antony Riakiotakis
Initially it was moved to allow setting keymaps of python defined menus in C but looks like it breaks macro definition in python. Thanks to Julian for tracking this down. It should fix T42485
2014-12-26Fix T42977: Weights failed to display in Wireframe mode when using Face Selectjulianeisel
D948, reviewed by @mont29 (thanks for that)
2014-12-26GPencil: Use a different brush cursor for eraserjulianeisel
D783 with minor edits to increase contrast
2014-12-26Fix T42641, Graphical fragments showing on Blender 2.71 and higher when baking.Bastien Montagne
Safe for 2.73... This revert rB9b0ab890676790bb1e8e77797629b889ea66f69e - needed to set that threshold to a small negative value to remove the last artefacts reported in T39735, but now I could not reproduce any with the previous 0.0f value, so restoring it for the time being. If this 'shadowed neighbor face' case re-appears, we can always choose a value in-between, like -1e-18f...
2014-12-26Fix T43013: Flip with bridge aligned loopsCampbell Barton
2014-12-26optimize interp_weights_poly_v2, v3Campbell Barton
use line_point_factor instead of length between vertices.
2014-12-26optimize interp_weights_poly_v2, v3Campbell Barton
halve sqrtf calls per per polygon corner.
2014-12-26cleanup: use cross_tri_v2 when area isn't needed.Campbell Barton
2014-12-25SCons: Don't regenerate icons if not changesSergey Sharybin
This is rather a handbook example how NOT to do things in SCons, ideally it should be official SCons target so all the dependencies and source file modification stops being our worry. Especially since for CMake we already do have an app to do generate all the data. I don't have time to clean this up now but this constant icons regeneration just pisses me off atm.
2014-12-25OSX: revive GHOST_HACK_getFirstFile cause it breaks things on older OSX ↵Jens Verwiebe
versions. Dunno exactly why this was done earlier, but propose not to remove code not understood.
2014-12-25Refactor 'immediate search' featureBastien Montagne
Currently, code just checks whether a text-edited button uses a given icon (VIEWZOOM) to decide to apply changes on each typed char. This patch adds a propper button flag (UI_BUT_TEXTEDIT_UPDATE) and a dedicated RNA flag (PROP_TEXTEDIT_UPDATE) for that. It's also now usable not only for text buttons, but also for example for num buttons when in 'text edit' mode, etc. It also fixes an actual bug, which is for text properties, in 'immediate' mode, hitting escape would not restore org value, because `ui_apply_but_TEX()` would set its orgstr to NULL on first call (giving it to `but->rename_orig` instead of copying it). Note no change in behavior is expected from user POV. Update for addons using that 'VIEWZOOM' icon 'feature' will follow (if any). Reviewers: campbellbarton Reviewed By: campbellbarton Projects: #user_interface, #bf_blender:_next Differential Revision: https://developer.blender.org/D938
2014-12-25Fix T42938: image.save_render sometimes saved the wrong passSergey Sharybin
Stupid mistake with non0initialized image user. Safe for final 2.73 release branch.
2014-12-24Fix T42879: File Browser - disable selecting ".." entry (Parent Directory)julianeisel
2014-12-24Ref T42873: Print "Camera Pano" for panoramic camera view onto viewportjulianeisel
2014-12-24Master branch is now alpha cycle of 2.74 releaseSergey Sharybin
2014-12-24Fix T42997: Support RGBA output for HuffYUVSergey Sharybin
More like a feature request but was simple to support.