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
path: root/intern
AgeCommit message (Collapse)Author
2011-01-09use PySequence_Size() rather then PySequence_Length(), this is only kept in ↵Campbell Barton
python for backwards compatibility.
2011-01-05SVN maintenance.Guillermo S. Romero
2011-01-05Patch: [#22524] Update Windows Recent Documents on Open/SaveAndrea Weikert
Slightly modified to better fit in architecture (moved to related GHOST SystemPaths) Thanks to Harley Acheson for the research and for providing the original patch. Note: I added empty function for X11(Linux) and Mac (Carbon and Cocoa) to be implemented still.
2011-01-05ToDo: long outstanding patch to allow access to system paths in background modeAndrea Weikert
Thanks Damien Plisson for contributing the Carbon and Cocoa implementation
2011-01-01Fix [#25442]: (Ghost Cocoa) Add missing initialization of associated object ↵Damien Plisson
pointer when switching to/from fullscreen.
2010-12-28Fix [#24630] alt+shift+LMB dragging does not workNathan Letwory
Reported by Nils Austa There was double handling of modifier keys. With my autumn work on the modifier keys I had moved state checks for modifier keys into convertKey(), but left the call to handleModifierKeys. That caused problems with proper modifier key handling in the entire key handling code of GHOST.
2010-12-27Fix for blender crashing when starting playback with audio without being ↵Joerg Mueller
able to open the audio file.
2010-12-23rename blenderlib to blender_add_libCampbell Barton
2010-12-22Audio:Joerg Mueller
* Improve Jack Transport responsiveness. * Added minor error checking to OpenAL.
2010-12-16SVN maintenance.Guillermo S. Romero
Plus some typo fixes in comments.
2010-12-15bugfix [#25230] Quick extrude Ctrl-LMB : wrong behaviour of 'RotateSource' ↵Campbell Barton
option. Problem is is with operator redo which click-extrude exposed. Check if redo operator can run, otherwise lock the UI and add a label that the operator doesn't support redo. This is clunky but IMHO better then failing silently and leaving the user confused. - Merged redo functions into ED_undo_operator_repeat(), code was duplicated in a few places. - added WM_operator_repeat_check to check if WM_operator_repeat() can run, avoids an undo call when redo work. Unrelated changes - GHOST_SystemWin32.cpp set to utf8 encoding. - cmake_consistency_check.py now checks source files are utf8.
2010-12-08use lowercase for cmake builtin names and macros, remove contents in else() ↵Campbell Barton
and endif() which is no longer needed.
2010-12-07Added WITH_CXX_GUARDEDALLOC support for GHOST, disabled by default.Campbell Barton
2010-12-04Cocoa : fix drag and drop was no more operational after having fullscreened ↵Damien Plisson
the window
2010-12-03Enabled GCC -Wwrite-strings warning for CMake and replaced many 'char's for ↵Campbell Barton
'const char's,. Only one functional change where Transform orientations passed "" to BIF_createTransformOrientation() which could then have the value written into.
2010-12-03- added GCC warning -Wstrict-prototypesCampbell Barton
- fixed bug in paste material, exposed by stricter warnings. - removed/renamed various shadowed vars. - removed BGE lamp.colour, only allow lamp.color attribute.
2010-12-03fix for some pedantic warnings.Campbell Barton
2010-12-01quit blender if the first X11 window fails to open.Campbell Barton
mainly just to avoid a segfault so the user knows its not a bug.
2010-11-30Add option for CMake to build libredcode, also use CODEC prefix for ffmpeg, ↵Campbell Barton
quicktime & sndfile options.
2010-11-29include headers in cmake source, added a script to check for consistency, ↵Campbell Barton
reporting missing headers & C files. this is important so IDE's using CMake integration always get blender headers. - QtCreator & MSVC for eg, probably others too.
2010-11-26Fix #24775: boolean modifier crash in rendering on Mac. Problem was that thisBrecht Van Lommel
ran out of stack memory, now it passes some arguments by reference instead of by value to use less stack space.
2010-11-24define UNUSED() locally for mmap_winCampbell Barton
2010-11-24fix for crash introduced r33257, also tag some vars as unused.Campbell Barton
2010-11-23fix for building with mingw/cmakeCampbell Barton
2010-11-21WITH_SAMPLERATE option for cmake, without this playback wont behave right so ↵Campbell Barton
this is mainly intended for developers who build without audio enabled.
2010-11-21- check IF WIN32 AND NOT UNIX (for cygwin)Campbell Barton
- patch from Mike S to enable OpenMP and xcode
2010-11-20- smoke wasn't closing the file of loading a tile had the wrong length.Campbell Barton
- missing break in operator context switch meant RGN_TYPE_CHANNELS was always being overwritten with RGN_TYPE_PREVIEW when calling operators (from r26692)
2010-11-20fix smoke memory leak with OpenMP disabled.Campbell Barton
2010-11-15Fix [#24310] With high poly numbers when sculpting, modifier keys hangNathan Letwory
reported by Eclectiel L When working with very heavy scenes Blender can seem to 'hang' (not responding). Key events that happen during this period may get lost, especially for modifier keys. Adding extra handling to account for these situations.
2010-11-07patch [#24576] aud.Handle.status return boolCampbell Barton
from Dan Eicher (dna), no functional changes, just return bool rather then int types.
2010-11-02Add PREFIX support to makefiles.Guillermo S. Romero
2010-11-02throw an error is PREFIX isnt defined on X11 systems. defaults to /usr/localCampbell Barton
2010-11-01== FFMPEG ==Peter Schlaile
This fixes a rather subtle seeking issue with ffmpeg and Sony XDCAM-footage. Problem is: MPEG2 streams within an MP4 container can contain a start time - at several places. There is a starttime within the video and audio streams and one within the container. FFMpeg commandline tool only uses the container starttime and we used the stream starttime. The world would be a better place, if those two timestamps always match up, since in XDCAM-footage those two starttimes differ in 4 frames - and the container has the right one. We now always use the container start time as ffmpeg commandline tool does (in the hope, that there is a good explaination for this and this is the right thing(tm) to do). I tested this also with HDV footage, which seems to work with the new code, too. Additional fix: disabled seek_by_bytes again, since it will only work correctly, if ffmpeg guessed the HDV bitrate right (which it doesn't). If you have seeking issues with HDV and have an older version of ffmpeg installed, please upgrade, newer versions have some fixes in them.
2010-10-31Audaspace: Disabling High- and Lowpass for Bake Sound to F-Curve Operator in ↵Joerg Mueller
case they're unused.
2010-10-31Fix for #24453: Missing delete statement.Joerg Mueller
2010-10-31rename and negate DISABLE_PYTHON --> WITH_PYTHONCampbell Barton
2010-10-30use PyImport_ExtendInittab for py module initialization rather then adding ↵Campbell Barton
to sys.modules directly, no functional change.
2010-10-27remove include paths which dont exist, fix for doc upload script which was ↵Campbell Barton
getting the blender version twice and not working sometimes.
2010-10-27Change /WX away for now, some odd thing going on between cloned ↵Nathan Letwory
environments. Need to check after release.
2010-10-24Make sure separation between modifier keys is communicated from GHOST ↵Nathan Letwory
upwards too (BGE at least uses this).
2010-10-24Fully disable AUD's FFTW3 usage.Guillermo S. Romero
2010-10-23CMake options to disable Decimate and Boolean Modifiers: WITH_MOD_BOOLEAN, ↵Campbell Barton
WITH_MOD_DECIMATE, renamed WITH_FLUID to WITH_MOD_FLUID
2010-10-23Remove msvc build files which are not needed anymore.Campbell Barton
2010-10-23use explicit file paths for CMake rather then globing, This is recommended ↵Campbell Barton
by cmake devs. globbing vs explicit is discussed here. http://www.cmake.org/pipermail/cmake/2008-December/025694.html Practical implications are: - developers need to keep CMakeLists.txt files up to date. - Users wont get strange linking errors if they build after a file is added, since CMake detects CMakeLists.txt is modified and automatically reconfigure.
2010-10-23Fix [#24337] Create vertex (and faces and edges) with "Control+LMB" doesn't ↵Nathan Letwory
works! Reported by Lluc Romaní Brasó Some of my earlier changes to the modifier handling code accidently sent out new events for modifier keys when they where held down (repeat). Also lay foundation for shift+numpad handling.
2010-10-22fix for warnings & detecting opensource nouveau drivers.Campbell Barton
2010-10-21Wrong check for platform accidently put /WX to non-msvc toolchains too.Nathan Letwory
2010-10-21Don't use CS_CLASSDC after all. Makes drawing multiple windows funky.Nathan Letwory
2010-10-21tweaks to external libs to get rid of warnings.Campbell Barton
2010-10-21/WX enabled for MSVC in CMake too.Nathan Letwory
Warning fixes.