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
2011-08-10Cycles: amd opencl compatibility fixes.Brecht Van Lommel
2011-08-09Cycles: opencl 1.1 compatibility tweaks.Brecht Van Lommel
2011-08-08Cycles: fix missing texture space panels.Brecht Van Lommel
2011-08-08Cycles: fix missing update when clearing object transforms.Brecht Van Lommel
2011-08-07Cycles: svn merge -r37957:39132 ↵Brecht Van Lommel
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2011-08-07Cycles: remove docs from svn, moved to wiki.Brecht Van Lommel
2011-08-07Fix #28169: keymap bug when using a preset configuration, e.g. object mode ↵Brecht Van Lommel
keymap was also being used in edit mode.
2011-08-07fix [#28172] Cannot restore Add-ons tab in user preferences after a failed ↵Campbell Barton
attempt to install an add-on. non utf8 addons would make the addon UI vanish, now give a message in the console and UI.
2011-08-07comment unused varsCampbell Barton
2011-08-07stricter NDOF guards for Windows (forgot in earlier commit)Mike Erwin
2011-08-07fixed crash when NDOF operators were called without an NDOF_MOTION eventMike Erwin
2011-08-06rna/ui: avoid duplicate property gHash lookups by passing the property when ↵Campbell Barton
its already been found. added _prop suffix to ui functions which take a prop rather then a propname, may change this later since its not that nice but for gsoc branches this keeps existing UI functions working the same.
2011-08-06make ui_def_but_rna into 2 functions, once which takes a prop, another which ↵Campbell Barton
takes a propname, no functional change yet but lets us avoid duplicate hash lookups.
2011-08-06for UI text drawing use BLF_ascender(fs->uifont_id) rather then ↵Campbell Barton
BLF_height(fs->uifont_id, "2"), while profiling draw noticed that the hash lookup on the character and utf8 next were being called on every text draw, use BLF_ascender since it doesn't do any lookups.
2011-08-06remove copy modifiers function, now handled in link data operator.Campbell Barton
2011-08-06KEYMAP REFACTORINGBrecht Van Lommel
Diff Keymaps User edited keymaps now no longer override the builtin keymaps entirely, but rather save only the difference and reapply those changes. This means they can stay better in sync when the builtin keymaps change. The diff/patch algorithm is not perfect, but better for the common case where only a few items are changed rather than entire keymaps The main weakness is that if a builtin keymap item changes, user modification of that item may need to be redone in some cases. Keymap Editor The most noticeable change here is that there is no longer an "Edit" button for keymaps, all are editable immediately, but a "Restore" buttons shows for keymaps and items that have been edited. Shortcuts for addons can also be edited in the keymap editor. Addons Addons now should only modify the new addon keyconfiguration, the keymap items there will be added to the builtin ones for handling events, and not get lost when starting new files. Example code of register/unregister: km = wm.keyconfigs.addon.keymaps.new("3D View", space_type="VIEW_3D") km.keymap_items.new('my.operator', 'ESC', 'PRESS') km = wm.keyconfigs.addon.keymaps["3D View"] km.keymap_items.remove(km.keymap_items["my.operator"]) Compatibility The changes made are not forward compatible, i.e. if you save user preferences with newer versions, older versions will not have key configuration changes that were made.
2011-08-05Messed up char was causing problems on windows even though it was in the Kent Mein
comments. Kent
2011-08-05fix for GHOST/SDL key input with uppercase keys.Campbell Barton
2011-08-05ifdef out support for for python owning and freeing BPy_StructRNA because ↵Campbell Barton
this is only used for doc generation and it makes _every_ blender/python instance 4 bytes bigger - vertex/bezier point/object/scene/group etc.
2011-08-05pyrna - add own callable function type rather then using a standard python ↵Campbell Barton
method, gives small speedup drawing buttons since every layout.prop/col/operator/menu etc creates and throws away one of these.
2011-08-05move the ndof menu into the userpref's since it adjusts preferences, also ↵Campbell Barton
renamed VIEW3D_MT_ndof_settings -> USERPREF_MT_ndof_settings since it has no view3d specific settings.
2011-08-05patch from jensverwiebe to scons to be compatible with gcc llvm. people who ↵Campbell Barton
copy the darwin-config.py to their user-config.py should update.
2011-08-05fix for icon scaling with the DPI settingCampbell Barton
- icons were scaling by the sqrt(dpi)/8.48528, but infact they only need to be scaled by (dpi/72). - UI_icon_get_width value was being used without multiplying by dpi scale.
2011-08-05get a tad more vertical space in the toolbar.Campbell Barton
2011-08-05fix [#28160] Pressing Y on an image sequence to seperate the images takes ↵Campbell Barton
them out of their meta strips dont show a popup anymore, was silly because you had to change the value for before anything was done, can use f6 redo popup instead, sequencer should eventually have a view3d operator redo panel.
2011-08-05fix for possible uninitialized RNA strings, when RNA_string_get property is ↵Campbell Barton
not found, initialize the string to "".
2011-08-05fix [#28102] Typing 'C:' into the file selector's directory asks to make a ↵Campbell Barton
new directory.
2011-08-05change BLO_library_append_begin to take a main argument rather then a ↵Campbell Barton
context, means the BGE doesnt need to make a new empty context just to pass as an arg. added doxygen description too. this quiets the print when the BGE does linking.
2011-08-04fix for building with clang. makesrna wasnt linking with sqrtCampbell Barton
2011-08-04Typo when reading line curving. The subversion is 1, so smaller than 1 ↵Jeroen Bakker
should be converted
2011-08-04remove append to cursor code, wasnt used and made some naive assumptions ↵Campbell Barton
about object locations.
2011-08-04UserPref/Node editor feature: Change the level of noodle curving.Jeroen Bakker
Some people like curved lines, other hate them. This commit will let the user change the level of curving. In UserPreferences=>Themes=>Node editor=>Noodle curving the level can be modified. Allowed range is 0-10 with the default on 5 The patch will default everything to the way blender works ATM. File subversion has been increased otherwise older 258 files got straight lines. The data is stored in the ThemeSpace.noodle_curving the bezierdrawing is done in the drawnode. Also tested the Line cut tool
2011-08-04rst API doc fixes: literalincluding bge.texture and bge.constraints examples ↵Dalai Felinto
+ bgl fixes
2011-08-04when appending with a NULL context dont print warnigns about scene not being ↵Campbell Barton
set - was annoying for BGE LibLoad.
2011-08-04patch from jensverwiebe to disable ndof if header is not found.Campbell Barton
2011-08-04stricter guards for disabling NDOF code (will test in 3.. 2.. 1..)Mike Erwin
2011-08-04fix [#28114] Render CrashCampbell Barton
existing check for driver to use GIL was not thread safe and could cause, details in the report. This bug was caused by a check to avoid hanging, a fix for [#27683] that worked in 2.4x because the UI didn't use python to draw while rendering. Apply a different fix for [#27683], when calling an operator, call PyEval_SaveThread(), then PyEval_RestoreThread() so the GIL can be aquired by threads started by the operator - in this case bake starting a thread that evaluates drivers.
2011-08-03Add .py extension if it is missing from keymap file.Kent Mein
This is for bug #28141 While not really a bug, it makes it a lot easyer to use if it has the exension. (Isn't hidden from the user when they try to load it...) Kent
2011-08-03Crash in MMB moves (etc): commit of today was reading NULL pointer.Ton Roosendaal
2011-08-03enable NDOF by default with cmake again, but check if it can be found on ↵Campbell Barton
OSX, if not disable. I cant test this but at least if I made a mistake it will just not find the SDK and disable. an osx dev needs to test.
2011-08-03Default to False for WITH_BF_3DMOUSE, since needs separate package installed.Nathan Letwory
2011-08-03Cmake: compile with NDOF default off. This is a dependency on codeTon Roosendaal
that's not in our svn.
2011-08-03Add win64_scons builderNathan Letwory
2011-08-03Add BF_BITNESS for win32/win64Nathan Letwory
2011-08-03Fixing terrible typo.Sergey Sharybin
2011-08-03Switch slave_pack to use new FFmpeg for windows.Sergey Sharybin
2011-08-03Switch windows buildbot to new FFmpeg 0.8.1.Sergey Sharybin
Hope it'll work because i haven't got buildbot slave by hand.
2011-08-03- Move list of FFmpeg DLLs to be installed from SConstructSergey Sharybin
to conficuration variable BF_FFMPEG_DDL. This would allow to use different FFmpeg in buildbot. - Added some 3DMOUSE variables to list of command line options. Now 3dmouse related-settings can be set from command line.
2011-08-03fix [#27965] VSE: no visual feedback on locked stripsCampbell Barton
added xpm -> opengl stipple conversion script.
2011-08-03- Switch linux buildbot to FFmpeg-0.8.1Sergey Sharybin
- Enable FFmpeg for blenderplayer for linux buildbot.