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-06-23Added back full scene motion blur 'shutter' parameter (was 'Bf' in 2.49)Matt Ebb
2010-06-23Small update to text boxes UI. It now works in single-column layout.William Reynish
2010-06-23== Sequencer ==Peter Schlaile
Removed "frame_locked"-flag from sequencer completely, since it doesn't work any more in Blender 2.5. (All IPOs are frame-locked now anyways.)
2010-06-22error in last commitCampbell Barton
2010-06-22rename sequence.length -> frame_length_finalCampbell Barton
added sequence.frame_length to get the original length of the strip
2010-06-22Timeline addition: Display cached framesMatt Ebb
This started off doing pointcache debugging but it's also very useful for users too. Previously it was very hard to see the state of the system when you're working caches such as physics point cache - is it baked? which frames are cached? is it out of date? Now, for better feedback, cached frames are drawn for the active object at the bottom of the timeline - a semitransparent area shows the entire cache extents, and more solid blocks on top show the frames that are cached. Darker versions indicate it's using a disk cache. It can be disabled in general in the timeline View -> Caches menu, or by each individual system that can be shown. There's still a bit to do on this, behaviour needs to be clarified still eg. deciding what shows when it's out of date, or when it's been played back but not cached, etc. etc. Part of this is due to a lack of definition in the point cache system itself, so we should try and clean up/clarify this behaviour and what it means to users, at the same time. Also would be interested in extending this to other caches such as fluid cache, sequencer memory cache etc. in the future, too.
2010-06-22Origin button in the toolshelfLuca Bonavita
Minipatch to add the Origin button in the Toolshelf in the Transform section. I missed this because 1) it was called "center" in 2.4 and it's difficult to find just searching if you don't know it's "origin" 2) it was in the the object » transform menu, not very practical to use often Discussed with Gensher, Campbell and Matt before committing :)
2010-06-22Added ability to add and remove text boxes back from Blender 2.4x. One on ↵William Reynish
those small things missing.
2010-06-21sequencer swap data operator.Campbell Barton
needed for durian so we can swap out preview AVI's for EXR sequences.
2010-06-21netrenderMartin Poirier
Save and Restore master from disk. When the "clear on exit" option is off, write a data file (blender_master.data) in the master's path on exit and reads it back on load. Note: Jobs and Slaves lists are restored, but not balancer settings (problem with the pickle module).
2010-06-20etch-a-ton bugfixMartin Poirier
Add Convert operator and button (missing in 2.5) Fix stroke selection (uneeded separate operator and missing redraw) Map sketch operators to LEFTMOUSE and RIGHTMOUSE instead of SELECTMOUSE AND ACTIONMOUSE (more in line with other sketching operators, might work better with swapped mouse buttons)
2010-06-19minor edit to speed up api property name editing.Campbell Barton
2010-06-19rna info module now prints out property names into the console when run directlyCampbell Barton
2010-06-19Merged revision 29562 from /branches/soc-2010-nexyon.Joerg Mueller
2010-06-17== addons ==Luca Bonavita
- release/scripts/ui/space_userpref.py added the change to add a 'warning' field to bl_addon_info warning icons are used to show 'broken' scripts or warnings asked permission to campbell and matt in blendercoders to apply this - source/blender/python/doc/sphinx_doc_gen.py: small fix in the url
2010-06-16soft bodyJens Ole Wund
text label correction
2010-06-15New Scene now has the popup from 2.4x which gives the option to copy.Campbell Barton
Added some test code for rna_info to create a big list of property+type+descriptions, useful for api name review.
2010-06-15- module for reading blend start/end frames and scene name (useful for ↵Campbell Barton
finding the total frame count without loading a blend file) - added render api as unstable to the docs.
2010-06-14- option for redraw timer to playback the animationCampbell Barton
- py utility property group.users_dupli_group
2010-06-14Update interaction preset for property renamingMatt Ebb
2010-06-14restored old 'uv orco' for curves, renamed to 'map along length'Matt Ebb
2010-06-14naming changesCampbell Barton
path -> filepath (for rna and operators, as agreed on with elubie) path -> data_path (for windowmanager context functions, this was alredy used in many places)
2010-06-13solidify rim material option, use the next material slot for rim faces.Campbell Barton
a bit arbitrary but with most cases where solidify is used in durian we get UV texture stretching since there is no way to access the newly created size faces this gives us a way to switch out the material on the rim.
2010-06-13Made Add Surface Operator more atomic, now each primitive has own operator, ↵Michael Fox
but calling the same function with different flags. So they can me used in macros, and addons can use the menu now, hope to see some very nice surface plugins
2010-06-13Change couple of strings.Guillermo S. Romero
Clearly mention SVN version being built and more direct POVRay error.
2010-06-11[#22554] Register option on Texts doesn't work anymoreCampbell Barton
there were no hints that '.py' extension is needed, added tooltip.
2010-06-11[#22496] OpenSuse 11.2 The problem with built-PovrayCampbell Barton
give a better error message when povray isnt found.
2010-06-11game world buttons had old property name for mist toggleCampbell Barton
2010-06-11create COMPAT_ENGINE in game panels to allow external game engines - patch ↵Dalai Felinto
from Xavier Thomas(xat)
2010-06-11clear python console namespace when used with a new window manager, ↵Campbell Barton
otherwise old python objects are kept around between opening different blend files (leaking memory). ideally loading a new file would clear the namespace but practically its unliekly to be a problem.
2010-06-09more cleanup to bpy.context.copy(), exclude rna values and its self.Campbell Barton
2010-06-09py/rna api:Campbell Barton
- bpy.context wasnt being created from the python bpy.types.Context type defined in bpy_types.py (bpy.context.copy() failed for eg.) - bpy.context.copy() was returning C defined methods like FloatProperty(), which are not useful in this case, removed.
2010-06-09pep8, whitespace editsCampbell Barton
2010-06-09- added a flag argument to WM_operator_properties_filesel() currently only ↵Campbell Barton
used for relative path option. - added relative option to saving external multires data - renamed multires external functiosn to have save / pack as suffix. - added TODO's for file select operators that should support relative paths but dont. - also disable openmp on linux cross compile, mingw currently isnt linking -lgomp
2010-06-09python utility property library.users_id: returns a tuple of all ID ↵Campbell Barton
datablocks which use this library.
2010-06-09rename rna function obj.make_display_list(scene) --> obj.update(scene)Campbell Barton
also added 3 optional bool arguments, 'object', 'data' & 'time', matching the object recalc flags.
2010-06-08texture user attributes, users_material, users_object_modifierCampbell Barton
2010-06-08node toggle preview and hidden socket key shortcuts (Ctrl+H, Shift+H)Campbell Barton
2010-06-07Smoke UI:Thomas Dinges
* Greying out for Smoke High Resolution Panel. * Code cleaning, removed some unnecessary declarations.
2010-06-07'fix' [#22527] Lens angle under View in 'N' panel does not change the camera ↵Matt Ebb
view Made the UI more clear that the Lens value is for the 3d view space data only.
2010-06-03Reworked the non-blocking reports display in the info header:Matt Ebb
* Now it displays the last report from the global list, not just from operators * Rather than disappearing when a new operator is run, it stays until it times out or a new report is added * Fun animated transitions ;) http://mke3.net/blender/devel/2.5/reports_header.mov Now need to investigate report usage with popups. Ideally we can have most reports non-blocking, so they're less intrusive, only popping up for dire errors. Problem is many things in Blender right now are marked as RPT_ERROR when probably RPT_WARNING is more appropriate. Should probably keep RPT_ERROR for things that demand immediate attention.
2010-06-03Logic Editor: clear properties operator + logics in the object menuDalai Felinto
clear properties operator - now it's not part of the copy properties anymore (Matt's suggestion). If anyone want to change the menu, please help yourself (renaming, putting in it's own submenu, making it invisible when mode is not Game ..)
2010-06-02rename some rna properties filename --> filepathCampbell Barton
* filename == "foo.ext" * filepath == "/path/to/and/including/foo.ext" this was alredy followed in some places not not everywhere.
2010-06-01script reload (f8), is closer to working.Campbell Barton
there are internal memory problems which can make it crash still. If you remove all directories in the scripts folder except for 'modules' and 'ui', it runs without crashes.
2010-06-01Fix [#22469] Crashes with "segmentation fault" when opening an image for ↵Matt Ebb
Voxel Data texture of type Image sequence Cleaned up the code here, made it more efficient and more reliable with threaded render.
2010-05-31Python Open Link operator.Thomas Dinges
* Unified some code for Opening an URL to use only one operator: WM_OT_url_open * Removed the HELP_OT_url operators.
2010-05-31* Sun & Sky presets were labeled as Render presets. Thomas Dinges
2010-05-31* Tooltip fix for Addon links.Thomas Dinges
I rather have this general text than 2 separate operators for wiki/tracker url.
2010-05-31== Sequencer ==Peter Schlaile
This makes volume range larger and adds an additional attenuation-variable to RNA, which makes volume-changes in dezibel units possible.
2010-05-312.5 Addons:Thomas Dinges
Request from mindrones :) * Next to the Wiki URL, it's now possible to have a link to the tracker, for bug reports. "bl_addon_info" dictionary: * Renamed 'url' to 'wiki_url' * Added 'tracker_url'