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
2009-09-26Assorted tiny UI tweaksWilliam Reynish
2009-09-26netrender: fix some bugs with job cancellation, remove credits system, add ↵Martin Poirier
more status report on server, cleanup server error management
2009-09-26Add directives to support multi dir lib.Guillermo S. Romero
2009-09-25Fixing up Makefiles, its not fully working but its closer...Kent Mein
Kent
2009-09-25almost all event managers stored a pointer back to the logic manager, easier ↵Campbell Barton
if this pointer is in the base class - SCA_EventManager
2009-09-25removed double library entries without realizing I had the BGE disabled, ↵Campbell Barton
these are needed.
2009-09-25WITH_CXX_GUARDEDALLOC was broken since BL_ArmatureObject become a PyObjectCampbell Barton
2009-09-25fix for buildinfo on mac'sCampbell Barton
2009-09-25Graph Editor: F-Modifiers can now be added to multiple selected F-Curves at ↵Joshua Leung
once with the Ctrl-Shift-M hotkey. * All the selected F-Curves will get the same type of F-Modifier added. * The button in the properties region will still only added the F-Modifier to the active F-Curve though * For now, there must be an active F-Curve in either case, otherwise the poll() callback fails.
2009-09-25Graph Editor: Drawing + Selection TweaksJoshua Leung
* Deselect all now selects/deselects F-Curves too * Tangents of unselected F-Curves now draw 'faded' like the curves they belong to. This experimental change is quite subtle, but can be made stronger still if people want. * Cleaned up some old comments in the code too...
2009-09-25modal kaymaps for view3d rotate/move/zoom removed redundant 'view' prefix ↵Campbell Barton
from these operators.
2009-09-25Warning fixes for ITASC. Also, use <stdlib.h> instead of <malloc.h>,Brecht Van Lommel
it works everywhere.
2009-09-25Fix OSX compilation problem with malloc.h in itascBenoit Bolsee
2009-09-25- use pythons time module rather then bpy.sys.time()Campbell Barton
- comment poll functions, maybe could check for editable scene later - importing OBJs imports triangle meshes.
2009-09-25Drivers: Copy/Paste tools for the RMB MenuJoshua Leung
Drivers can now be copied/pasted for single properties, allowing drivers set up on one property to be added to a few other properties relatively easily. Also, added description strings for the other driver-button operators.
2009-09-25still doesn't work but this fixes make cleanCampbell Barton
2009-09-25options WITH_LZO and WITH_LZMA for cmake and scons (default to true) ↵Campbell Barton
pointcache.c also needed to have checks for these defines.
2009-09-25Shell script exit values should be non-negative.Guillermo S. Romero
Exact error with dash as sh "exit: 12: Illegal number: -1". The rest are just changes to whitespace and polishing.
2009-09-25needed for linking with cmake on unixCampbell Barton
2009-09-25Quick tweaks to commonly debated mesh-editing hotkeys:Joshua Leung
* Loopcut is now just Ctrl-R. The preview will be activated when you do this, and you can just click to confirm as in 2.4x and also like when this was activated from the toolshelf. This is less error prone than having to click at the same time as picking the loop as with the previous hotkey. * Knife is now just: hold k-key and lmb click+drag to draw a cut line and cut the mesh. This is more direct than the (rather arcane) Ctrl-X-LMB-drag, and is quite similar to what's done for Grease Pencil now.
2009-09-25Bugfixes:Joshua Leung
* #19459: Shape Keys not Animateable Shape Keys were missing the appropriate 'path' callbacks. * #19458: 3D Viewport doesn't refresh when adding new bone in editmode (using Shift-A) The 'wrong' notifier was being sent. Currently, Armature EditMode only responds to NC_OBJECT|ND_TRANSFORM, which isn't strictly that correct for all cases. * Alignment code for constraints headers (i.e. enable/disable lumped with the delete constraint button) was causing the delete button to not work anymore. Removed the offending code (it shouldn't have been there to start off with). * When object's don't have their own AnimData (i.e. if you only animate the values of some shapekeys), a space is no longer left beside the object's name for a visibility toggle in the Graph Editor.
2009-09-25missing includesCampbell Barton
2009-09-25SVN maintenance.Guillermo S. Romero
2009-09-25* some fixes to have scons/mingw compile the sources too, even with ↵Nathan Letwory
BF_DEBUG=1 and WITH_BF_GAMEENGINE=1
2009-09-25Merge of itasc branch. Project files, scons and cmake should be working. ↵Benoit Bolsee
Makefile updated but not tested. Comes with Eigen2 2.0.6 C++ matrix library.
2009-09-25netrender: usage based balancer. more useful than creditsMartin Poirier
2009-09-25* explicit cast needed for mingw.Nathan Letwory
2009-09-24netrender: draft code for cluster usage per job calculations. Eventually, ↵Martin Poirier
this will be used for load balancing
2009-09-24* fix snprintf error with mingwNathan Letwory
* move header guards to the right place.
2009-09-24fixed some indentation, and removedKent Mein
declaration of index in a couple of places because it was already defined and safe to use the old def. Kent
2009-09-24add buildinfo to cmake (no win32 support)Campbell Barton
2009-09-24imagewrap was using uninitialized vars from do_material_texCampbell Barton
found while looking into a different bug.
2009-09-24Fix for panorama backwards compatibility not working correct.Brecht Van Lommel
2009-09-24mingw - silencing the warnings about '#pragma' warnings being unrecognised ↵Joshua Leung
or being ignored. This should still work fine for msvc, and other platforms though.
2009-09-24fix for [#19437] Console (Python): first run doesn't have the ">>>"Campbell Barton
2009-09-24Fix #19446: merge operator needs to be undone twice, interfaceBrecht Van Lommel
was still doing undo pushes in cases it was not needed.
2009-09-243rd attempt to fix ssize_t problem in MSVC and mingwBenoit Bolsee
2009-09-24fix for middle mouse up events not working with modal keymaps (used for fly ↵Campbell Barton
mode). With mouse events event->val started as 0/1 for press/release but later the tweak function made LMB and RMB zero value into KM_RELEASE, somehow MMB didnt get used by the tweak function so was left at 0 and the modal keymap function failed when comparing MMB Mouse ups. now initialize event->val as KM_PRESS/KM_RELEASE
2009-09-24Fix more problem with mingw this timeBenoit Bolsee
2009-09-24Fix compilation problem in Windows and update project filesBenoit Bolsee
2009-09-24- cmake/make/scons didnt define INTERNATIONAL when buidling blenfontCampbell Barton
- BLF_lang_init used confusing IFDEF's, unlikely this was well tested. Split this into 3 functions for Apple/Win32/Unix, Unix uses BLI_gethome_folder(), cant test others, ideally they should use BLI_gethome_folder too but needs testing. Possibly each os cant be made to use BLI_gethome_folder and the separate func's can be removed (please test). - units, hectometers were displayed wrong.
2009-09-24Use Shift+F for fly-mode (like 2.4x) rather then Any+FCampbell Barton
2009-09-24brush curve - use clamped values (0-1) for everything except sculpt which ↵Campbell Barton
can have positive and negative values.
2009-09-24netrender: load balancer fixes, cancel all jobs button and small html ↵Martin Poirier
interface changes
2009-09-24Initial sketch of file access wrappers.Guillermo S. Romero
It compiles but does nothing useful yet. The "//" comments are notes to remember what to do in each block.
2009-09-232 Anim Bugfixes:Joshua Leung
* Loading old (2.4x) files with keyframes now inits them properly so that keyframes are tagged as normal keyframes not breakdowns * TrackTo consraint was flagged wrongly for adding it with a target. This meant that the target didn't get set when using the Ctrl-Shift-C hotkey.
2009-09-23* fixes for compiling with scons/mingw when BF_DEBUG=1. Needs svn up in ↵Nathan Letwory
lib/windows, where I added necessary mingw libs.
2009-09-23Some UI tweaks as listed by William Joshua Leung
(http://wiki.blender.org/index.php/BlenderDev/Blender2.5/Todo/UserInterface) * Removed panel docking. "It is too easy to do by accident when reordering panels, is very hard to control and use, and has no real benefit." * Scoll bars have minimum size now, so that the 'thumb' doesn't disappear in long lists.
2009-09-23fly mode back as a modal operator view3d.flyCampbell Barton
- access with the F key, Ctrl+Alt+F in editmode, View->Navigation menu - camera, perspective & 4split (perspective view only) - uses modal keymap, (same as 2.4x). - bugfix since 2.4x, when flying upside down, turning left/right was inverted. - bugfix for "Align Camera To View", was using deprecated v3d->ofs rather then rv3d->ofs, fixed for NDof fly too. checked v3d->ofs is only used in readfile.c Todo - Warping the cursor removed in 2.5, no way to place the cursor in the middle of the view. - Adding keyframes while in flymode to record the path is missing. - Not getting MMB mouse release events (used for pan). need to look into why.
2009-09-23A few quick bugfixes:Joshua Leung
* Vertex Groups list now has a more normal length (2 rows by default) * Copy vertex groups button now has an icon * Pose Sliding tools now allow events which it doesn't process to pass through (i.e. zooming the view now works, and also moving around using the numpad works too)