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
2015-12-02Update template for changes in ray-castCampbell Barton
2015-12-01Report error when removing presets failsCampbell Barton
2015-12-01UI: mono-space font user preferenceCampbell Barton
2015-11-30Fix T46891: Error removing PropertyGroupCampbell Barton
2015-11-30PyAPI: expose low level RNA to bpy.typesCampbell Barton
2015-11-28UI: More minor UI cleanups for keymap editorJulian Eisel
Place non-editor related keymaps together, place animation editor keymaps together, move 'Header' keymap (which had exactly 1 entry) into 'Screen' keymap, move SCREEN_OT_header (for showing/hiding header) into 'Header' keymap. Again, this shouldn't break any key configs, but key configs that contain SCREEN_OT_header will add an entry for this under 'Screen' again. Just a very minor glitch.
2015-11-28UI Cleanup: Mask keymap shouldn't be part of Clip Editor keymapJulian Eisel
Also removed unrelated comment (copied & pasted from a few lines above I guess). Shouldn't break any custom key configs.
2015-11-25Sequencer: nested scene strip support (like metas)Campbell Barton
This makes it possible to use scenes as a kind of multi-user meta-strip (with their own time). Currently this supports rendering & drawing nested strips, but no convenient way to tab-enter into a scene strip.
2015-11-24OpenGL: clean up use of old extensionsMike Erwin
2015-11-23UV Smart Project: restore 'Stretch to UV Bounds'Campbell Barton
This option wasn't exposed since 2.4x. D1622 by @candreacchio
2015-11-22Error out on Windows if driver does not support OpenGL 2.1 with an errorAntony Riakiotakis
messagebox.
2015-11-22Remove vertex array support from GPUBuffers. Remove USER_DISABLE_VBO. AllAntony Riakiotakis
GPUBuffer rendering is now done using vertex buffers. Vertex arrays are completely removed from GL 3.2 core profile, so we'll have to do this change at some point anyway. This commit, though big, is not modifying blender in any way. Use should be exactly as if the vetex buffer option is constantly on.
2015-11-20Correct error in background job templateCampbell Barton
Remove check for the path being writable, the operator raises error in this case.
2015-11-18BMesh: symmetry aware decimateCampbell Barton
Support for decimating while maintaining symmetry on a single axis.
2015-11-16Python: use keyword only args for addon_utilsCampbell Barton
2015-11-16Cleanup: remove unused profiling from bpyCampbell Barton
2015-11-12Fix T46749: Texture paint & shadeless mode failsCampbell Barton
Using shadeless did nothing in texture-paint mode. (regression in 2.76)
2015-11-11OpenGL Render: Support full-sample Anti-AliasingCampbell Barton
This brings back old (slower), higher quality method. Useful since graphics cards often use a faster MSAA which only oversamples edges.
2015-11-06Fix T46522: DataTransfer modifier: Impossible to set multiple transfer modes ↵Bastien Montagne
by script (if they're on different properties). This patch basically gets rid of (ui-related) hack where we was adding specific 'fake' enums for datatypes needing additional options. That was done because of broken UI code - to summarize, 'align' code did not support correctly layout mixing vertical and horizontal sub-layouts, in particular if it was 'column-major'. A complete rewrite of this align code has been done, so now we can use a more sane UI code.
2015-11-06Use toggle buttons instead of checkboxes for VSE proxy percentageJulian Eisel
Was inconsistent with Clip Editor which uses toggle buttons. Toggle buttons are narrower, so changing to them. Reported in T46708.
2015-11-05Fix T46699: copy_prev_settings() gives misleading error message when ↵Bastien Montagne
previous version's config dir doesn't exist.
2015-11-04Tracking: Solve annoying "script needs updating" warning printed to the consoleSergey Sharybin
2015-11-04File Selector, support filepath droppingGaia Clary
This adds support for dropping a filepath on an open file-selector to set that path.
2015-10-30Include Python binary in system-info.txtCampbell Barton
2015-10-28Freestyle: Fix for 'Distance from Object' modifiers without a target object.Tamito Kajiyama
'Distance from Object' color/alpha/thickness modifiers without a target object were raising a run-time exception although it is not considered an error condition.
2015-10-24Fix error in bone UICampbell Barton
2015-10-24Fix invalid exceptions w/ preview APICampbell Barton
D1575 by @januz
2015-10-23Cleanup: rename 'datablocks' -> 'data-blocks'Campbell Barton
Similar to addons -> add-ons, for reading it fits better to hyphenate.
2015-10-20Minor edits to sytem-info scriptCampbell Barton
- list script paths on their own line. - use title util function.
2015-10-16Revert part of rB4d9345479aa86f61, and cleanup a bit.Bastien Montagne
'thumbnail_size' is now used in all cases, it controlls column width in other viewmodes of filebrowser. We cannot (easily) rename that DNA member, but I also renamed RNA property, and fixed its tooltip...
2015-10-16UI: only show thumbnail size when its enabledCampbell Barton
Also make enum identifiers less cryptic.
2015-10-13Make sure submodules are pointing to master branchesSergey Sharybin
2015-10-13Missed this in previous commit...Bastien Montagne
2015-10-13Fix T46467: Clean Keyframes removes the channels.Bastien Montagne
2015-10-12Cleanup: RNA naming, use 'max' as a suffixCampbell Barton
2015-10-11BGE: Adding a Max Jumps value to the character physic windowThomas Szepe
Actually we only have a Python API that allows to change the max jumps value. The patch also allows non programmers to change the maximum numbers of jumps. Reviewers: panzergame, sybren, campbellbarton, lordloki, moguri, agoose77 Reviewed By: lordloki, moguri Projects: #game_engine Differential Revision: https://developer.blender.org/D1302
2015-10-11CMake: Enable WITH_PYTHON_INSTALL for lite buildsCampbell Barton
This is needed to run on OSX and Windows when system python isn't found.
2015-10-11BGE: Fix for last commitThomas Szepe
The icon16 and icon32_mesh_capsule.dat files are committed with 0 Kb, because I used the patch from the differential from the Phabricator which I done with a regular .diff file.
2015-10-11BGE: Add icons to collision shapes.Thomas Szepe
This patch adds icons to the physic collision shapes. Adding a new capsule shape 'mesh_capsule' icon which represent the shape better then the metaballs icon. And replace the metaballs icon for the Blender collision shape. {F206628} Reviewers: moguri, sybren, agoose77, lordloki, mont29, panzergame, campbellbarton Reviewed By: lordloki, panzergame, campbellbarton Projects: #game_engine, #game_ui, #user_interface Differential Revision: https://developer.blender.org/D1403
2015-10-10Fix T46437: Make progress report py helper resitent to 'zero steps' passed ↵Bastien Montagne
value... To be backported, should we need an 'a' release.
2015-10-08BGE: Use BLI_task instead of pthread in KX_BlenderSceneConverter.Porteries Tristan
2015-10-08Fix: Do not show "Paste Flipped" in the Dope Sheet's Grease Pencil modeJoshua Leung
2015-10-08File Read: de-duplicate command line file-loadCampbell Barton
WM_file_read must support background mode already since it can be called by Python scripts in background mode.
2015-10-06Fix FileBrowser: do not show 'advanced filter' panel outside of lib browsing ↵Bastien Montagne
context, it’s only used there so far. Reported by Thomas Beck (plasmasolutions) over IRC, thanks. Safe enough for 2.76.
2015-10-05Image Py API: Expose 'load_exists' to RNA image load(), and extend ↵Bastien Montagne
load_image() helper. Expose our `BKE_image_load_exists` feature through an optional parameter to `Image.load()`. Extend `image_utils.load_image()` with two optional parameters, to return existing image datablock if possible, and in that case, to force reloading said image. Needed by incomming 'import images as planes' addon enhancement.
2015-10-01Fix potential memory leak bakingCampbell Barton
2015-09-28i18n extraction tools: keep even better order of entries in PO files.Bastien Montagne
Important to avoid too much changes, especially on the git repo (we are still getting way too much changes there currently...).
2015-09-25Fix T46239: Cross effect strip input fields can't be changed (in its ↵Bastien Montagne
properties panel). Those shall not be editable in UI...
2015-09-23Fix T46220: Add torus has no 'layers' optionCampbell Barton
Add layers property for all operators using AddObjectHelper
2015-09-22Fix report banner text widthCampbell Barton