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-01-30remove nan-makefilesCampbell Barton
2011-01-28Make version check more future proof.Nathan Letwory
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-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-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-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-23rename blenderlib to blender_add_libCampbell Barton
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-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-23fix for building with mingw/cmakeCampbell Barton
2010-11-21- check IF WIN32 AND NOT UNIX (for cygwin)Campbell Barton
- patch from Mike S to enable OpenMP and xcode
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-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-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-23Remove msvc build files which are not needed anymore.Campbell Barton
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-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-21/WX enabled for MSVC in CMake too.Nathan Letwory
Warning fixes.
2010-10-21Enable /WX in blenkernelNathan Letwory
Silence warnings
2010-10-21Use one device context for our window class.Nathan Letwory
2010-10-21* Use HWND_DESKTOP as parent for Blender Windows.Nathan Letwory
* Reorder freeing of OpenGL context code.
2010-10-21Enable /WX on Windows.Nathan Letwory
2010-10-19Fix [#20277] Bug with Continuous Grab on WindowsNathan Letwory
Reported by Alex Glawion When we have a maximized window we need to take into account that there are no borders.
2010-10-18_DEBUG -> DEBUGNathan Letwory
2010-10-18Add short comment.Nathan Letwory
2010-10-16Adapt OSX code for IMB_allocImBuf param changes.Nathan Letwory
2010-10-16Fix AltGr problem on WindowsNathan Letwory
It was impossible for keyboard layouts that use AltGr to create certain characters to insert them in Text and Console. The keyboard driver in Windows sends left control events when AltGr is pressed. This meant that Blender thought control was being held, which is a PASS_THROUGH condition for the insert operator in both editors. Add testing of keyboard layout for AltGr, both on initialization and WM_INPUTLANGCHANGE. To remedy AltGr problem, we send now a left control key up event to Blender before further processing the AltGr key.
2010-10-15Simplify GHOST modifier key handling on Windows.Nathan Letwory
2010-10-06patch [#24162] r32332 missed a couple of command key changes - with fixCampbell Barton
from Shane Ambler (sambler)
2010-10-05rename Command key to OSKey, Window manager already called it the OSKey but ↵Campbell Barton
internally it was mixed.