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-02-03Audio Bugfixes:Joerg Mueller
* [#25638] 'Insufficient thread locking' for sounds - Actually a workaround for an msvc bug, msvc STL containers are buggy * [#25922] Sound does not play in BlenderPlayer(r34579) - Windows OpenAL doesn't seem to have clear context error state on initialising
2011-01-30remove nan-makefilesCampbell Barton
2011-01-28Make version check more future proof.Nathan Letwory
2011-01-27fix for gcc 4.6 commit: this is needed for osx too.Campbell Barton
2011-01-27[#25815] Patch gcc 4.6Campbell Barton
with minor edits, made sure it works in CMake too.
2011-01-27Silencing some annoying key-event prints in Win32 console:Joshua Leung
The console was getting flooded with output like g i i ... all as a result of what looks like a debugging print. Whoever put this in, you can get back your debugging prints by enabling BF_GHOST_DEBUG in your local config :)
2011-01-26Apply part of patch [#25612] Windows 7 icon progress barNathan Letwory
Submitted by Alexander Kuznetsov. This adds the progress bar to the taskbar item of Blender for Windows 7. Small change in version retrieval, otherwise as is.
2011-01-26Apply multimonitor fix part of patch [#25612]Nathan Letwory
Submitted by Alexander Kuznetsov Fixes [#23630] Negative OS screen coords not stored/used Reported by Mort (mnme)
2011-01-25use cmake defined names for jpeg, png, zlib and python libs, building on ↵Campbell Barton
*nix with non-standard libjpeg/png/zlib locations was broken. in the case of python this makes it easier to move to find_package(PythonLibs) when 3.x is supported.
2011-01-25cmake maintenance, was missing 2 headers and made some minor improvements to ↵Campbell Barton
cmake_consistency_check.py. also converted GHOST_SystemWin32.cpp to utf8.
2011-01-24Fix [#25715] [!] key doesn't work on french keyboard with Windows ↵Nathan Letwory
XP/7.\nSubmitted by Eric Le Pape\n\nThe key sent VK_OEM_8, which wasn't handled at all. Added code to detect primary language and handle VK_OEM_8 specifically for certain layouts.
2011-01-23correct own bad spellingCampbell Barton
2011-01-20Ghost:X11 Set the default max width and max height value.Diego Borghetti
Some window manager can set default value of this to be the screen size, so running blender with -p or --window-geometry don't work with value bigger than that. This commit try to "avoid" the bug #25709, but at the end depend on the window manager, so maybe work or maybe not.
2011-01-18Fix [#25678]: (Ghost Cocoa) Fix character encoding translation for filenames ↵Damien Plisson
(open & window title display)
2011-01-17fix compile on MinGW, missing define in the mingw headers.Andrea Weikert
2011-01-16These files are needed for booleans (which I had disabled)Campbell Barton
reverse merge: svn merge . -r34357:34356
2011-01-16remove MSVC 6.0 workaround.Campbell Barton
2011-01-16remove unused memutil classesCampbell Barton
2011-01-15misc edits, no functional changesCampbell Barton
- enabling/disabling no longer prints in the terminal unless in debug mode. - remove 'header' struct from BLI_storage_types.h, from revision 2 and is not used. - Add GCC property to guardedalloc to warn if the return value from allocation functions isn't used.
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