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-11Fix for crash when using undo during sketching session.Sergey Sharybin
Currently, grease pencil conflicts with such operators as undo and set object mode which makes behavior totally unpredictable and crash for some cases. The only way to solve this proper is to ger rid of pointers to data which can chage stored in operator custom data.
2011-08-11Fix #28180: crash running wm.keyconfigs.user.keymaps.new("My Keymap").Brecht Van Lommel
There isn't much point in doing this at the moment, but shouldn't crash.
2011-08-11Adding a readonly length_squared property to mathutils.Vector. This is ↵Mitchell Stokes
simply vector.dot(vector), so nothing new is really added, but it's nice for writing more intent revealing code. In other words: if vec.dot(vec) > some_distance*some_distance: do_something() might not be quite as obvious looking as: if vec.length_squared > some_distance*some_distance: do_something() As to why you'd want to use length_squared over length is that length uses a square root, which isn't always necessary for simple distance checks (e.g., closest object, checks like the ones above, ect).
2011-08-11fix [#28213] Imperial unit for 0.001 inches inconsistently displayed as mils ↵Campbell Barton
and thous
2011-08-11SVN maintenance.Guillermo S. Romero
2011-08-11use ghash for operator and menu types, was doing string lookup in the ↵Campbell Barton
operator list (containing over 1000 items) for each button draw. gives small speedup for UI drawing and overall startup time.
2011-08-11ifdef'd outliner code which is spesific to gsoc pepper with '// GSOC_PEPPER' ↵Campbell Barton
so its obvious. this will keep merging pepper changes from conflicting and can be removed when its finally merged.
2011-08-11merge outliner refactor so we dont have to keep outliner.c locked in trunk.Campbell Barton
this wont build because of changes spesific to pepper, fix coming next. svn merge source/blender/editors/space_outliner -r36830:38987 https://svn.blender.org/svnroot/bf-blender/branches/soc-2011-pepper/source/blender/editors/space_outliner
2011-08-11unlocking outliner.c and removing... (merging refactor from pepper but looks ↵Campbell Barton
like this will take a few steps)
2011-08-11fix for regression for shape key UI, values are now editable again in the ↵Campbell Barton
list, double checked this works for mesh/curve and lattice types.
2011-08-10error in own recent commit. set subversion to 0Campbell Barton
2011-08-102.59 Splash screen by tomket7. Congratulations! Thomas Dinges
Chosen by the jury Ben Simonds, Reynante Martinez and Hjalti Hjálmarsson.
2011-08-10Version bump for 2.59Campbell Barton
2011-08-10fix [#28206] Motion Paths shown in 3DView even when Only Render option is ↵Campbell Barton
enabled
2011-08-10fix [#28203] Misplaced string in bone constraintsCampbell Barton
2011-08-10Fix [#28195] Particles objects disappear in viewport, and 90° rotationNathan Letwory
Reported by Jean Francois Sarazin Lack of normal normalisation caused scaling issues. SIGGRAPH fix by jahka and jesterKing. Thanks to host dfelinto with entertainment provided by slikdigit.
2011-08-10fix for [#28201] blender crashes when "mpeg" selectedCampbell Barton
2 changes - When writing OGG only allow Theora encoding, this fixes the crash. - When setting the MPEG preset, dont allow the 'Codec' to be left as Theora, this is just confusing. * note that this is highly confusing for users and devs - there are 4 places to set the codec/format, with both python and C presets :S.
2011-08-10fix for crash undoing grease pencil session, last action would free entire ↵Campbell Barton
frame which the session held a reference to.
2011-08-10fix [#28197] Undoing Grease pencil removes last 2 strokesCampbell Barton
2011-08-10fix [#28196] Unwrap tris in lightmap packCampbell Barton
2011-08-09fix [#28186] textboxes properties not animatableCampbell Barton
2011-08-09Blender 2.59:Thomas Dinges
* Update the readme file * Update link to release logs, they point to http://www.blender.org/development/release-logs/blender-259/ now
2011-08-08fix [#28183] Wavefront OBJ import has no preset savingCampbell Barton
2011-08-08quiet harmless py resource warning - file opened but not closed.Campbell Barton
2011-08-08fix [#28178] make single user copy of object data doesn't workCampbell Barton
2011-08-08add missing header to cmake files (else some IDE's wont index it)Campbell Barton
2011-08-07fixed typoMike Erwin
2011-08-07simplify x11 path code, had unneeded NULL checks and std namespaceCampbell Barton
2011-08-07ndof data change: operators can access values as vectors or components, as ↵Mike Erwin
both are handy
2011-08-07removed old ndof transform code, to be replaced with modern stuff in 2.6Mike Erwin
2011-08-07Changed do_version condition for noodle_curving.Sergey Sharybin
It should be re-set to 5 for files saved in 2.58.1 release.
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-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-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-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