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
path: root/source
AgeCommit message (Collapse)Author
2011-09-28color strip was showing image crop and and offset twice, also made 'Make ↵Campbell Barton
Metastrip' key shortcut Ctrl+G (so shift+G can be used for select group like object mode)
2011-09-28fix for incorrect use of strlen() with the sequencer rna (no need for ↵Campbell Barton
strlen()+1)
2011-09-28fix [#28725] No way to control fluid simulator from Python API?Campbell Barton
now exec() blocks while doing fluid bake, invoke starts a background job (texture bake also works this way).
2011-09-28whitespace edits, make formatting for functions consustent at least within ↵Campbell Barton
the file.
2011-09-28use __func__ rather than function names in rna prints, some were incorrect.Campbell Barton
also replace use of strlen() where checking first char is enough.
2011-09-28correct own fix for #28751 Campbell Barton
2011-09-27Fix for MSVC.Sergey Sharybin
2011-09-27Detour: fix bug with steering actuator: object pointer not removed.Benoit Bolsee
2011-09-27OSX CMake bundle - blenderplayer doesn't need locale, data, ..Dalai Felinto
also blenderplayer is a subset of Blender, so no need to repeat the macros here.
2011-09-27minor changes to interface code (no functional changes)Campbell Barton
- made 2 loops on menu items break out of the loop when the item is found. - include function names in error prints.
2011-09-27fix [#28752] Brush Icons do not scale correctly with DPI Campbell Barton
2011-09-27fix [#28751] Item in Enum propertie is grayed outCampbell Barton
was infact a very old bug where an empty title took the following word for the title, eg: "%t|First Item|Second Item" the first item would be evaluated as a title.
2011-09-27Silence some gcc warnings.Sergey Sharybin
2011-09-27Return back nice eye icon to constraints header (instead of speaker which ↵Sergey Sharybin
not so nice in this context, imo)
2011-09-27comment warnings as errors for MSVC - it too easily made small problems like ↵Campbell Barton
unused vars into errors which gets annoying for non developers. with GCC we have *some* warnings as errors which works out better.
2011-09-27Commented and tagged some unused vars (gcc warnings...)Bastien Montagne
2011-09-27OSX: fix player bundle_creationJens Verwiebe
2011-09-27bpy.app.handlers.frame_change_pre/post handlers.Campbell Barton
2011-09-27Minor: Other UI strings typos and tweaks. Also updated french po & mo.Bastien Montagne
2011-09-27Fix for recent commit: mistake in sconscriptSergey Sharybin
2011-09-27Fixing typo in comment - no functional changesSergey Sharybin
2011-09-27navmesh: code clean-up, should be no functional changes.Sergey Sharybin
2011-09-27navmesh: solve bad level calls to edit mesh functionsSergey Sharybin
Move navmesh operators from editors/object to editors/mesh
2011-09-27navmesh: convert object_navmesh.cpp to plain c.Sergey Sharybin
2011-09-27py apiCampbell Barton
- use Py_ssize_t when dealing with python sequence sizes - dont call PySequence_Size(py_b) in a loop (its slow). - use faster sequence/float parsing in aud.Factory.filter
2011-09-27fix for py/rna api bug:Campbell Barton
PyC_UnicodeAsByte(), used for getting python strings as bytes wasnt clearning utf-8 conversion errors. this would raise an error when getting an operators filepath.
2011-09-27fix for building on windows, clear some warnings tooCampbell Barton
2011-09-27[#28681] Switching transform type doesn't register correct operator for ↵Martin Poirier
'repeat'. Reported by Nicholas Rishel Part of a potential fix, see discussion in tracker.
2011-09-26replace strncpy with BLI_strncpy, in some cases strncpy was being misused ↵Campbell Barton
since it doesnt ensure \0 termination. also dont call CTX_data_scene() twice when checking for function arguments.
2011-09-26fix [#28742] UILayout.menu() with icon misbehaves in headersCampbell Barton
2011-09-26replace strnlen with BLI_strnlen, make some args const - no functional changes.Campbell Barton
2011-09-26use BLI_snprintf rather than sprintf for interface functionsCampbell Barton
2011-09-26Remove PROP_TRANSLATE flag from labels for operators, menus and panels.Sergey Sharybin
This flag lead to storing translated label for templates and instant language switching became impossible. This labels are display-time translated.
2011-09-26Commented and tagged some unused vars (gcc warnings...). Also fixed some ↵Bastien Montagne
uninitialized warnings.
2011-09-26Minor: Other UI strings typos and tweaks. Also updated french po & mo.Bastien Montagne
2011-09-26change define INTERNATIONAL --> WITH_INTERNATIONALCampbell Barton
also rename backface_culling --> use_backface_culling (which is used elsewhere in rna)
2011-09-26add missing imports to wm.py and remove "." from rna descriptions.Campbell Barton
2011-09-26Fix #28747: Crash in Node EditorSergey Sharybin
Setting of transform flags happened with NULL edittree
2011-09-26workaround/fix for [#28379] Shift+F problem when using Ortho CameraCampbell Barton
temp switch to perspective mode since fly mode doesnt really make sense for otho view.
2011-09-26OSX - cmake: blenderplayer part 2: Jens Verwiever co-patchDalai Felinto
Using OSX Bundle (in oppose to Blender dummy .app) as start point for binary. That way we don't need to move the blenderplayer after the bundle is finished and we can rebuild it without doing `make install` I will test more tomorrow, but it should be working now
2011-09-26bugfix [#28744] Object mapped textures (decals) in linked files are not ↵Campbell Barton
rendered properly
2011-09-26BGE Material settings renaming Back Culling to Backface Culling and make it ↵Dalai Felinto
on by default under suggestion of Mitchell Stokes (Moguri)
2011-09-26cmake files for bundling blenderplayer in OSXDalai Felinto
this is working fine. The only problem is described in the XXX there. While Blender is linked to the right place during `make` time (~/bin/blender.app/Content/MacOS/blender) blenderplayer is in the top bin folder (~/bin/blenderplayer). That means it will be correct only after you run `make install` (we are moving it to the right place inside the bundle). I couldn't find the place to fix this properly. I will see with Jens Verwiebe how we can address that.
2011-09-25Commented and tagged some unused vars (gcc warnings...).Bastien Montagne
2011-09-25Fix some MSVC 2010 warnings (including one apparent bug in ↵Andrew Wiggin
intern/elbeem/intern/solver_relax.h)
2011-09-25whitespace cleanupCampbell Barton
2011-09-25Committing patch #27442: Adaptive time step for fluid particles. The number ofAlex Fraser
subframes can now be altered automatically while an SPH (fluid particle) simulation is running.
2011-09-25Minor: Other UI strings typos and tweaks. Also updated french po & mo.Bastien Montagne
2011-09-25patch [#28616] Multiple particle systems supportCampbell Barton
from Andrea Rugliancich (andrearu01)
2011-09-25BGE Animations: Fixing various Action Actuator compatibility issues reported ↵Mitchell Stokes
by Dalai in issue #28723.