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
2010-07-16Rather then hard coded /usr/share, use CMAKE_INSTALL_PREFIX to set the ↵Campbell Barton
PREFIX, could be added for scons/make too.
2010-07-14Merge GSOC Sculpt Branch: 28499-30319Jason Wilkins
https://svn.blender.org/svnroot/bf-blender/branches/soc-2010-jwilkins See log of that branch for details.
2010-07-12Update MSVC project filesBenoit Bolsee
2010-07-11installation paths:Andrea Weikert
small fix: removed extra slash in system path
2010-07-09Fixed bug [#22555] OSX/Cocoa: Suppress delayed mouse position changed event ↵Damien Plisson
after setting it
2010-07-07fix mingw compileAndrea Weikert
- seems to have been conflicting #defines for INT, solved by moving #include up
2010-07-06Fixed bug [#22757] : hide dock and menu on OSX only when Blender window is ↵Damien Plisson
maximized to fullscreen on the primary monitor
2010-07-05File/installation paths: osx (cocoa & carbon) update in ghostDamien Plisson
2010-07-05Fix Makefile for new getUserDir system.Diego Borghetti
2010-07-05compile fix, another missed semicolon - blushAndrea Weikert
2010-07-05bugfix [#22724] "Scene" switch on the console doesn't workCampbell Barton
2010-07-05fix for buildingCampbell Barton
2010-07-05Add missing ";".Guillermo S. Romero
2010-07-05SVN maintenance.Guillermo S. Romero
2010-07-05Patch [#22339] File/installation paths changesAndrea Weikert
Update after discussions on IRC: * operating system specific path retrieval is moved back to GHOST, nothing blender specific here though * cleaned up path functions a bit to remove #ifdefs * removed Cocoa from blenlib again TODO: * Matt, Damien, please check and correct the functions for Cocoa and Carbon, could only put back existing code but needs adjustment * finish GHOST_getBinaryDir - this should replace the BLI_where_am_i eventually as well as BLI_getInstallationPath on Windows and get_install_dir for the blenderplayer runtime * It would probably be nice to define GHOST_getTempDir as well and move those out * more cleanups... NOTE: Things are likely broken for macs
2010-07-04Patch [#22339] File/installation paths changesAndrea Weikert
Patch Tracker: http://projects.blender.org/tracker/?func=detail&aid=22339&group_id=9&atid=127 This patch implements the proposal outlined here: http://wiki.blender.org/index.php/Dev:2.5/Source/Installation/Proposal Original patch by Matt Ebb. Contributions by Nathan Letwory, Damien Plisson and Andrea Weikert NOTE: This is a work in progress commit, some work still needs to be done on the SCons and CMake files for this to work properly, but at least should compile and the files should be created in the right directory. Commit discussed on IRC with Ton and Campbell.
2010-06-15ifdef disable X11 mouse grab, it locks up the system for artists too often ↵Campbell Barton
(whenever blender locks up).
2010-06-15Got the okay from Nathan to commit this: It's a small patch for Win32 Ghost ↵Mitchell Stokes
that prevents a Blender window from setting the cursor position when it's not the active window.
2010-06-02Progress indicator in the application iconDamien Plisson
Displays a global progress indicator in the application icon reflecting the total progress of all running jobs. Currently fully implemented on OSX (Cocoa). On other OSes that do not allow to redraw the app icon, this can be implemented as a [x%] display in the app title, so to appear in the taskbar. Thanks to Matt for the windowmanager wrapper.
2010-06-01Fixes [#21791] Toggle Fullscreen (Alt + F11) returns to non-maximized windowNathan Letwory
Applied patch provided by Elia Sarti
2010-05-30Fixes: #22064 When the Windows task bar is placed on top of the screen, ↵Nathan Letwory
Blender "User Preferences" opens with the title bar underneath it I applied the patch provided by Charlie Shen in the comments of the bug report
2010-05-30reverting previous commit from Mitchell. His commit went to the trunk ↵Dalai Felinto
instead of the branch :) svn merge -r 29067:29066 https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-05-30Reversing the last merge because I botched it.Mitchell Stokes
2010-05-22Fix [#22306]: convert dropped file names from OSX to correct char encoding ↵Damien Plisson
to handle non 7-bit ascii chars (e.g. accents)
2010-05-16no functional changesCampbell Barton
- add PySequenceMethods members (all NULL) - spaces -> tabs - cmake syntax warning from recent ghost commit
2010-05-15made cmake ghost file less confusing (was globbing then removing files for ↵Campbell Barton
each system).
2010-05-03Drag & drop from OS: set to accept any drop operation by default for nowDamien Plisson
2010-04-18remove config.h references, was added for automake build system rev around ↵Campbell Barton
124-126 but isnt used by any build systems now.
2010-04-11Cocoa fix [#21866] : force mouse move event to be sent upon cursor position ↵Damien Plisson
set request
2010-04-06Fix #20365: new render window does not respect Windows taskbar at top of screen.Brecht Van Lommel
2010-03-28Fix [#21689] for coordinate issue (y flipped) when setting mouse cursor positionDamien Plisson
Mem leak when using BGE fixed too.
2010-03-20Cocoa: fix some mem leaks appearing on 10.4 buildsDamien Plisson
2010-03-16Fix [#21634] GHOST_WindowCocoa: activeWindow null pointer checkDamien Plisson
2010-03-15Fix [#20419] OSX Cocoa physical punctuation keys retrieval fixDamien Plisson
Cocoa charactersIgnoringModifiers API still takes the Shift key into account. Fix is to use Apple new 10.5 Carbon(!) API that is 64bit compatible to take into account the international keyboard layout when retrieving the physical key pressed/released. Needed to use an even older API for 10.4 builds.
2010-03-15Patch #21569 to fix bug #21530: on X11, middle mouse button drag cancelledBrecht Van Lommel
when moving wheel (with horizontal scrolling), was sending middle mouse event in cases where it should not. Patch by Anthony Edlin, thanks!
2010-03-10filebrowser:Andrea Weikert
* move own thread handling for thumbnails to WM_jobs * cleanup of thumbnail creation code * added function to kill the job, which actually allows thread to terminate gracefully vc9 projectfiles: * fixed some missing includes for release target!
2010-02-27System dependent standard directory retrieval functions update : return ↵Damien Plisson
const strings (as coded in libc) instead of malloc'ed buffers and plug them into wip BLI_bfile.c to replace the hardcoded paths
2010-02-16compile fixes for MSVC!Andrea Weikert
* function must return value! * missing _USE_MATH_DEFINES for M_PI
2010-02-16Cocoa : mem leak fixDamien Plisson
This fixes the mem leak part of bug report #21186
2010-02-16Cocoa: bugfix [#21158] fix modifiers keys status upon gaining focusDamien Plisson
10.6 new function to get modifiers flags status asynchronously returns erroneous value when application gets focus after a virtual desktop switch (Spaces). Use legacy method to retrieve the modifiers flags status sent with the last event. Works as at least the "focus gained" event is sent before this query. Bonus: should work also on pre-10.6!
2010-02-16OSX/deprecated Carbon: user and system base dirs retrieval implementationDamien Plisson
As Carbon is bound to RIP, implemented only a static version of these retrieval functions.
2010-02-16Cocoa: user and system base dirs retrieval implementationDamien Plisson
2010-02-16Self tsk. Too much copy paste.Guillermo S. Romero
2010-02-16Tsk!Martin Poirier
2010-02-16System dependant functions (skeletons) to retrieve user and system base dirs.Guillermo S. Romero
Thus #defines in BLI_bfile.c can be dropped, as suggested by Damien Plisson. Feel free to fill in the non Unix ones. For extra info see: http://wiki.blender.org/index.php/BlenderDev/Blender2.5/ResourceFilePaths http://wiki.blender.org/index.php/BlenderDev/Blender2.5/EnvironmentVariables
2010-02-12correct fsf addressCampbell Barton
2010-02-10Cocoa : use Cocoa NSWindow tag for identifying the window where a ↵Damien Plisson
mouse/tablet/key event happened => enables some actions in inactive windows as per OSX standard Previous code was assuming an event can only be sent from the active window. On OSX, Right, Middle mouse buttons, mouse wheel and trackpad events are sent to inactive windows too. For example, this allows to zoom, pan the view without changing the window order.
2010-02-04Update MSVC project files.Benoit Bolsee
2010-02-01SVN maintenance.Guillermo S. Romero
2010-02-01Wrong include path in revision 26519 (missing space when concatenating includes)Martin Poirier