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-10Fix for incorrect parameter amount.Nathan Letwory
2011-08-10fix for error in templateCampbell Barton
2011-08-09style change, harmless changes while looking into bug [#28196]Campbell Barton
2011-08-09fix [#28186] textboxes properties not animatableCampbell Barton
2011-08-09fix [#28191] Exception when enabling a script for a newer Blender buildCampbell 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-08report error on installign keymaps rather then raising an exception.Campbell Barton
2011-08-08quiet harmless py resource warning - file opened but not closed.Campbell Barton
2011-08-08use static sets rather then tuples, python optimizes this case.Campbell Barton
minor change to lightmap unpack collecting unique meshes.
2011-08-08- update X3D and FBX testing checksumsCampbell Barton
- building with GHOST/SDL now adds the PREFIX - image.external_edit operator errors out if the filepath isnt set (was annoying and loaded gimp while running tests)
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-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-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-05get a tad more vertical space in the toolbar.Campbell Barton
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-03fix [#28151] export OBJ don't save the extensionCampbell Barton
also correct some typos
2011-08-02Patch by oenvoyage - olivier amrein, thanks a lot!Thomas Dinges
* Material Diffuse Ramp was not greyed out when shadeless was enabled.
2011-08-02fix for xvid encoding preset giving a python errorCampbell Barton
2011-08-02Fixed a few small typos.Kent Mein
Kent
2011-08-02fix [#28148] User Preferences Scripts Path not workingCampbell Barton
2011-08-02Made wmNDOFMotionData use a vector rather then xyz members, makes it nicer ↵Campbell Barton
to use with math functions. ndof_to_angle_axis and ndof_to_quat now use math functions.
2011-08-02svn merge -r38814:38905 ↵merwin-spacenavMike Erwin
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-08-01fix for templateCampbell Barton
2011-07-31fix for error in recent commit.Campbell Barton
2011-07-31py api: sphinx doc corrections, pep8 cleanup and style edits, also added ↵Campbell Barton
__all__ to some modules which were missing it.
2011-07-31EditMesh-based skin node drawingNicholas Bishop
2011-07-31Added stub for Skin modifier UINicholas Bishop
2011-07-29svn merge -r38753:38813 ↵Nathan Letwory
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-07-29pep8 cleanup, also print message when attempting to run in animation player ↵Campbell Barton
mode.
2011-07-28* Code cleanupThomas Dinges
A row with alignment for 1 property = useless: ;-)
2011-07-28New option for multires modifier: Subdivide UVsSergey Sharybin
Enabled by default and also enabled for older filesm so there should be no regressions. In some cases it's useful to not use subdivided uvs for multires.
2011-07-28fix [#28095] Select Pattern don't select all the bone in edit modeCampbell Barton
& some style changes.
2011-07-28fix error in writing dupligroups for X3D export, may have effected other ↵Campbell Barton
exporters too.
2011-07-28report an error when user blender versions other then 2.4x for animation ↵Campbell Barton
playback.
2011-07-27svn merge -r38558:38752 ↵Nathan Letwory
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-07-27fix [#28066] Unchecking 'self project' messes up 'Snap to Vertex'Campbell Barton
this option is useful for all non-grid snapping modes (when in editmode) so make available in those cases too.
2011-07-27Fix part of [#28088] bad button spacing with layout engine for menu items.Thomas Dinges
* Fixed a cut off text. * small cleanup
2011-07-26set the development cycle to 'beta'.Campbell Barton
2011-07-26py api:Campbell Barton
- added menu templates - move template menu into the header of the text editor (so users will find more easily) - updated mathutils examples, switching the order of multiplication.
2011-07-25more vector order switching.Campbell Barton
2011-07-25minor edits to animation playback operatorCampbell Barton
- remove own copyright from script - print command before executing (helps troubleshooting)
2011-07-25style changes for operator scripts & some pep8 edits.Campbell Barton
2011-07-25fix for DingTo's recent commit with the animation player, it ignored the ↵Campbell Barton
case where the player is not an absolute path but found in the users $PATH (as is common on *nix systems). now try and execute player, reporting the exception rather then checking the player file exists. also made some pep8-80 style edits.
2011-07-25swap vertor multiplication order for add torus.Campbell Barton
2011-07-25edits to quick effects scriptsCampbell Barton
- use uv layer data api rather then operator. - switch vector rotation order. - made some style changes, use 80 width.
2011-07-25External image operators.Campbell Barton
- use bpy.data.is_saved (was using a workaround from when before this attribute was added) - fixed a bug where editing relative paths could fail.
2011-07-25fix [#28075] After the correction of No.38528 is applied, the following ↵Campbell Barton
phenomenon has been generated. own fault in recent addition of bpy.path.basename() not supporting byte paths.
2011-07-25reverse vector multiplication order for some internal functions.Campbell Barton
2011-07-25deprecate multiplication orders:Campbell Barton
vector * matrix vector *= matrix vector * quaternion vector *= quaternion Use the reverse order instead, enable WITH_ASSERT_ABORT in cmake to promote the warnings into errors.
2011-07-25updated ndof popup menu (part 2 of 2)Mike Erwin