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
2014-09-08Merge branch 'master' into soc-2014-viewport_fxsoc-2014-viewport_fxAntony Riakiotakis
I have resolved some differences, for instance selection code which was more or less a stub, to be the same as master. This will have to be fixed later. Conflicts: CMakeLists.txt intern/ghost/CMakeLists.txt intern/ghost/intern/GHOST_SystemWin32.cpp intern/ghost/intern/GHOST_Window.cpp intern/ghost/intern/GHOST_WindowWin32.cpp intern/ghost/intern/GHOST_WindowX11.cpp source/blender/blenlib/BLI_math_matrix.h source/blender/blenlib/intern/math_matrix.c source/blender/gpu/CMakeLists.txt source/blender/gpu/GPU_select.h source/blender/gpu/intern/gpu_buffers.c source/blender/gpu/intern/gpu_draw.c source/blender/gpu/intern/gpu_extensions.c source/blender/gpu/intern/gpu_select.c source/blender/gpu/shaders/gpu_shader_simple_vert.glsl source/blender/nodes/CMakeLists.txt
2014-08-31Fix T41657: Text Editor highlight bug when a very long line scrollsBastien Montagne
Based on patch by randon (Dun Liang), but no need to recompute lengths here, we already have the info.
2014-08-29Fix Text editor home/end keys when theres a selectionCampbell Barton
2014-08-11Fix T41379: Drag n Drop .txt files text editor failsCampbell Barton
by kevindietrich
2014-07-19Defines: replace ELEM3-16 with ELEM(...), that can take varargsCampbell Barton
2014-07-05[OpenGL Policy] BlendFuncSeparate defaults to GL_ALPHA, ↵Jason Wilkins
GL_ONE_MINUS_SRC_ALPHA, GL_ONE, GL_ZERO Only set the blend func if the coefficients are different. Return them to the defaults when done. Note: Fairly confident that Blender and the standalone Cycles renderer are correct, but that both the embedded and standalone game engine will need more testing. Note: Do we actually want the default to be: GL_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ONE, GL_ONE_MINUS_SRC_ALPHA?
2014-06-27Merge branch 'master' of git.blender.org:blender into soc-2014-viewport_fxJason Wilkins
Conflicts: CMakeLists.txt source/creator/CMakeLists.txt source/gameengine/Rasterizer/RAS_OpenGLRasterizer/RAS_OpenGLLight.cpp
2014-06-15Text Editor: dropping id's now paste in Python data path (like pyconsole)Campbell Barton
2014-06-12GHOST Refactor for EGL ContextsJason Wilkins
Documentation to appear here: http://wiki.blender.org/index.php/User:Jwilkins/VFX/GHOST_Refactor_for_EGL Missing from this commit is support for systems other than Windows. This also only builds with CMake.
2014-05-28Fix T40157: Loading movies larger than 4GB in size failsSergey Sharybin
Issue was caused by _wstat returning EOVERFLOW error because of file size didn't fit into stat structure which was using long datatype. The idea of this patch is to use _wstat64 and _stat64 structure which is capable storing 64bit file sizes. Made it a typedef for stat structure used by BLI_stat function in order to make code easier to follow and avoid ifdefs all over the place. Additionally solved issue with BLI_exists which was wrongly returning False in cases destination file is larger then 4GB.
2014-05-01Code cleanup: remove file handling headers where they arent neededCampbell Barton
2014-04-30Code cleanup: remove unused includesCampbell Barton
Opted to keep includes if they are used indirectly (even if removing is possible).
2014-04-30Report when saving images and textCampbell Barton
also fix bug where text saving would strip last newline
2014-04-30Code cleanup: remove redundant CTX callsCampbell Barton
2014-04-26Code cleanup: use 'const' for arrays (editors)Campbell Barton
2014-04-11Code cleanup: use boolCampbell Barton
2014-04-01Code cleanup: remove TRUE/FALSE & WITH_BOOL_COMPAT defineCampbell Barton
2014-03-16Code cleanup: naming conventionsCampbell Barton
2014-03-09Text Editor: Remove key binding for text/object conversionCampbell Barton
This can freeze Blender if you accidentally press ctrl+m on a large script, conversion from text to 3d objects is fairly special case, restricting access to the menu only.
2014-03-07Code cleanup: styleCampbell Barton
2014-03-06Fix T37867: scroll bar in text editor shows the wrong mouse cursor.Brecht Van Lommel
Patch by chipgw.
2014-03-01Fix for some unlikely memory leaks, remove redundant checksCampbell Barton
2014-02-04Code cleanup: declarations for removed functionsCampbell Barton
2014-02-03Code cleanup: use bools where possibleCampbell Barton
2014-01-27Code cleanup: use booleans where appropriateCampbell Barton
2014-01-27Use includes for blenderplayer stubsCampbell Barton
exposes many incorrect and redundant stubs
2014-01-16Code Cleanup: no need to pass empty strings as default valuesCampbell Barton
2014-01-15Python/Depsgraph: bpy.data.*.is_updated now detects add/remove of any datablock.Tom Edwards
Previously this only worked for some datablocks relevant to rendering, now it can be used to detect if any type of datablock was added or removed (but not yet to detect if it was modified, we need many more depsgraph tags for that). Most of the changes are some function parameter changes, the important parts are the DAG_id_type_tag calls. Reviewed By: sergey, brecht Differential Revision: https://developer.blender.org/D195
2014-01-08Code Cleanup: de-duplicate text pasting which only used the first lineCampbell Barton
2013-12-13Fix T37572: text editor scrolling not working well with Mac trackpad panning.Brecht Van Lommel
The trackpad would give isolated mouse pan events with a distance smaller than one line or character. For other 2D views this is all accumulated in floats, but in the text editor it only keeps track of integers, and the small mouse pan events got lost due to rounding. Now it keeps track of sub-line or sub-character scroll offsets to avoid this.
2013-11-29File Browser: autocomplete keeps focus in the file field when entering a folder.Brecht Van Lommel
There is a bunch of internal refactoring going on too: * No longer use operators to handle these directory and file fields, only makes things more complicated than they should be. * Handle autocomplete partial/full match deeper in the UI code * Directory field still does not keep focus, that's for another time to fix, you can already do pretty quick keyboard only navigation with the file field. Reviewed By: elubie Differential Revision: http://developer.blender.org/D29
2013-10-31remove return argument from wmOperatorType->cancel, was only ever returning ↵Campbell Barton
OPERATOR_CANCELLED.
2013-10-23style cleanupCampbell Barton
2013-10-18ID blocks can be pasted to text editor now with mouse drag and moveSergey Sharybin
2013-10-17Fix #37048: Default keybindings: text.find_next in Text (Global), should be ↵Sergey Sharybin
in Text Generic
2013-10-17Fix #37122: Text Editor: New Open-Shortcut different from Text > Open Text BlockSergey Sharybin
Seems no user counter tricks are needed from r23598. Also, r33453 is obviously wrong, because new ID's user counter is 1, and could not exceed this value.
2013-10-11Fix [#37049] Default keybindings: Text editor auto-complete accepts Return, ↵Irie Shinsuke
but not Numpad Enter
2013-09-30changing shortcut to toggle Properties in text editor (ctrl+t)Dalai Felinto
2013-09-30lots of operator descriptions were incorrectly copy/pasted.Campbell Barton
update some descriptions, others were removed and operators tagged as internal. add a script to detect duplicate operator descriptions.
2013-09-20bugfix [#36724] Ctrl+F in text editor opens Toolbar, but no longer closes itDalai Felinto
(added Ctrl+P as a toggle to show Properties)
2013-09-11correct own recent edits, area for text line numbers drawing was too small.Campbell Barton
2013-09-06fix [#36656] text editor undo error when undoing paste commandJustin Dailey
When tabs to spaces is enabled and a paste command is undone, the improper number of characters could get removed. Also fixed issue with shift + left/right only selecting a max of 1 character.
2013-09-02text editor cursor motion (left/right arrows) with selected text typically ↵Campbell Barton
jumps to either side of the selection previously the cursor would move and loose the selection too. text button fields already did this.
2013-08-31text spacing was using DPI rather then the size of the text.Campbell Barton
characters could draw outside the selection when the text was scaled up.
2013-08-31text drawing glitche - highlight line was offset slightly from selection.Campbell Barton
2013-08-29correct own error r59619 (changes made to patch, adding handle recalculation ↵Campbell Barton
which is needed after splitting).
2013-08-29fix for glitch where the text editor could be clamped to scroll above line 1 ↵Campbell Barton
(would flicker on scroll).
2013-07-21code cleanup: add break statements in switch ()'s, (even at the last case).Campbell Barton
2013-07-02remove nan copyrights from code added since blender become opensource (copy ↵Campbell Barton
paste errors), also remove BKE_script.h
2013-06-25Fix #35824: finding missing files not working correct for filepaths with specialBrecht Van Lommel
characters on Windows. Replaced some uses of stat() by BLI_stat() to properly handle such filepaths.