Jens Verwiebe
d0e7be242b
OSX: solve weaklinking for non-apple compilers by using Xlinker, build also QTKit with apple gcc, to be more compatible to distributed gnu-gcc compilers without objC, objC++ capabilities
2011-09-28 11:56:50 +00:00
Campbell Barton
c8b0d25794
fix [ #28158 ] Image crop keyframes/fcurves do not 'stick' to strip
2011-09-28 10:05:56 +00:00
Campbell Barton
450ea01002
transform sequencer update was checking against the wrong transform mode.
2011-09-28 09:47:30 +00:00
Campbell Barton
5e3110af05
add support for a 4th item for rna property enums in python so the numeric value can be passed, this is so you can animate the enum and keep the values even if you add items in the middle of the enum. - request from ZanQdo.
2011-09-28 09:18:20 +00:00
Sergey Sharybin
3a4b6da674
Fix #28601 : SEGFAULT: Regression in free_imbuf_seq
...
Actually, it's NULL-pointer dereference in rna_Sequence_update caused by RNA cache.
Discussed with Joshua and he thought it's acceptable for now to add
extra NULL-check here.
2011-09-28 08:56:40 +00:00
Sergey Sharybin
2d151cda1c
Fix crash when starting baking fluid when baking thread is already started.
2011-09-28 08:31:02 +00:00
Campbell Barton
4158cee688
color strip was showing image crop and and offset twice, also made 'Make Metastrip' key shortcut Ctrl+G (so shift+G can be used for select group like object mode)
2011-09-28 08:03:02 +00:00
Campbell Barton
bc593cac23
fix for incorrect use of strlen() with the sequencer rna (no need for strlen()+1)
2011-09-28 06:48:17 +00:00
Campbell Barton
ba58bc51fd
fix [ #28725 ] No way to control fluid simulator from Python API?
...
now exec() blocks while doing fluid bake, invoke starts a background job (texture bake also works this way).
2011-09-28 06:26:46 +00:00
Campbell Barton
018fa1540e
whitespace edits, make formatting for functions consustent at least within the file.
2011-09-28 05:53:40 +00:00
Campbell Barton
4208eed25b
use __func__ rather than function names in rna prints, some were incorrect.
...
also replace use of strlen() where checking first char is enough.
2011-09-28 05:20:14 +00:00
Campbell Barton
2bc2752374
correct own fix for #28751
2011-09-28 02:02:57 +00:00
Sergey Sharybin
ac166d5eb6
Fix for MSVC.
2011-09-27 19:04:27 +00:00
Benoit Bolsee
f2c2ba7ef3
Detour: fix bug with steering actuator: object pointer not removed.
2011-09-27 17:47:41 +00:00
Dalai Felinto
c927e37410
OSX CMake bundle - blenderplayer doesn't need locale, data, ..
...
also blenderplayer is a subset of Blender, so no need to repeat the macros here.
2011-09-27 17:06:10 +00:00
Campbell Barton
3bcbefa558
minor changes to interface code (no functional changes)
...
- made 2 loops on menu items break out of the loop when the item is found.
- include function names in error prints.
2011-09-27 17:04:38 +00:00
Campbell Barton
3abfb2af43
fix [ #28752 ] Brush Icons do not scale correctly with DPI
2011-09-27 16:39:41 +00:00
Campbell Barton
aaae90af33
fix [ #28751 ] Item in Enum propertie is grayed out
...
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-27 16:23:40 +00:00
Sergey Sharybin
cb7b7b3b9e
Silence some gcc warnings.
2011-09-27 13:33:32 +00:00
Sergey Sharybin
4b24951ff1
Return back nice eye icon to constraints header (instead of speaker which not so nice in this context, imo)
2011-09-27 13:11:19 +00:00
Campbell Barton
e4c299d975
comment warnings as errors for MSVC - it too easily made small problems like unused vars into errors which gets annoying for non developers.
...
with GCC we have *some* warnings as errors which works out better.
2011-09-27 12:08:35 +00:00
Bastien Montagne
6b825e6798
Commented and tagged some unused vars (gcc warnings...)
2011-09-27 11:02:19 +00:00
Jens Verwiebe
7ba71fff8c
OSX: fix player bundle_creation
2011-09-27 10:51:57 +00:00
Campbell Barton
768806adc0
bpy.app.handlers.frame_change_pre/post handlers.
2011-09-27 10:43:45 +00:00
Bastien Montagne
7fbfca48d2
Minor: Other UI strings typos and tweaks. Also updated french po & mo.
2011-09-27 10:37:02 +00:00
Sergey Sharybin
1d202ba90c
Fix for recent commit: mistake in sconscript
2011-09-27 09:40:53 +00:00
Sergey Sharybin
a1857b407c
Fixing typo in comment - no functional changes
2011-09-27 09:21:17 +00:00
Sergey Sharybin
b66f219687
navmesh: code clean-up, should be no functional changes.
2011-09-27 09:09:55 +00:00
Sergey Sharybin
dcccf3fc1f
navmesh: solve bad level calls to edit mesh functions
...
Move navmesh operators from editors/object to editors/mesh
2011-09-27 09:09:52 +00:00
Sergey Sharybin
a25c7f647e
navmesh: convert object_navmesh.cpp to plain c.
2011-09-27 09:09:43 +00:00
Campbell Barton
928e2784c6
py api
...
- 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-27 05:28:06 +00:00
Campbell Barton
d98bcb8a77
fix for py/rna api bug:
...
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-27 04:07:48 +00:00
Campbell Barton
f4dec97cef
fix for building on windows, clear some warnings too
2011-09-27 01:32:27 +00:00
Martin Poirier
2170301204
[ #28681 ] Switching transform type doesn't register correct operator for 'repeat'.
...
Reported by Nicholas Rishel
Part of a potential fix, see discussion in tracker.
2011-09-27 01:28:15 +00:00
Campbell Barton
58587a3881
replace strncpy with BLI_strncpy, in some cases strncpy was being misused since it doesnt ensure \0 termination.
...
also dont call CTX_data_scene() twice when checking for function arguments.
2011-09-26 18:51:10 +00:00
Campbell Barton
e897c8e83e
fix [ #28742 ] UILayout.menu() with icon misbehaves in headers
2011-09-26 17:32:50 +00:00
Campbell Barton
dc76be62d9
replace strnlen with BLI_strnlen, make some args const - no functional changes.
2011-09-26 17:30:56 +00:00
Campbell Barton
fbdfdfefd8
use BLI_snprintf rather than sprintf for interface functions
2011-09-26 16:53:04 +00:00
Sergey Sharybin
dc19877a09
Remove PROP_TRANSLATE flag from labels for operators, menus and panels.
...
This flag lead to storing translated label for templates and
instant language switching became impossible.
This labels are display-time translated.
2011-09-26 14:29:39 +00:00
Bastien Montagne
3cff99c9a1
Commented and tagged some unused vars (gcc warnings...). Also fixed some uninitialized warnings.
2011-09-26 13:24:42 +00:00
Bastien Montagne
c23bc03382
Minor: Other UI strings typos and tweaks. Also updated french po & mo.
2011-09-26 12:08:04 +00:00
Campbell Barton
573ed73be8
change define INTERNATIONAL --> WITH_INTERNATIONAL
...
also rename backface_culling --> use_backface_culling (which is used elsewhere in rna)
2011-09-26 10:35:47 +00:00
Campbell Barton
0aa19de52f
add missing imports to wm.py and remove "." from rna descriptions.
2011-09-26 09:31:24 +00:00
Sergey Sharybin
f0cceedd7a
Fix #28747 : Crash in Node Editor
...
Setting of transform flags happened with NULL edittree
2011-09-26 08:51:02 +00:00
Campbell Barton
b3d21088aa
workaround/fix for [ #28379 ] Shift+F problem when using Ortho Camera
...
temp switch to perspective mode since fly mode doesnt really make sense for otho view.
2011-09-26 08:33:51 +00:00
Dalai Felinto
aeafb960b1
OSX - cmake: blenderplayer part 2: Jens Verwiever co-patch
...
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-26 07:54:30 +00:00
Campbell Barton
8f302f7ffd
bugfix [ #28744 ] Object mapped textures (decals) in linked files are not rendered properly
2011-09-26 07:39:29 +00:00
Dalai Felinto
11a0e00819
BGE Material settings renaming Back Culling to Backface Culling and make it on by default
...
under suggestion of Mitchell Stokes (Moguri)
2011-09-26 06:39:19 +00:00
Dalai Felinto
4b273f013e
cmake files for bundling blenderplayer in OSX
...
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-26 05:26:04 +00:00
Bastien Montagne
a932f93098
Commented and tagged some unused vars (gcc warnings...).
2011-09-25 15:37:06 +00:00