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
2018-02-07Cleanup: Python context accessCampbell Barton
Avoid access from bpy when it's already declared.
2018-02-01Cleanup: Python code-style (addons, wm)Campbell Barton
2018-01-22Fix manual lookups (data is now lowercase)Campbell Barton
2018-01-22Fix T53843: Error opening online manualCampbell Barton
2017-11-29Cleanup: Python importsCampbell Barton
Split over lines to diff more easily.
2017-04-14Cleanup: triple quotes for docstringsCampbell Barton
2017-04-14UI: Add/Improve a few tooltipsAaron Carlisle
See T51061
2017-03-31Correct string formatting (error in recent change)Campbell Barton
2017-03-25Remove support for py app-templatesCampbell Barton
Only zip-files make sense here.
2017-03-25Cleanup: imports, indentation, long linesCampbell Barton
2017-03-25WM: Application TemplatesCampbell Barton
This adds the ability to switch between different application-configurations without interfering with Blender's normal operation. This commit doesn't include any templates, so its mostly to allow collaboration for the Blender 101 project and other custom configurations. Application templates can be installed & selected from the file menu. Other details: - The `bl_app_template_utils` module handles template activation (similar to `addon_utils`). - The `bl_app_override` module is a general module to assist scripts overriding parts of Blender in reversible way. See docs: https://docs.blender.org/manual/en/dev/advanced/app_templates.html See patch: D2565
2017-03-18PyAPI: remove bpy.utils.register_module()Campbell Barton
In preparation for it being removed, see: T47811
2017-02-22Use new api doc linksAaron Carlisle
Differential Revision: https://developer.blender.org/D2522
2016-12-13Small cleanup: Remove unused codeAaron Carlisle
This code has not been used for a long time if not ever. Most of the code was removed in rB1d3609262704f88c9e30b2cebdb236110b25cdc9 however, this was forgoten.
2016-11-16Fix custom props not being handled correctly by manual/pyref UI menu entries.Bastien Montagne
2016-11-07Cycles: Refactor Device selection to allow individual GPU compute device ↵Lukas Stockner
selection Previously, it was only possible to choose a single GPU or all of that type (CUDA or OpenCL). Now, a toggle button is displayed for every device. These settings are tied to the PCI Bus ID of the devices, so they're consistent across hardware addition and removal (but not when swapping/moving cards). From the code perspective, the more important change is that now, the compute device properties are stored in the Addon preferences of the Cycles addon, instead of directly in the User Preferences. This allows for a cleaner implementation, removing the Cycles C API functions that were called by the RNA code to specify the enum items. Note that this change is neither backwards- nor forwards-compatible, but since it's only a User Preference no existing files are broken. Reviewers: #cycles, brecht Reviewed By: #cycles, brecht Subscribers: brecht, juicyfruit, mib2berlin, Blendify Differential Revision: https://developer.blender.org/D2338
2016-10-04Cleanup: Update links to online py API doc, and remove old commented stuff.Bastien Montagne
2016-06-06Fix T48579: RNA shadows new custom propertiesCampbell Barton
2016-04-12Correct UI messages: hyphenate 'add-ons'Campbell Barton
2016-02-23UI: expose soft limits to custom-property editorCampbell Barton
Internally custom-id-properties used soft-limits, but there was no way to edit these.
2016-01-11Update add-on descriptionsCampbell Barton
Also replace addon -> add-on
2016-01-07addon_utils: improve docstringsCampbell Barton
Also make error handler take the exception as its argument.
2016-01-06Save sys-info to file instead of a text blockCampbell Barton
The main reason for this change is this file is typically used when making bug reports, its best if users attach this file to reports directly.
2016-01-03Improve system info tipCampbell Barton
2015-12-18Add wrap argument to cycle wm utility funcsCampbell Barton
Now zooming text in the console and text editor isn't wrapping from large/small font size (annoying).
2015-11-05Fix T46699: copy_prev_settings() gives misleading error message when ↵Bastien Montagne
previous version's config dir doesn't exist.
2015-09-10Fix T46048: Custom properties UI redraw issueCampbell Barton
Adding/removing custom properties didn't refresh elsewhere in the UI.
2015-06-13addon_utils default mismatch /w enable/disableCampbell Barton
default_set argument is now False for both.
2015-06-10WM: toggling expanded could raise exceptionCampbell Barton
Missing module case wasn't checked for.
2015-06-08rename wiki -> manualCampbell Barton
2015-04-27Cleanup: rename GRAB_POINTER -> GRAB_CURSORCampbell Barton
Term pointer is overloaded already.
2015-03-25Fix T44026: ID prop delete leaves names in _RNA_UICampbell Barton
2015-01-29cleanup: pep8Campbell Barton
also remove empty class parenthesis
2015-01-28cleanup: py importsCampbell Barton
2015-01-23PyAPI: don't adjust prefs when an fails to loadCampbell Barton
Recent addons commit meant that addons would be enabled even if they weren't found. This would give an error (which is fine), but also remove from preferences.
2014-09-17Cleanup: pep8Campbell Barton
2014-08-14Fix T41431: Min/Max custom property range mismatchCampbell Barton
2014-08-14UI: edits to pie-menu-enumCampbell Barton
- avoid eval - report if operator is missing
2014-08-13Add custom property to previous commit, name "Context" of that propertyAntony Riakiotakis
was misleading.
2014-08-13Bring back python operator for pies on a certain operator property.Antony Riakiotakis
2014-08-11Pie Menus C code backend.Antony Riakiotakis
This commit merges the code in the pie-menu branch. As per decisions taken the last few days, there are no pie menus included and there will be an official add-on including overrides of some keys with pie menus. However, people will now be able to use the new code in python. Full Documentation is in http://wiki.blender.org/index.php/Dev:Ref/ Thanks: Campbell Barton, Dalai Felinto and Ton Roosendaal for the code review and design comments Jonathan Williamson, Pawel Lyczkowski, Pablo Vazquez among others for suggestions during the development. Special Thanks to Sean Olson, for his support, suggestions, testing and merciless bugging so that I would finish the pie menu code. Without him we wouldn't be here. Also to the rest of the developers of the original python add-on, Patrick Moore and Dan Eicher and finally to Matt Ebb, who did the research and first implementation and whose code I used to get started.
2014-06-19Python: Remove deprecated uses of os.popenCampbell Barton
T40415 by Lawrence D'Oliveiro
2014-04-24Code cleanup: unused python vars & importsCampbell Barton
Use frosted rather then pyflakes
2014-02-26WM: hide screen management and ndof operators from seach popupCampbell Barton
2014-02-25Use string escaping when renaming custom propertiesCampbell Barton
2014-02-19Code cleanup: styleCampbell Barton
2014-02-12Code cleanup: replace WM_OT_ndof_sensitivity_change -> WM_OT_context_scale_floatCampbell Barton
also increase maximum sensitivity
2014-01-11Fix T38145: python error popup when pressing shift+Z in blender game mode.Brecht Van Lommel
2013-12-17Fix T37103: Keyframing custom properties issue (FCurve would not reflect ↵Bastien Montagne
Custom props type changes). Add an helper func to re-compute integer-only fcurve flags, and call it when editing custom props. Reviewed by aligorith, thanks! Summary: Proposal fix for "keyframing custom properties issue" (T37103). Reviewers: aligorith Maniphest Tasks: T37103 Differential Revision: http://developer.blender.org/D111
2013-10-16BGE: Fix to allow render options such display framerate and profile to workMitchell Stokes
when launching the Blenderplayer from Blender. This bug was reported and fixed by SolarLune.