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
2010-07-13- saturation option for sequencer strips, runs before multiply and color ↵Campbell Barton
balance. - multiply of 0.0 wasnt being applied.
2010-07-13sequencer ui tweaks & display frame position of the playhead in a strip, ↵Campbell Barton
helpful for working out the exact frame of an avi <> exr
2010-07-12- presets were not being written with 'import bpy' at the start.Campbell Barton
- attribute save_keyconfig defaulted to True when unset, not sure why, but . - use repr() rather then str() so strings are quoted without manually checking. also converts less common chars properly \m \" etc.
2010-07-122.5: remove user preferences to always snap for translate/rotate/scale,Brecht Van Lommel
with new behavior of the snap setting in the 3d view these are no longer necessary.
2010-07-122.5: remove armature "B-Bone Rest" option, this was only added to keepBrecht Van Lommel
broken behavior for backwards compatibility, it's been there long enough now to be removed.
2010-07-122.5: rename "Operator Cheat Sheet (new textblock)" to "Operator Cheat Sheet",Brecht Van Lommel
this is already reported after running the operator.
2010-07-122.5: remove pin floating panels settings, there are no floating panelsBrecht Van Lommel
at the moment so it shouldn't be there.
2010-07-11Adding COMPAT_ENGINE stuff to the particle panels so that they no longer ↵Mitchell Stokes
show up when using the "Blender Game" render engine. Also, "Maximize Gain" on the sound actuator was incorrectly labeled "Minimize Gain", so I fixed it.
2010-07-10patch by manaphuun on IRC.Campbell Barton
2010-07-10Fix for [#22793] Flip normals Missingf form face specials....Thomas Dinges
2010-07-09== user preferences ==Luca Bonavita
- tooltips were showing numbers in the addons categories list
2010-07-08added imports to templatesCampbell Barton
2010-07-08import bpy needed for presets nowCampbell Barton
2010-07-08Sequencer display overlay option, this can show a border area from another ↵Campbell Barton
time to help compare for color grading. - Okey sets the border in the display. - Okey resets the frame offset in the sequencer timeline. - ghost icon in the header can enable/disable. - frame offset can be relative or absolute (lock icon) Not very happy that this commit adds a call to BKE_animsys_evaluate_animdata(scene, ...) in do_build_seq_array_recursively() without this the offset frames dont have fcurves applied. Though we will need something like this for prefetch frames to work too.
2010-07-08=== Windows installer ===Nathan Letwory
* cleanup link section for Start Menu
2010-07-07remove unused files.Nathan Letwory
2010-07-07=== Windows Installer ===Nathan Letwory
* have nice image also in uninstaller * ensure we can remove start menu links
2010-07-06Bring back "Sort Faces" command.Diego Borghetti
This was the old Ctrl + FKEY in object mode, now it's in edit mode and is part of the Ctrl + FKEY menu (Faces). I also assing this to the Ctrl + Alt + FKEY, but Matt please check this and feel free to change (or tell me and I will change). Still there is no "reverse" function, but I commit now to finish in my home.
2010-07-06=== Windows Installer ===Nathan Letwory
Make sure for win64 version of Blender that we set default install dir to $PROGRAMFILES64 and keep win32 version to $PROGRAMFILES32. Reported on Graphicall.org by Robroy
2010-07-06=== Windows Installer ===Nathan Letwory
* add info about bitness: 32bit, 64bit or mingw-build
2010-07-06Waste less memory ;)Nathan Letwory
2010-07-06=== Windows Installer ===Nathan Letwory
* Proper deletion of install dir - everything under it will be gone * Ask if config/userdata can be removed and act accordingly. If selected, everything under user/config dir (BLENDERHOME) will be gone. * The installer now will automatically update vc runtime To be able to properly create an installer, you need: - NSIS, and the MoreInfo plugin for NSIS. Make sure NSIS is in your path - Set in your user-config.py BF_VCREDIST full path to the redist you have. Note: this works only with SCons.
2010-07-06committed one file too manyNathan Letwory
2010-07-06pedantic pep8 warnings, mostly white space.Campbell Barton
2010-07-05* use blender_decimal_version() in places where '.blender/' was still being usedNathan Letwory
* simplify the NSIS file creation (and add those files back). NOTE: The installer is still pretty much WIP, tomorrow more improvements.
2010-07-05option for color wheel widget to make it easier to select values closer to ↵Campbell Barton
white, enable for color balance.
2010-07-05texture saturation option.Campbell Barton
we'll need a do-version bump soon or this will convert 0.0 saturation to 1.0 on load.
2010-07-05Improvements to Blenders color balance (lift/gamma/gain).Campbell Barton
Fairly closely match some mac application colin has called 'Looks', to give better results. - lift is now applied non linear (was being added to the color) - change the color wheel to preserve the luminance of the gamma and gain values, this stops the color from being set too dark (option for the color wheel template). - sub-pixel precission for the color wheel since the white area at the center can make a lot of difference with a very small change. This change will make existing node and sequencer setups lift render slighly differently however discussed this with Ton and he's ok with it.
2010-07-04Patch [#22339] File/installation paths changesAndrea Weikert
Patch Tracker: http://projects.blender.org/tracker/?func=detail&aid=22339&group_id=9&atid=127 This patch implements the proposal outlined here: http://wiki.blender.org/index.php/Dev:2.5/Source/Installation/Proposal Original patch by Matt Ebb. Contributions by Nathan Letwory, Damien Plisson and Andrea Weikert NOTE: This is a work in progress commit, some work still needs to be done on the SCons and CMake files for this to work properly, but at least should compile and the files should be created in the right directory. Commit discussed on IRC with Ton and Campbell.
2010-07-04convenience functionality for browse button (requested by Colin for the ↵Campbell Barton
sequence editor, useful for managing files for the final edit) - Holding Alt while clocking on the browse button opens a file browser with the containing dir. - Holding Shift opens the file its self in the default application. obscure but at least theres a tooltip so its not totally hidden.
2010-07-04Fix for [#22714] Constraints stack : move up and move down buttons problemThomas Dinges
* Constraint template now uses 2 rows as well, when the area width is small. * UI Code could use some code/layout cleanup still, will look into that soon.
2010-07-04- draw sequence strips within metastrips using their real start/end and ↵Campbell Barton
channel positions. - dont show color balance unless its enabled.
2010-07-04sequencer re-assign inputs backCampbell Barton
2010-07-03rna api:Campbell Barton
rename object.matrix --> matrix_world added object.matrix_local (parent relative matrix)
2010-07-01enable external pointcache for smoke in the UI.Campbell Barton
2010-06-30Fix for [#22667] Soft Body Aero on/off switch Matt Ebb
Under guidance from Jens, converted the 'aero' property into a two-way switch, which is what it actually represents.
2010-06-30ui glitch fix [#22667] Jens Ole Wund
2010-06-29Added name to object color in object properties. Kinda misleadingDaniel Salazar
without it
2010-06-28nicer alignment for preset UICampbell Barton
2010-06-27use expanded enum for addons to give faster access (matches theme layout)Campbell Barton
2010-06-27remove filename and directory from python operators that dont need themCampbell Barton
2010-06-27more generic sorting of theme items by type (was adding all non color items ↵Campbell Barton
last)
2010-06-27Set button emboss to false a few more places where it makes sense, such as ↵William Reynish
disclosure triangles and panel closing X icons.
2010-06-27- changed recent commit from William to have enum in user preferences as an ↵Campbell Barton
expanded enum (like it was before) - rename 'no_bg' argument to 'emboss' (and negated) - added 'emboss' option for operator buttons. - Addon UI Layout slight modifications, changed enable/disable buttons for checkbox, grey out text of disabled addons to make it obvious at a glance whats enabled. - column expanded enums now align text to the left. - renamed ui_item_enum_row to ui_item_enum_expand since its used for columns and rows.
2010-06-26Patch by Oenvoyage: Lamp specials menu was context insensitive,Daniel Salazar
displaying lamp properties regardless of type hence causing errors. Now active object controls what properties to display. Still it's possible to manage multiple mixed lamps types at once. Also added useful items for cameras and empties
2010-06-26object color property in the object UI panelCampbell Barton
2010-06-26minor changes to Williams commit to be a bit less verbose.Campbell Barton
2010-06-26Updated Themes user preference pane. William Reynish
Layout is now simpler, more easy to scan. This commit also simplifies the Python code and gets rid of hundreds of wasted lines of code, making it much easier to make layout changes.
2010-06-23Added back full scene motion blur 'shutter' parameter (was 'Bf' in 2.49)Matt Ebb
2010-06-23Small update to text boxes UI. It now works in single-column layout.William Reynish