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
2012-08-02Clipboard feature for nodes. With the Copy operator a copy of all selected ↵Lukas Toenne
nodes and links between them is stored in an offscreen list (not in the library). The Paste operator then in turn copies these into the active node tree in the editor. Currently does not support copying of animation data. This would require copying of individual fcurves etc. between data block, which is not implemented yet. Also it is currently possible to circumvent some constraints of the nodes, in particular for node groups (e.g. no groups inside groups, render layer not inside groups).
2012-08-01make node select_all consistent with other select operators, also add ↵Campbell Barton
Ctrl+I, select inverse to node space.
2012-08-01Docs / Templates:Thomas Dinges
* Added a ui_panel template with more complex layouts.
2012-08-01misc mask fixesCampbell Barton
- image space used wrong notifiers. - image notifier now checks for mask mode before listening to mask edits. - mask keyframes now draw in the image space.
2012-07-31resolve glitch in the image space where mask editing and UVs would conflict.Campbell Barton
now UV editing overrides mask.
2012-07-30Minor code cleanupSergey Sharybin
2012-07-30Mango request: option to create nodes with hidden preview by defaultSergey Sharybin
2012-07-29code cleanup: assign mode to a variable in the 3d view header and remove ↵Campbell Barton
some unused imports
2012-07-29style cleanupCampbell Barton
2012-07-29User Interface Scripts:Thomas Dinges
* Code cleanup, removed unneeded code. * Style cleanup, don't break lines to early (unless marked as pep8-80 or pep8-120 compliant) * Keep 1 line after layout declaration empty.
2012-07-29fix for own regression with handling of script paths, however this didnt ↵Campbell Barton
work quite right before either. Handle these 2 kinds of script paths * user script path: ~/.blender/scripts OR $BLENDER_USER_SCRIPTS * pref script path: always bpy.context.user_preferences.filepaths.script_directory now both are returned by bpy.utils.script_paths()
2012-07-26mask/image editor now works for border select and lassoCampbell Barton
2012-07-25add mask buttons into the image spaceCampbell Barton
2012-07-25split out mask UI into their own classes.Campbell Barton
2012-07-25mask UI for space imageCampbell Barton
2012-07-25image space now has a mode for view/paint/mask editing.Campbell Barton
2012-07-24Fix #32165: context_set_value didn't make an undo push when changing scene ↵Sergey Sharybin
settings This lead to such issues as changing mesh selection mode wasn't doing undo push when it need to.
2012-07-23Grrr... Minkowski... :pBastien Montagne
2012-07-23Fix [#32163] vertex groups get wiped.Bastien Montagne
Usual "persistent" operator option... I guess there are still a few others that keep hiding in the dust! :)
2012-07-19poll function for edge loop delete.Campbell Barton
2012-07-18Some small fixes (grrr, python imports...).Bastien Montagne
2012-07-18Fix [#32135] FRAMERATE: Framerate display is truncated in selection box.Bastien Montagne
Filename extension was striped twice...
2012-07-15falloff option for mask layersCampbell Barton
2012-07-15use a different setting for fill/cyclic - you may want to have unfilled ↵Campbell Barton
cyclic curves.
2012-07-123D View / Edges menu:Thomas Dinges
* Removed a redundant "Edge Crease" entry and some code cleanup.
2012-07-12Clip editor mode selection: show menu with modes on TABSergey Sharybin
This seems to be the only straightforward way to switch fast between modes without keeping bunch of shortcuts and current mode in head.
2012-07-12Readme and Release Log Links:Thomas Dinges
* Update to 2.64
2012-07-11Minor interface change: space between vertex group specials menu and up/down ↵Sergey Sharybin
buttons
2012-07-11Operator to move mask layers up and down in the listSergey Sharybin
2012-07-09Small cleanup...Bastien Montagne
2012-07-09UI translation from inside Blender UI: first part.Bastien Montagne
This commit reshapes a bit runtime button info getter, by adding a new uiButGetStrInfo() which accepts a variable number of uiStringInfo parameters, and tries to fill them with the requested strings, for the given button (label, tip, context, RNA identifier, keymap, etc.). Currently used mostly by existing ui_tooltip_create(), and new UI_OT_edittranslation_init operator. It also adds a few getters (to get RNA i18n context, and current language iso code). Finally, it adds to C operators needed for the py ui_translation addon: *UI_OT_edittranslation_init, which gathers requested data and launch the py operator. *UI_OT_reloadtranslation, which forces a full reload of the whole UI translation (including rechecking the directory containing mo files). For the first operator to work, it also adds a new user preferences path: i18n_branches_directory, to point to the /branch part of a bf-translation checkout.
2012-07-08Grmbl, dummy argparse...Bastien Montagne
2012-07-08Some cleanup, and update to make those files usable both as self-executables ↵Bastien Montagne
and module stuff... Also updated update_mo to allwo specifying a custom po/mo file.
2012-07-08Some cleanup.Bastien Montagne
Also trying to make it usuable from other tools (imports become a bit tricky here :/ ).
2012-07-07Update/fixes (was escaping more chars than needed!)Bastien Montagne
2012-07-07Minor UI message update.Bastien Montagne
2012-07-05Fix for [#32016] Tracking Settings Presets not workingThomas Dinges
* Removed outdated properties from the presets. Note: it does not fail anymore, but needs an update for new settings probably.
2012-07-05style cleanupCampbell Barton
2012-07-04Minor update to make it work within i18n repo too.Bastien Montagne
2012-07-04Last spell checking (for now).Bastien Montagne
Only mysterious courant from bpy.types.ParticleSettings.courant_target reamins...
2012-07-04More spell checking.Bastien Montagne
2012-07-04Two pass execution:Jeroen Bakker
1. first pass only fast nodes are calculated and only to the active viewer node 2. second pass all nodes to all outputs Temp disabled highlights because of random crashes.
2012-07-04Highlight nodes that are being processedJeroen Bakker
2012-07-04fix error in node template and quiet warning.Campbell Barton
2012-07-03More spell and typo fixes (mostly visualise->visualize, grey->gray, ↵Bastien Montagne
normalise->normalize).
2012-07-03Minor updates.Bastien Montagne
2012-07-03First load of spell and typo fixes (mostly UI messages, but also one or two ↵Bastien Montagne
pieces of code using mis-spelled names).
2012-07-03Grmph! module renaming broke the tool!Bastien Montagne
2012-07-03More exception words to the ui dico... :/Bastien Montagne
2012-07-03Minor edits.Bastien Montagne