Thomas Dinges [Sun, 5 Sep 2010 07:08:21 +0000 (07:08 +0000)]
Windows Icons:
* Removed old not used icons.
* Player is using the same icon file as the blender.exe now.
Thomas Dinges [Sun, 5 Sep 2010 06:31:31 +0000 (06:31 +0000)]
Bugfix for [#23571] Blender Desktop Icon does not change size under Vista and Windows 7
* Committing new logo, same design as old one, just larger size, by Alexander Kuznetsov
. Thank you!
Note: Could only test on Vista. But it should also work on XP machines.
Note 2 (to jesterKing, elubie: Vista uses the winblender.ico also for the blend files, it doesn't use the winblenderfile.ico. But I guess Windows XP use that still?
If not we could remove that, also blenderplayer, is same as blendericon.
Peter Schlaile [Sat, 4 Sep 2010 20:55:31 +0000 (20:55 +0000)]
This fixes: [#23672] If frame offset is too high the strip jumps forward
when you try to move it.
Arystanbek Dyussenov [Sat, 4 Sep 2010 19:27:04 +0000 (19:27 +0000)]
Merge -c 31610 (<instance_node> support) from COLLADA branch into trunk.
Thomas Dinges [Sat, 4 Sep 2010 11:11:37 +0000 (11:11 +0000)]
Bugfix for [#23676] Obj Import fails again.
Nathan Letwory [Sat, 4 Sep 2010 09:27:21 +0000 (09:27 +0000)]
Silence warning about BLI_sprintfN
Thomas Dinges [Fri, 3 Sep 2010 16:45:33 +0000 (16:45 +0000)]
2.5 Constraints:
*Enable/Disable Checkbox was inverted.
Campbell Barton [Fri, 3 Sep 2010 16:23:31 +0000 (16:23 +0000)]
error with allocating memory for a new material array (own fault in recent commit)
Campbell Barton [Fri, 3 Sep 2010 14:53:54 +0000 (14:53 +0000)]
rna api
- move: material.add_texture(tex, coords, mapto) --> material.texture_slots.add()
- added material.texture_slots.create(index), material.texture_slots.clear(index)
- texture slot functions also work for lamp and world now.
Other minor changes
- allow rna functions to set FUNC_NO_SELF and FUNC_USE_SELF_ID at once.
- [#23317] Changed some operators' RNA to accept lengths, a modification I made to this patch made it not work as intended, removed this edit so unit buttons appier in the UI for certain operators.
- Sphinx doc gen, 2 columns rather then 3, didnt quite fit in some cases.
Campbell Barton [Fri, 3 Sep 2010 09:21:40 +0000 (09:21 +0000)]
sphinx doc gen
- use 3 column lists for inherited props, funcs and for references to save on vertical space.
- use the blender version string for the upload path and PDF name.
Janne Karhu [Fri, 3 Sep 2010 07:50:22 +0000 (07:50 +0000)]
Fix for [#21101] Switch off collision at collision object is not recognised by falling softbody Object
* When removing a modifier that effects the depsgraph the DAG_scene_sort has to be done after the update call so that dynamic systems can clear the collision surface properly.
Janne Karhu [Fri, 3 Sep 2010 07:47:10 +0000 (07:47 +0000)]
Fix for [#22387] Collider stickiness seems to have broke
* Note that this fix might slightly change the simulation results of some files that use the stickiness value, but lowering the value should fix these issues.
Campbell Barton [Fri, 3 Sep 2010 07:25:37 +0000 (07:25 +0000)]
use set as a suffix (matches operators)
- set_frame() --> frame_set()
- set_context_pointer() --> context_pointer_set()
material adding works for curves and metaballs, new function to remove materials.
materials.link() didnt well fit how this is used elsewhere
- order matters
- it can be linked more than once.
- remove(material), isnt that useful since you need to manage indicies.
... use list style functions instead. materials.append(mat) / materials.pop(index)
Janne Karhu [Fri, 3 Sep 2010 06:18:23 +0000 (06:18 +0000)]
Fix for [#19950] Object Particles and texture controlled density
* The hair strands that were cut based on the texture weren't properly checked for in the duplication code.
Janne Karhu [Fri, 3 Sep 2010 06:12:40 +0000 (06:12 +0000)]
Fix for [#23642] Particle system "Lifetime" setting does not animate
Janne Karhu [Fri, 3 Sep 2010 05:54:09 +0000 (05:54 +0000)]
Fix for [#22147] Particle system, fight boids bug (dead particle)
Janne Karhu [Fri, 3 Sep 2010 05:48:19 +0000 (05:48 +0000)]
"Fix" for [#23640] particle system partially indifferent to vertex groups
* Some particle vertex groups haven't yet been reimplemented so commented these out in ui.
Janne Karhu [Fri, 3 Sep 2010 05:25:12 +0000 (05:25 +0000)]
Changed the error messages "Can't pack/unpack movie or image sequence." to more descriptive ones "Packing/Unpacking movies or image sequences not supported." as suggested by Brecht.
Nathan Letwory [Fri, 3 Sep 2010 05:18:36 +0000 (05:18 +0000)]
Fix [#23569] Convex hull bounds crash Blender
Reported by dobz116
This appears to happen only on 64bit Windows. An issue for this part of code was
reported at http://code.google.com/p/bullet/issues/detail?id=204 and fixed at
http://code.google.com/p/bullet/source/detail?r=1650 . The code change also fixes
the crash we experience: merged changes.
Guillermo S. Romero [Fri, 3 Sep 2010 03:30:20 +0000 (03:30 +0000)]
SVN maintenance.
Campbell Barton [Fri, 3 Sep 2010 02:26:42 +0000 (02:26 +0000)]
script for dumping rna api, to be used to generate api changes for release logs.
added to review function calls too.
output:
# * functions *
KeyConfig.keymaps.find(string name, enum space_type='EMPTY', enum region_type='WINDOW') --> KeyMap
KeyConfig.keymaps.find_modal(string name) --> KeyMap
KeyConfig.keymaps.new(string name, enum space_type='EMPTY', enum region_type='WINDOW', boolean modal=False) --> KeyMap
KeyConfigurations.new(string name) --> KeyConfig
KeyConfigurations.remove(KeyConfig keyconfig)
# * properties *
WorldMistSettings.intensity <-- float
WorldMistSettings.start <-- float
WorldMistSettings.use_mist <-- boolean
WorldStarsSettings.average_separation <-- float
WorldStarsSettings.color_random <-- float
WorldStarsSettings.distance_min <-- float
WorldStarsSettings.size <-- float
WorldStarsSettings.use_stars <-- boolean
Nathan Letwory [Thu, 2 Sep 2010 22:04:33 +0000 (22:04 +0000)]
Fix [#23638] Missing directory creation
Reported and patched by Mariusz Maximus
I overlooked this one while fixing up for win64 compiling, because I had already manually created this directory.
Nathan Letwory [Thu, 2 Sep 2010 21:56:08 +0000 (21:56 +0000)]
Fix [#23578] Blender crashes when Audio Scrubbing is on
Reported by Guy Smith.
MSVC-compiled code would fall over iterator decrease on empty list. Shortest snippet to redo: http://www.pasteall.org/15408/cpp
See also http://www.pasteall.org/15409/cpp for list.end() behaviour on MSVC. Thanks to Jörg Müller for assistance.
Campbell Barton [Thu, 2 Sep 2010 18:13:06 +0000 (18:13 +0000)]
patch from venomgfx, show number of textures assigned to lamps and world in the context panel
Campbell Barton [Thu, 2 Sep 2010 14:43:22 +0000 (14:43 +0000)]
bugfix [#23635] property limits don't work when added via scripting\
also fix for bug where soft limits could be greater then hard limits with bpy.props.* functions.
Campbell Barton [Thu, 2 Sep 2010 10:56:50 +0000 (10:56 +0000)]
revert own commit which changed weight range, the set weight operator is for the goal weight, not the nurbs weight.
Janne Karhu [Thu, 2 Sep 2010 10:26:19 +0000 (10:26 +0000)]
Fix for [#23298] Kill particle breaks when baking simulation
* Cached particle die times are now read from cached data
Janne Karhu [Thu, 2 Sep 2010 09:11:40 +0000 (09:11 +0000)]
Possible fix for [#23334] Particle Mode - Weight editing crashes if large number of particles OR you have added in Particle Mode
Janne Karhu [Thu, 2 Sep 2010 08:06:53 +0000 (08:06 +0000)]
"Fix" for [#23621] lattice modifier on particle hair when applied doesn't apply it to the hair
* Although not strictly a bug it is the expected behavior and won't mess anything else up.
* Note: the lattice is applied to the actual hair keys instead of the calculated strands so the applied result will differ a bit from the original.
Janne Karhu [Thu, 2 Sep 2010 07:24:38 +0000 (07:24 +0000)]
Fix for [#22329] Particles won't render when display mode is different
Campbell Barton [Thu, 2 Sep 2010 07:00:34 +0000 (07:00 +0000)]
- inconsistent rna names - use 'vertex_group_' as prefix, only ui scripts used this
- change curve offset to be 0.0 for its rest/default value (not 1.0)
Janne Karhu [Thu, 2 Sep 2010 06:58:54 +0000 (06:58 +0000)]
Fix for [#23136] Particle display percentage "forgotten" after render
* The actual problem was that the total amount of particles was rendered at all, since only the displayed percentage was calculated correctly.
* New behavior is that before baking (baking is always done for full % of particles) the display % is used for rendering too for dynamic particles.
* Also added a warning below the display % slider to inform about the situation.
Campbell Barton [Thu, 2 Sep 2010 06:35:00 +0000 (06:35 +0000)]
- new subclass for ID-Property based collections - this way add/remove/move functions will only be shown for types that support it.
- moved array attributes into array properties - saves 8 bytes per allocated non-array property.
Janne Karhu [Thu, 2 Sep 2010 05:51:02 +0000 (05:51 +0000)]
[#23462] Hair display affects rendered quantity
Janne Karhu [Thu, 2 Sep 2010 05:37:54 +0000 (05:37 +0000)]
Fix for [#23274] curve guide force particles to born at the wolrd's origine
* Particle emitter location wasn't taken into account properly
Campbell Barton [Thu, 2 Sep 2010 04:53:05 +0000 (04:53 +0000)]
rna context rename
* context.main & bpy.types.Main --> context.blend_data & bpy.types.BlendData
* context.manager --> context.window_manager
Nathan Letwory [Thu, 2 Sep 2010 00:24:33 +0000 (00:24 +0000)]
Fix [#23613] Align active camera to view vs toggle camera acts odd
Reported by Reiner Prokein
After aligning active camera toggling between last view and camera worked wrong in such a way that the view previous to the one to which was aligned was rotated to. In some cases rotation to last view seemed incomplete and ortho was used. Thanks to M.G. Kishalmi (lmg) for showing through a Skype screen share.
This is now fixed by copying the current view info before active camera is aligned.
Thomas Dinges [Wed, 1 Sep 2010 21:11:33 +0000 (21:11 +0000)]
Renaming of Cylindric objects after a good proposal by Conz:
http://www.vrchannel.de/blender/cylinder_rename.png
Mesh Tube > Mesh Cylinder
NURBS Tube > NURBS Cylinder
Metaball Cylinder > Metaball Capsule
I know that naming is something not everyone agrees on, but these terms look geometrically correct.
Thomas Dinges [Wed, 1 Sep 2010 21:06:25 +0000 (21:06 +0000)]
Spell fix, reported by troy_s in IRC.
Ken Hughes [Wed, 1 Sep 2010 21:02:27 +0000 (21:02 +0000)]
Fix "no newline at end of file" warnings in *nix.
Joerg Mueller [Wed, 1 Sep 2010 20:33:26 +0000 (20:33 +0000)]
Audaspace: Removing an unneeded function.
Thomas Dinges [Wed, 1 Sep 2010 20:18:31 +0000 (20:18 +0000)]
Internal Code Renaming:
Donut > Torus
Guillermo S. Romero [Wed, 1 Sep 2010 19:39:37 +0000 (19:39 +0000)]
SVN maintenance.
Sergey Sharybin [Wed, 1 Sep 2010 17:03:31 +0000 (17:03 +0000)]
Send NC_SCENE|ND_TOOLSETTINGS notifier when select mode was forced to edge select
in loop cut operator. Header buttons have "delayed" update without this notifier.
Campbell Barton [Wed, 1 Sep 2010 15:25:22 +0000 (15:25 +0000)]
have rna function obj.as_pointer() return a memory address rather then a PyCapsule object.
this can be passed to ctypes.c_void_p(bpy.context.object.as_pointer())
Nathan Letwory [Wed, 1 Sep 2010 14:49:34 +0000 (14:49 +0000)]
Fix [#23612] OBJ import with imports double textures
Reported by Reiner Prokein
A .obj file can have multiple mtllib statements with the same name. Ensure that only one occurance is saved, so we don't get multiple entries from same material.
Also fix tabs -> spaces
Campbell Barton [Wed, 1 Sep 2010 14:13:48 +0000 (14:13 +0000)]
bugfix [#23285] Exporters not available whel using special characters in path name
- ID properties now suopport non utf-8 strings for their values but not their keys.
- moved utility functions into py_capi_utils.c from bpy_utils and bpy_rna.
- import/export paths have to be printed with repr() or %r, so non utf-8 chars are escaped.
Nathan Letwory [Wed, 1 Sep 2010 13:55:41 +0000 (13:55 +0000)]
* add missing imports
* fix indentation: tabs -> spaces
Matt Ebb [Wed, 1 Sep 2010 13:41:53 +0000 (13:41 +0000)]
Quicky - allow dragging an image on a 3d view background
to set it as the background image. Dragging on an object still
sets it to face-mapped texture.
Campbell Barton [Wed, 1 Sep 2010 12:11:34 +0000 (12:11 +0000)]
finished moving importers and exporters into python packages (as proposed on the mailing list).
- made operator dir's into python packages
- lazy loading of module which do the actual import and export (faster blender load times)
- general maintanance and small fixes.
- bugfix for exporting x3d materials
- leak fix for exporting 3ds
Campbell Barton [Wed, 1 Sep 2010 11:16:11 +0000 (11:16 +0000)]
poll function for py api operator access
eg:
if bpy.ops.object.mode_set.poll():
...
Janne Karhu [Wed, 1 Sep 2010 10:29:03 +0000 (10:29 +0000)]
Particle billboards weren't created properly
Janne Karhu [Wed, 1 Sep 2010 09:47:19 +0000 (09:47 +0000)]
Fix for [#23596] Particle Harmonics cache problem
* Non-dynamic particles weren't reset properly because they don't use pointcache
Benoit Bolsee [Wed, 1 Sep 2010 08:09:23 +0000 (08:09 +0000)]
Added missing ID_NEW() in set_sca_new_poins_ob() as pointed out by Dalai.
Nathan Letwory [Wed, 1 Sep 2010 06:51:20 +0000 (06:51 +0000)]
remove debug prints
Nathan Letwory [Wed, 1 Sep 2010 06:19:38 +0000 (06:19 +0000)]
Python library copying hack.
When creating project files the multi-configuration generator is used. CMAKE_BUILD_TYPE is then not set, so always release libs were copied.
For now copy both release and debug.
Nathan Letwory [Wed, 1 Sep 2010 05:39:26 +0000 (05:39 +0000)]
* Don't use /ZI when 64bit building on Windows. Use /Zi instead.
* Copy files to ${BLENDER_VERSION} instead of .blender/
* Don't try to copy iconv.dll when 64bit building on Windows - it is static for 64bit.
Campbell Barton [Wed, 1 Sep 2010 03:06:28 +0000 (03:06 +0000)]
excuse the noise, adding type's in format package names.
Campbell Barton [Wed, 1 Sep 2010 03:02:30 +0000 (03:02 +0000)]
moving import/export scripts into packages (just moving scripts, need to add __init__.py still, temp break import/exporters)
Campbell Barton [Wed, 1 Sep 2010 02:48:23 +0000 (02:48 +0000)]
cleanup duplicate GPL haeders, blender made 2.4x __bpydoc__ into __doc__, removed version info, (thats what svn logs are for).
also moved create_derived_objects & free_derived_objects into io_utils, used by x3d and 3ds.
Campbell Barton [Wed, 1 Sep 2010 02:25:49 +0000 (02:25 +0000)]
use mix-in classes for import export operators, these define the filepath property and invoke function at the moment.
Mitchell Stokes [Tue, 31 Aug 2010 23:55:41 +0000 (23:55 +0000)]
Adding intern/guardedalloc include dir for bad_level_call_stubs (stubs.c). This update is for cmake and scons.
This is needed since RNA_types.h now includes BLO_sys_types.h
Dalai Felinto [Tue, 31 Aug 2010 22:27:54 +0000 (22:27 +0000)]
Fix for "RNA_enum_get: ActionActuator.mode not found.". It was broken since recent rna renaming
Found while looking at another bug, unfortunately it's unrelated :)
Thomas Dinges [Tue, 31 Aug 2010 15:12:24 +0000 (15:12 +0000)]
RNA Renaming Fixes for particle UI.
Campbell Barton [Tue, 31 Aug 2010 14:56:14 +0000 (14:56 +0000)]
simple NULL check to fix a crash when running in background mode
Thomas Dinges [Tue, 31 Aug 2010 14:54:04 +0000 (14:54 +0000)]
Fixes for RNA Renaming in Texture Properties (Volume Material)
Campbell Barton [Tue, 31 Aug 2010 14:22:00 +0000 (14:22 +0000)]
patch [#23585] Fix for [#23553] in File Selector; Multiple Calls of Selector
from Alexander Kuznetsov (alexk)
bugfix for [#23553] F2 on filebrowser = bug?
from the tracker
--- snip
File Explorer redraws weirdly on second press of F2 if non-default view or file types were selected previously.
This patch prohibits second call of file selector in the same window.
The bug goes much deeper. If file selector is never closed properly (cancel or select), it never gets released. (at
least the handler). If you press F2 or Ctrl-F3 ten times and than "Back to Previous" and repeat all of this
several times Blender will freeze. Also after calling file selector at least two times, on cancellation Blender will
return to full area independently to what state it was before.
---
include small unrelated change to quiet unpack prints when fonts are not found.
Thomas Dinges [Tue, 31 Aug 2010 12:54:17 +0000 (12:54 +0000)]
2.5 Fluid UI:
* Required memory is now shown on the Bake Operator, rather as an extra label.
Campbell Barton [Tue, 31 Aug 2010 11:31:21 +0000 (11:31 +0000)]
rna support for passing dynamic sized arrays to rna functions
using this for object.vertex_groups.assign([index list ...], group, weight, mode)
Nathan Letwory [Tue, 31 Aug 2010 11:30:13 +0000 (11:30 +0000)]
Fix [#23592] WM draw method detection fails for Mesa's software rasterizer.
Reported and patched by Vinay Pawar.
The drawing method will be set to Overlap on detection of Mesa software rasterizer.
Luca Bonavita [Tue, 31 Aug 2010 02:41:33 +0000 (02:41 +0000)]
== userprefs: addons ==
- From now on addons bl_addon_info['name'] doesn't need to specifcy also the category, it is put automatically in the addon box title
In some script category and the category in the title were not matching, this had to be fixed manually.
- The warning icon is at the right of the addon box title, so that it cant disalign the addon name anymore when we have a warning.
- After discussing with Campbell, I've added the field bl_addon_info['api'] where we should specify the Blender API version number the addon is
compatible with.
This is certainly useful for clarity, and also I need it in place while preparing the downloadable addons.
- Also, bl_addon_info['version'] is now assumed to be a tuple of integers as it is bl_addon_info['blender'].
Any important text should be placed in the bl_addon_info['warning'] field, not in the script version anymore.
I'm going to reflect this change in bf-extensions so that scripts won't suddenly break.
Mitchell Stokes [Mon, 30 Aug 2010 20:35:24 +0000 (20:35 +0000)]
Updating stubs.c.
* WM_keyconfig_add -> WM_keyconfig_new
* WM_keyconfig_add_user -> WM_keyconfig_new_user
Guillermo S. Romero [Mon, 30 Aug 2010 19:51:12 +0000 (19:51 +0000)]
Fix spelling.
Campbell Barton [Mon, 30 Aug 2010 14:48:12 +0000 (14:48 +0000)]
another function moved, should be last of the simple cases.
km.item_from_id() --> km.items.from_id()
Campbell Barton [Mon, 30 Aug 2010 14:33:46 +0000 (14:33 +0000)]
missed this one too
scene.add_keying_set() --> scene.keying_sets.new()
also removed the use_ prefix since argument names, since this is mainly for properties.
Campbell Barton [Mon, 30 Aug 2010 13:50:59 +0000 (13:50 +0000)]
- keymap import/export works again (broke with own api changes)
- function renames, move WM functions into collections wm.add_keymap() --> wm.keymaps.new()
note: new is used for named items in a collection, which return the result.
- Action.get_frame_range() is now a readonly property 'frame_range', floats rather then ints.
Campbell Barton [Mon, 30 Aug 2010 12:27:34 +0000 (12:27 +0000)]
raise an error when setting the values of read-only rna wrapped Vector/Matrix/Euler/Quat
Campbell Barton [Mon, 30 Aug 2010 09:18:21 +0000 (09:18 +0000)]
fix for resolving rna paths, RNA_path_resolve could return a property which was the parent of the pointer (when it would normally be assumed to be the child).
also change pythons struct_rna.path_resolve to return StructRNA's or Properties when the property isnt NULL.
Campbell Barton [Mon, 30 Aug 2010 08:44:36 +0000 (08:44 +0000)]
bugfix [#23573] object rotates when IMAGE_SEARCH is off
Campbell Barton [Mon, 30 Aug 2010 08:37:35 +0000 (08:37 +0000)]
bugfix [#23586] Euler.rotate() method is broken
fix included in the report
Campbell Barton [Mon, 30 Aug 2010 08:28:48 +0000 (08:28 +0000)]
various utf8 compatibility fixes
- OBJ import/export now work with non utf8 paths. (all exporters and importers need changes like this)
- strip non utf8 chars from new ID blocks (also applies to renaming)
- set the file rename button to allow non-utf8 chars.
Campbell Barton [Mon, 30 Aug 2010 08:23:48 +0000 (08:23 +0000)]
bugfix [#23197] Python can't handle German umlaut characters in strings
workaround for python bug with Py_CompileString(), reported http://bugs.python.org/msg115202
Thomas Dinges [Mon, 30 Aug 2010 07:15:54 +0000 (07:15 +0000)]
Patch [#23524] UI cleanup for commit 31587 by Filiciss Muhgue (filiciss).
Thanks!
Mitchell Stokes [Mon, 30 Aug 2010 02:04:22 +0000 (02:04 +0000)]
stubs.c updates
Joshua Leung [Mon, 30 Aug 2010 01:57:50 +0000 (01:57 +0000)]
Bugfix #23551: FMODIFIERS: Steps "Use End Frame" doesn't enable
One old property name was missed during the renaming madness, so the 'active' poll always failed there.
Joshua Leung [Mon, 30 Aug 2010 01:07:45 +0000 (01:07 +0000)]
Bugfix #23575: Hook modifier don't update name of bone acting as the controller when the name of that bone is changed
Joshua Leung [Mon, 30 Aug 2010 00:49:23 +0000 (00:49 +0000)]
scons compiling fix:
When "svnversion" can't be found (as is usual for anyone running TortoiseSVN), build_revision info will be "", which breaks compiling. Worked around this for now by using "<UNKNOWN>" as this
Mitchell Stokes [Mon, 30 Aug 2010 00:18:50 +0000 (00:18 +0000)]
Committing patch [#23489] add method getEventStatus() to PythonKeyboard and PythonMouse by Geoff Gollmer (gomer)
This patch makes SCA_PythonKeyboard.events and SCA_PythonMouse.events return a dictionary of all inputs (including inactive) instead of a list of active inputs.
Example usage:
import bge
if bge.logic.keyboard.events[bge.events.SPACEBAR] = bge.logic.KX_INPUT_JUST_ACTIVATED:
print("Spacebar pressed!")
A couple of changes to the patch:
* Wrap python stuff in #ifndef DISABLE_PYTHON
* Clear and decref m_event_dict in the destructors
A couple of things not related to the patch:
* Made member variables private
* Removed a commented out (and no longer used) method (SCA_PythonMouse.show())
Nathan Letwory [Sun, 29 Aug 2010 21:53:12 +0000 (21:53 +0000)]
Remove unnecessary \''s. This cleans up also printouts in splash and bpy.app (no more unnecessary quotes).
Nathan Letwory [Sun, 29 Aug 2010 21:49:50 +0000 (21:49 +0000)]
Changing representation, so there's no space between the words.
Nathan Letwory [Sun, 29 Aug 2010 21:38:59 +0000 (21:38 +0000)]
Fix indentation errors
Nathan Letwory [Sun, 29 Aug 2010 20:52:05 +0000 (20:52 +0000)]
Finally change SConscript tabs to spaces.
Nathan Letwory [Sun, 29 Aug 2010 19:47:26 +0000 (19:47 +0000)]
Properly set build type: Release or Debug
Nathan Letwory [Sun, 29 Aug 2010 19:44:50 +0000 (19:44 +0000)]
Tell what platform and its bitness in BUILD_PLATFORM
Campbell Barton [Sun, 29 Aug 2010 15:53:37 +0000 (15:53 +0000)]
fix for the weight range for curve set weight operator
Campbell Barton [Sun, 29 Aug 2010 15:40:48 +0000 (15:40 +0000)]
added animation data update to the help menu as discussed in last meeting.
Matt Ebb [Sun, 29 Aug 2010 04:48:00 +0000 (04:48 +0000)]
Tweaks to ASC-CDL colour balance formula to exactly match the spec.
Benoit Bolsee [Sat, 28 Aug 2010 20:56:54 +0000 (20:56 +0000)]
BGE patch #22623 applied: new bound type: Capsule.
Thomas Dinges [Sat, 28 Aug 2010 15:04:42 +0000 (15:04 +0000)]
Timeline Notifier Listener:
* Added ND_FRAME_RANGE to the header listener, changing frame range in Properties Window didn't update it in the timeline, reported by Hardworker in IRC. Thanks!
* Main Area Listener doesn't listen to all NC_SCENE Notifiers now, only selected ND Notifiers, like the header does. This is more efficient. If there is a reason to let it listen to all NC_SCENE notifiers, please tell me. :)
Campbell Barton [Sat, 28 Aug 2010 12:34:22 +0000 (12:34 +0000)]
python/utf8 compatibility fixes. (as discussed on the mailing list)
- user input gets non utf8 chars stripped all text input other then file paths.
- python has the same limitations, it will raise an error on non utf8 strings except for paths use unicode escape literals so its possible to deal with saving to these file paths from python.
- new string functions
BLI_utf8_invalid_byte(str, len) returns the first invalid utf8 byte or -1 on on success.
BLI_utf8_invalid_strip(str, len) strips non utf-8 chars.