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-08-02SConsCampbell Barton
- remove scons option WITH_BF_FHS, its not needed anymore. - comment WITH_BF_DOCS, was using epydocs which we dont use now. - blenderlite target was broken, always using openmp. - building without python wasnt working. - fixed some warnings.
2010-08-02cmakeCampbell Barton
- more strict warnings for gcc/unix, still <50 for a clean build. - install files to /usr/local/share/blender/2.53 rather then /usr/local/share/blender/.blender
2010-08-02use try/except when unloading modules too.Campbell Barton
2010-08-02give better feedback when a class doesnt register correctly.Campbell Barton
2010-08-02Based on recent feedback, the copyright.txt file contained Ton Roosendaal
statements that were restricting the GNU GPL, which is not allowed for binaries. Now the text restricts to summarizing the freedom of GPL and a disclaimer.
2010-08-02py addons: much faster scanning of addons by only parsing the dictionary ↵Campbell Barton
rather then the entire file.
2010-08-02fix for parsing scriptsCampbell Barton
2010-08-02update userpref's addon code to support new register/unregister, now the ↵Campbell Barton
modules are parsed rather then being imported since it become quite tricky to import once without registering the classes, then again in a way that registered the existing modules classes without a reload() - which had problems too.
2010-08-02minor changes to registration before committing addons fixesCampbell Barton
2010-08-02minor changes to Martni's commit 30961Campbell Barton
- removed the immediate option from C/api and now store in python only, when python loads modules it sets it to False. - unloading a module would clear the entire TypeMap for all modules, only remove the module types that is being unloaded. - added some checks for bad class registering, report errors rather then crashing.
2010-08-02fix for sequencer panel registration, a parent class panel was being ↵Campbell Barton
registered as well as its children which crashed running the poll() function. theres not much point in having 3 classes here, just use 1.
2010-08-02remove register/unregister from templatesCampbell Barton
2010-08-02RNA Types metaclass registrationMartin Poirier
See mailing list posts for details [1][2][3] Addons still need to be fixed; Campbell said he'd do it today. See any of the py files (outside netrender) in this commit for how to do it (it's rather simple). [1] http://lists.blender.org/pipermail/bf-committers/2010-February/026328.html [2] http://lists.blender.org/pipermail/bf-committers/2010-August/028311.html [3] http://lists.blender.org/pipermail/bf-committers/2010-August/028321.html
2010-08-02== povray ==Luca Bonavita
Removing Povray from here, it is now an addon in bf-extensions (after discussion with Campbell). This will let us manage better the transition to PovRay3.7 and later versions.
2010-08-02== addons ==Luca Bonavita
Loads addons from usual .blender/scripts/addons but also from .blender/scripts/addons_contrib if this folder exists To get latest contrib scripts, we can checkout https://svn.blender.org/svnroot/bf-extensions/contrib/py/scripts/addons/ into release/scripts/addons_contrib/
2010-08-02python mathutils changeCampbell Barton
quat * quat was returning the dot product (a float), rather then the cross product. Use BLI_math's mul_qt_qtqt() function.
2010-08-02fix for py console autocomp. need to swap out __main__ module there too.Campbell Barton
2010-08-02patch [#23144] bpy.Image.gl_load() -- fixCampbell Barton
from Dan Eicher (dna) - image.gl_load() was using GL_UNSIGNED_INT rather then GL_UNSIGNED_BYTE channel type. - changed image.gl_load() to use the image clamp settings (patch had this as an extra argument).
2010-08-02SVN maintenance.Guillermo S. Romero
2010-08-02Fix preview render crash after recent G.main changes.Brecht Van Lommel
2010-08-01Fix for the fix.Thomas Dinges
2010-08-01Compile fix for recent changes. Function needed 1 more argument. Thomas Dinges
Chingiz can you please check?
2010-08-01OSX/Cocoa : fix the Cmd modifier stuck after cancelling the quit dialogDamien Plisson
2010-08-01bugfix [#23134] uv project modifier not working.Campbell Barton
own recent commit introduced this bug. would like to have this working correctly but for now commenting.
2010-08-01set blender binary name for pythonCampbell Barton
2010-08-01Smoke:Daniel Genrich
- Bugfix for not cleared smoke sim when doing alt-a and waiting for 2 sim cycles to complete
2010-08-01- new __main__ module wasnt de-referenced after adding into sys.modulesCampbell Barton
- made int buttons round floats better 10.6 --> 11
2010-08-01Fix for crash due to last commit.Brecht Van Lommel
2010-08-01bugfix [#23129] alt-p in the texteditor doesn't work anymoreCampbell Barton
recent commit cleared the __main__ namespace once a script finished which meant classes defined there would loose their namespace. now inset a new __main__ module into sys.modules for every script that runs, any classes that are registered will hold a reference to that modules namespace.
2010-08-012.5: more G.main changes.Brecht Van Lommel
2010-08-012.5: code changes to reduce the usage of G.main and pass it alongBrecht Van Lommel
or get it from the context instead.
2010-08-01Smoke:Daniel Genrich
- Bugfix for display problems in shaded view: Reverting to wire display mode for domain.
2010-08-01mistake in recent commit allowd bpy.types.Scene() which would then crash ↵Campbell Barton
blender (thanks for spotting Luca).
2010-08-01bugfix'sCampbell Barton
[#23108] bpy.ops.object.origin_set(type='GEOMETRY_ORIGIN') dosen't work in console [#23115] Crash when moving armature origin - setting the armature in editmode would leave editdata in some cases. - transforming selected linked objects to account for the movement of the obdata was only done for meshes, now do for curves and text3d. - added utility functions for getting curve & mesh bounds. - text3d moving center wasn't working at all. - changed drawobject.c to use BLI_math funcs in more places. - remove some unused code from operator object.origin_set.
2010-08-01fix for un-initialized layer (only bits between 1 and 20 were initialized)Campbell Barton
2010-08-01- font object x/yoffset was making text box's wrap text incorrectly.Campbell Barton
- draw text boxes with the offset applied. (abologies for making font.c even more confusing)
2010-07-31Separate proportional edit setting between edit and object mode. They are ↵Martin Poirier
now used and toggled independently.
2010-07-31netrender: fix reloadMartin Poirier
Note: this is tested and work with metaclass registering. If it doesn't work with registering lists (as currently in svn), I can still commit the metaclass method...
2010-07-31== rigify ==Luca Bonavita
- small fix, doing F8 complains during the unregister phase - hey Campbell, also netrender complains during F8, prints lots of "AttributeError: 'Scene' object has no attribute 'network_render'" I tried to track this down with no luck, bpy.types.Scene doesn't seem to have a network_render method anymore? I'll investigate later if it won't be fixed already :)
2010-07-31use more BLI math funcs (no functional changes)Campbell Barton
2010-07-31recent commit to make color balance work like the sequencer, I forgot that ↵Campbell Barton
the gamma was inverted. fixed.
2010-07-31- add back prefix for ID lists (LF) for linked and fake user for search fields.Campbell Barton
- remove debug print for left/right name flipping & commented test from the sequencer.
2010-07-31Change compositor color balance to match the sequencer exactly, for this to ↵Campbell Barton
work linear/srgb conversions need to be done which that nice since it has to convert from/to the color spaces each time, after quite a lot of testing I think its the best way to go. The problem was that typical lift values (0.5 - 1.5, in our case ) would over saturate shadows so that even minor adjustments would give unusable results. tweaking the input lift to compensate for this helped with the shadows but would loose the color adjustments for the mid-tones.
2010-07-31patch [#23110] isolate render type UI labelling + operator to clear all hide ↵Nathan Letwory
render flags in scene by Peter Schulman
2010-07-30Properties Window:Thomas Dinges
* Deleted space_buttons.py file as I doubt that these buttons will be done in python. File was not used anyway. * Deleted some ifdef checks from space_buttons.c for the py header.
2010-07-30Logic Editor:Thomas Dinges
*Removed the old header menu code, replacing with Python menus.
2010-07-30Ui Scripts:Thomas Dinges
* Made a "View" Menu in the Text Editor, these settings don't belong into a "Text" Menu. * Added "Properties" Operator into the VSE "View" menu.
2010-07-30Fix #23086: crash reading 1bit tiff files.Brecht Van Lommel
2010-07-30bugfix [#23105] Scene strips renders out darker (no gamma corection?)Campbell Barton
2010-07-302.5: remove vertex normal flip option, this is more harmful than helpfulBrecht Van Lommel
in many cases, and also gave incorrect rim lighting.