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-04-252.5 Interface:Thomas Dinges
* Implemented a new operator "WM_OT_properties_context_change" to switch to a different tab inside the properties window. * This is used now inside the Modifier tab for Simulation Modifiers. Based on a mockup by Janne Karhu: http://www.pasteall.org/pic/11261 http://www.pasteall.org/pic/11262 Rather than having a delete button there anymore, the button changes the context to Physics/Particles, where you can edit the settings and delete the actual simulation.
2011-04-25fix [#27140] Negative Subdiv level in the operator panel.Campbell Barton
when relative option is disabled, don't allow setting the subdiv value to a negative number.
2011-04-252.5 UI scripts:Thomas Dinges
* Small cleanup of code and descriptions.
2011-04-22zoom operator.Campbell Barton
- continue zoom now uses the same options as dolly (hoz/vert & invert). - remove event mouse coord hack to bypass touchpad zoom invert, instead pass invert as an argument.
2011-04-21converted more mixed tab/space indentations to tabs. only whitespace changes.Campbell Barton
2011-04-21whitespace only, no functional change mixed tabs/spaces --> tabs.v2.57aCampbell Barton
2011-04-21patch [#27094] Fix for property names in sunsky presetsCampbell Barton
from Ejner Fergo (ejnersan)
2011-04-21re-compress png's (save some space)Campbell Barton
optipng -o7 -zw 512 -zm 9 -i0 *.png
2011-04-21cmake - install icons into $PREFIX/share/icons/hicolor/ rather then ↵Campbell Barton
$PREFIX/share/pixmaps/, also move blender icon into 'apps' dir.
2011-04-21patch from Jakub Steiner for freedesktop icons [#27086] install a high ↵Campbell Barton
resolution launcher icon
2011-04-21Bugfix [#27090] Available keying set fails in armature pose modeJoshua Leung
A change in the poll callback that Available KeyingSet used to use restricted its use to Object-mode only, while this could also be useful in Pose Mode (though it would only affect all channels there). Made this use a custom poll callback now that tests for whether the active object has an action. This does mean that if you select a bunch of objects with animation data, but the active object doesn't have it, then the keyingset will fail to fire, but that's been marked as a todo in the code.
2011-04-20Bug fix: "make fur" gave errors with multiple selected objects.Janne Karhu
* Also some code changes for "make smoke" and "make fluid" to suppress some python messages that were printed to the console.
2011-04-20update tooltip since this fixes paths from newer versions.Campbell Barton
2011-04-19Bugfix 26936Ton Roosendaal
EditMode mesh: tool "Mesh Rip Move" shouldnt be in the toolbar. The tool was coded to use the mouse position next to the selection. The rip then happens correctly after pressing V and move mouse away from selection.
2011-04-15fix [#26906] Panorama Button (Camera Data Properties)Campbell Barton
- render check for ortho/panorama combination wasn't working since the flags were not initialized at the time of checking. - disable panorama button in ortho mode.
2011-04-14fix for help menu docs linking to the wrong page, created a redirect so 2.57 ↵Campbell Barton
release doesn't get 404's.
2011-04-14api to support different kinds of relative paths on export, including ↵Campbell Barton
copying the files to a subdir.
2011-04-13Remove unnecessary lines.v2.57Nathan Letwory
2011-04-13Fixed a copy and paste error in "Copy Previous Settings" operator. ;-)Thomas Dinges
2011-04-12The Epic Blender 2.57 first stable commit! :)Ton Roosendaal
Let's do a quick last check if things work, call for release will be done shortly on bf-committers. Thanks everyone for making it possible!
2011-04-12add randomize transform & object align back into the menu.Campbell Barton
2011-04-12less alarming warnings about the python api not being stable in online docs ↵Campbell Barton
and remove from interactive console.
2011-04-12small patch from Dobz to clean up non-functional multiuser code for now, and ↵Nathan Letwory
ensure admin level is requested on starting.
2011-04-12change behavior of restoring old settingsCampbell Barton
- only attempt to restore old 'user' settings (not local), since bundled blender's always use their own settings. - only automatically run 'bpy.ops.wm.read_homefile()' after copying files if the user hasnt alreadt started making changes in the blend file.
2011-04-11py api: bpy.data.is_dirty wasn't working like image is dirty, instead is ↵Campbell Barton
would return if the file was saved or not. - rename to 'is_saved' (and negated). - add 'is_dirty' which is true when the files edits are not saved to disk.
2011-04-11operator & splash button to copy over old settings when blender version changes.Campbell Barton
2011-04-11api changes needed for for copying old settings to new.Campbell Barton
- py: bpy.utils.resource_path('USER', 2, 56) - C: BLI_get_folder_version(id, major, minor, check);
2011-04-11fix for one of the [#26854] UV issuesCampbell Barton
- add back UV X/Y number buttons, the report points out they are missing. - set the 2D cursor's subtype to PROP_COORDS (so buttons say x/y now)
2011-04-10- background job style cleanup.Campbell Barton
- assert if material assignment is called with lib. (so the callers can be corrected). - correct example docs
2011-04-10minor pep8 edits, also added 'test_pep8' & 'test_cmake' to the GNUmakefile ↵Campbell Barton
for convenience.
2011-04-10Labelling fixMatt Ebb
2011-04-08Fixes related to using Library files:Ton Roosendaal
- Assigning local materials to library objects disabled (crashes on undo/redo cases) - Disabling options in Material buttons to add/remove slots on library data - Drawing Object ID template in Object properties, this allows browse active Object, but especially shows library status then.
2011-04-08fix [#26674] Inconsistency in snapping CursorToSelection between UV_Editor ↵Campbell Barton
and 3d_View.
2011-04-06Name unification commit for console toggling operator.Sergey Sharybin
Requested by Dalai, approved by Campbell. Other requested from Dalai changes were rejected by our Python Departament.
2011-04-06dfelinto noticed text editor section was missing.Campbell Barton
2011-04-05minor edits to keyingsets script.Campbell Barton
2011-04-05"Bugfix" (i.e. feature request in disguise!) [#26772] Delta Scaling,Joshua Leung
Rotation and Location don't have Keying Sets Added Keying Sets for Delta Loc/Rot/Scale settings (aka dLoc/dRot). These settings could already be found in the Object properties, under the collapsed "Delta Transforms" panel. I've added these to the end of the Keying Sets list, since adding any earlier will end up breaking active Keying Set setting in older files. Besides, these settings aren't that frequently used either...
2011-04-05Bugfix [#26792] blender crash when scaling action strip in NLAJoshua Leung
Two part bug: Part 1) NLA Editor menu was calling wrong operator Part 2) r35829 broke NLA scaling, since it only checked that the transform mode used was allowed in the Action Editor (probably confused by Part 1)
2011-04-05add support for installing addons to custom script path [#26751] installing ↵Campbell Barton
addon to custom script directory doesn't work
2011-04-05comment menu item causing crash [#26792].Campbell Barton
2011-04-05fix [#26782] Missing settings in some texture nodes.Campbell Barton
also rename noisebasis_2 --> noise_basis_2
2011-04-05quiet warning & minor pep8 edits.Campbell Barton
2011-04-04Bug fix: The quick effect operators got broken a bit by the new material ↵Janne Karhu
slot behavior. * The operators now add new materials and assign them to the created material slots explicitly.
2011-04-04fix [#26754] Live Edit and Editing UI scripts don't workCampbell Barton
2011-04-04minor edits to view3d toolbarCampbell Barton
2011-04-04fix [#26757] Python console: help() doesn't work anymoreCampbell Barton
also quiet some warnings & add docstrings to bpy module which was shaowing the GPL header in its help() message.
2011-04-04missed renaming after api modification, used to cycle proportional edit ↵Campbell Barton
falloffs with Shift+O.
2011-04-02Readme.html and Link to Release Log:Thomas Dinges
* Ready for release! Note: JesterKing: Release notes now point to http://www.blender.org/development/release-logs/blender-257/ Would be cool, if we can use that one.
2011-04-02[#26719] Fix AAO Tooltips by Sergej Reich (sergof). Thanks! Thomas Dinges
2011-04-022.5 Particle UI:Thomas Dinges
* Missing colon and not worth a commit message ;-)