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-28== Sequencer ==Peter Schlaile
This patch adds: * support for proxy building again (missing feature from Blender 2.49) additionally to the way, Blender 2.49 worked, you can select several strips at once and make Blender build proxies in the background (using the job system) Also a new thing: movie proxies are now build into AVI files, and the proxy system is moved into ImBuf-library, so that other parts of blender can also benefit from it. * Timecode support: to fix seeking issues with files, that have a) varying frame rates b) very large GOP lengths c) are broken inbetween d) use different time code tracks the proxy builder can now also build timecode indices, which are used (optionally) for seeking. For the first time, it is possible, to do frame exact seeking on all file types. * Support for different video-streams in one video file (can be selected in sequencer, other parts of blender can also use it, but UI has to be added accordingly) * IMPORTANT: this patch *requires* ffmpeg 0.7 or newer, since older versions don't support the pkt_pts field, that is essential for building timecode indices. Windows and Mac libs are already updated, Linux-users have to build their own ffmpeg verions until distros keep up.
2011-08-28- use static vars and functions where possible.Campbell Barton
- use NULL rather than 0 when used as pointers.
2011-08-25sanity checks on operator exec/modal/invoke return values.Campbell Barton
2011-08-23Fix for [#28339] Rev:39618 The revision part doesn't suffice. Thomas Dinges
NAN_BUILDINFO > WITH_BUILDINFO change from rev 39618 was missing in those files.
2011-08-22rename NAN_BUILDINFO --> WITH_BUILDINFOCampbell Barton
2011-08-21Fix #28154: linux3-config.py doesn't existSergey Sharybin
Change OURPLATFORM from "linux<major_version>" to simple "linux". Since new policy for linux kernel versions that major version in platform doesn't make much sense for building rules so the same rules could be used for both of linux2 and linux3 now/ Tested on both of linux2 and linux3 systems.
2011-08-19warning cleanup for -Wdouble-promotionCampbell Barton
2011-08-15Code cleanup: add UNUSED_FUNCTION macro to avoid warning messages about unusedBrecht Van Lommel
functions.
2011-08-15Remove message "Info: Config directory with "startup.blend" file not found."Brecht Van Lommel
There's no reason to have it really, this situation is totally normal, and it means a terminal window is opened on Windows as long as you haven't saved any default settings yet.
2011-08-15Fix #28202: deactivating keymap items not saving properly.Brecht Van Lommel
2011-08-13index_to_framebuffer (used for mesh selection) was being called 3x times per ↵Campbell Barton
call to WM_set_framebuffer_index_color(), because of the cpack define.
2011-08-12add WM_FILESEL_FILES to WM_operator_properties_filesel, sequencer was doing ↵Campbell Barton
this on its own.
2011-08-11Fix #28180: crash running wm.keyconfigs.user.keymaps.new("My Keymap").Brecht Van Lommel
There isn't much point in doing this at the moment, but shouldn't crash.
2011-08-11use ghash for operator and menu types, was doing string lookup in the ↵Campbell Barton
operator list (containing over 1000 items) for each button draw. gives small speedup for UI drawing and overall startup time.
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-08add missing header to cmake files (else some IDE's wont index it)Campbell Barton
2011-08-07simplify x11 path code, had unneeded NULL checks and std namespaceCampbell Barton
2011-08-07ndof data change: operators can access values as vectors or components, as ↵Mike Erwin
both are handy
2011-08-07Fix #28169: keymap bug when using a preset configuration, e.g. object mode ↵Brecht Van Lommel
keymap was also being used in edit mode.
2011-08-07stricter NDOF guards for Windows (forgot in earlier commit)Mike Erwin
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-05fix for possible uninitialized RNA strings, when RNA_string_get property is ↵Campbell Barton
not found, initialize the string to "".
2011-08-05change BLO_library_append_begin to take a main argument rather then a ↵Campbell Barton
context, means the BGE doesnt need to make a new empty context just to pass as an arg. added doxygen description too. this quiets the print when the BGE does linking.
2011-08-03typo fix.Nathan Letwory
2011-08-03ndof changes: turned off 3D mouse during transform, removed timing bug in ↵Mike Erwin
image/uv, added option for zoom axis (up/down vs. forward/backward)
2011-08-02Debug print removed.Nathan Letwory
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-02replace WM_OT_ndof_menu with a key->menu assignment.Campbell Barton
2011-08-02NDOF related editsCampbell Barton
- fix for building without NDOF on X11 - quiet some warnings
2011-07-30ndof sensitivity operator follows power curve and respects min/maxMike Erwin
2011-07-29svn merge -r38753:38813 ↵Nathan Letwory
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-07-28speed button mapping to ndof sensitivity change operator.Nathan Letwory
2011-07-27svn merge -r38558:38752 ↵Nathan Letwory
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-07-25spoof MOUSEMOVE after NDOF_MOTION event, added commentsMike Erwin
2011-07-24ndof overall sensitivity is now liveMike Erwin
2011-07-24removed ancient ndof global, removed my own attempt at a C popup menu (the ↵Mike Erwin
Python one works)
2011-07-22Prepare for NDOF event handling all the way to keymaps (and keymap editor).Nathan Letwory
2011-07-21svn merge -r37276:38555 ↵Nathan Letwory
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-07-19translated ndof menu from C to Python, enabled helicopter fly modeMike Erwin
2011-07-18Bugfix #27927Ton Roosendaal
This fixes assigning 'tweak' keymap option for border selecting in Node editor. Thanks Perry Parks for the patch!
2011-07-17cmake: cleanup include paths, some duplicates and going up some unneeded dirs.Campbell Barton
2011-07-17cmake source definitions:Campbell Barton
remove missing includes and use more strict formatting.
2011-07-15more consistent and modal-friendly ndof events, fly mode v1Mike Erwin
2011-07-13reuse USER_SAVE_PREVIEWS to not save thumbnails into blend file headerCampbell Barton
2011-07-08== GPU Buffers ==Nicholas Bishop
This patch attempts to clean up and document the GPU buffers code. There are a few bug fixes as well. Patch reviewed here: http://codereview.appspot.com/4631052/ Summary: * Bugfix: make GPU_buffer_copy_normal convert from shorts to floats correctly, also fixed the use of cached face normal CustomData. * Bugfix: changed the `mat_nr' field of GPUBufferMaterial from char to short. * Changed color buffer setup to not alloc a temporary copy of color data, just passes the MCol data in directly. * Changed the GPU buffer pool code to make clearer what operates specifically on the global pool. * Lots of refactoring for GPU_drawobject_new; should operate mostly the same (except got rid of one unecessary allocation), just split into more functions and without macros now. * Converted some #defines into enumerations. * Made some stuff private, pulled out of header file. * Deleted unused function GPU_buffer_pool_free_unused(). * Removed GPU_interleaved_setup and related #defines. (I think this was used for editmode VBOs, but those were disabled.) * Added lots of comments. * Added a few comments in the code signed `--nicholas' to note places where I am unsure about design or usage, would be good to address these better. * Code formatting changed to be more consistent with the rest of Blender. * Renamed some fields and variables to be more consistent with Blender's naming conventions. * Renamed some fields and variables to use more descriptive names, e.g. renamed `redir' to `mat_orig_to_new'. * Removed print outs with DEBUG_VBO -- don't feel too strongly about this one, just not used elsewhere in Blender, could be easily added back if others disagree though. * Moved the PBVH drawing code down to the bottom of the file, before was sitting in the middle of the other VBO code
2011-07-04Apply patch 4636051. COLLADA: Export selection.Nathan Letwory
Original patch by Jan Diederich, adapted by Pelle Johnsen. Review assistance by Daniel Tavares. This patch adds an option to export only the selection.
2011-07-04fix for crash when setting layers or saving when there is no active scene - ↵Campbell Barton
only really happens when running python scripts on startup.
2011-07-02implemented ndof 'dead zone' around home position, fixed X11 active window ↵Mike Erwin
determination, removed old X11 ndof code
2011-07-01ndof popup menu (experimental (mostly harmless))Mike Erwin