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
2015-04-22Fix broken uiTemplateIconView().Bastien Montagne
Was using enum **value** as **icon id**... tripple sigh! Guess it was working for its only current use (matcaps), but still.
2015-04-22Fix T44472: Stereo 3D save options missing in File BrowserJulian Eisel
2015-04-22Fix T44463 - crash on "Full Sample"Dalai Felinto
2015-04-22Show buttons to change render layer/pass in UV Editor headerJulian Eisel
Previousely this was "hidden" in the Properties Region, this makes it more visible/usable. Requested by @sebastian_k
2015-04-22Tracking: Show plane track outline if image failed to loadSergey Sharybin
2015-04-22Tracking: Fix missing pointer array check when reading plane trackSergey Sharybin
This could cause memory corruption when moving files from system with one bitness to another.
2015-04-22Double click selection on animation channels selects all keyframes of the rangeAntony Riakiotakis
2015-04-22Freestyle: Fixed a crash due to missing call of StrokeShader.__init__() in ↵Tamito Kajiyama
Python. Many thanks to the problem report by flokkievids (Folkert de Vries) through a comment in Patch D963.
2015-04-22Fix crashes when moving game property with invalid index (from py/redoJulian Eisel
panel) Also hides index option in redo panel to be consistent with similar operators
2015-04-22Placeholder image strips feedback session changes no.2:Antony Riakiotakis
Change paths operator can also have the same placeholder logic now
2015-04-22Placeholder image strips feedback session changes no.1:Antony Riakiotakis
Autodetect range of strips.
2015-04-22Placeholders for sequencer take one.Antony Riakiotakis
Placeholder images, means that the image sequence reserves a range for images, displaying black while we wait for them to finish rendering. This is meant as a feature to not break the layout of gooseberry sequence edits while we wait for those frames to arrive.
2015-04-22Fix T44476: Hiding Grease Pencil from Outliner RMB doesn't update 3DJulian Eisel
View
2015-04-22Fix T44477: Overlapping tooltips in OutlinerJulian Eisel
Tooltips for buttons in the Outliner could overlap the Outliner's RMB menu in some cases (and there's no way to get rid of the tooltip again). This disables the button's tooltip before creating the menu (as we do it for the normal RMB menu)
2015-04-22Fix and simplify vertical positioning and calculation of metadataAntony Riakiotakis
display more.
2015-04-22Rename stamp panel to metadata panel.Antony Riakiotakis
Rationale - this panel also enables metadata that get written on files. Also moved draw_stamp property in the panel - to make it clearer it only controls the drawing, not individual metadata.
2015-04-22Fix stamp missing after multiview merge.Antony Riakiotakis
Was not using acquired render result correctly, most likely a copy paste error.
2015-04-22Stamp cannot be written to file.Antony Riakiotakis
Make sure stamp data is avaliable before writing stamp to image - this still does not fix stamp, looks like issue is availability of the images themselves for the view, investigating next.
2015-04-22Tracking: Some more code de-duplicationSergey Sharybin
2015-04-22Tracking: Code cleanup, de-duplicate some code in tracking context finishSergey Sharybin
2015-04-22Cleanup: pep8, spellingCampbell Barton
2015-04-22Fix T44470: File Selection sometimes surpresses last Character.Bastien Montagne
Tweak hack of `file_draw_string()` (there may be better solution, but not worth spending time on this, the whole filebrowser drawing code is to be rewritten anyway).
2015-04-22Fix T44475: Merge option of Mirror Modifier behavior reversed.Bastien Montagne
Glitch in rB57d9badc.
2015-04-22Logic Editor: Buttons for moving game properties up/downTristan Porteries
D1163 by @panzergame, with minor edits by me (@Severin)
2015-04-22Tracking: Add missing plane track remapping when joining two point tracksSergey Sharybin
2015-04-22Tracking: Cleanup, move some plane tracks code to utility functionsSergey Sharybin
2015-04-21BGE: scene.pre_draw_setup[] callbackDalai Felinto
This callback allows the user to change the camera data right before the rendering calculations. scene.pre_draw[] is not enough here, because if you want to change the camera matrices (projection/modelview) the culling test is done before that (after pre_draw_setup[] though). Reviewers: moguri, campbellbarton Differential Revision: https://developer.blender.org/D1251 Python sample code using this. The sample scene would need a default camera (not used for rendering), a dummy camera ('Camera.VR'), and two cameras ('Camera.Left', 'Camera.Right') that will be used for the actual rendering. ``` import bge def callback(): scene = bge.logic.getCurrentScene() objects = scene.objects vr_camera = objects.get('Camera.VR') if bge.render.getStereoEye() == bge.render.LEFT_EYE: camera = objects.get('Camera.Left') else: camera = objects.get('Camera.Right') vr_camera.worldOrientation = camera.worldOrientation vr_camera.worldPosition = camera.worldPosition def init(): scene = bge.logic.getCurrentScene() main_camera = scene.active_camera main_camera.useViewport = True scene.pre_draw_setup.append(callback) objects = scene.objects vr_camera = objects.get('Camera.VR') vr_camera.useViewport = True vr_camera.setViewport( 0, 0, bge.render.getWindowWidth(), bge.render.getWindowHeight() ) ```
2015-04-21Tracking: Fix over-allocation in plane track's point tracks pointers when ↵Sergey Sharybin
removing point track
2015-04-21Fix T44474: Rotation manipulator not hidden completely with all axesJulian Eisel
locked Really doesn't look like a bug on a first glance but the line of code that was there previously seemed to be there to prevent the manipulator from drawing in this case.
2015-04-21BLI_string: add BLI_snprintf_rlenCampbell Barton
use when the length of the destination string is needed.
2015-04-21Math Lib: handling bits handling into own fileCampbell Barton
2015-04-21Minor edits to metadata commitCampbell Barton
No need to calculate height of each line, just use height of font.
2015-04-21Initialize and use the theme for metadata textAntony Riakiotakis
2015-04-21Stamp refactoring:Antony Riakiotakis
Write those on render result during rendering, so we can cleanly write a render result image after rendering.
2015-04-21Metadata:Antony Riakiotakis
* Theme support for metadata display * Increase text DPI with scaling.
2015-04-21Metadata display support - patch by Julian and me.Antony Riakiotakis
Basically, blender adds a few metadata fields to images when we render an image. Those metadata can now be viewed in the image editor. Also, made sure metadata are available when we write imbufs to disc with "Save As". There may be more cases here that need fixing, but this means that loading an image with metadata will now properly preserve them in blender.
2015-04-21VSE: Allow GPencil drawing without having a strip loadedJulian Eisel
Previously the GPencil strokes were just not drawn (even though they were generated) until a strip was loaded.
2015-04-21Minor edit to edit-mesh selection biasCampbell Barton
only choose verts over edges (not faces)
2015-04-21Cleanup: minor correctionsCampbell Barton
2015-04-21Fix T44465: Crash using VSE OGL render + Grease PencilJulian Eisel
Likely caused by rBd5f1b9c22233
2015-04-21BMesh: mesh-data picking, general improvementsCampbell Barton
Generalize logic for vert/edge/face selection: - index cycling. - selection bias with mixed modes. Details: - Edges now support index cycling (as verts/faces did already) - Cycling over near elements is now only enabled when the mouse position remains the same. - No longer do 2 selection passes to perform index cycling. Fixes: - Edges behind the view could be selected (surprising nobody reported!) - Selection bias now only changes the element that gets picked without interning the return distance (was buggy with mixed modes).
2015-04-21Backdrop strictly shows image result only - it could get influenced byAntony Riakiotakis
scopes setting of space if one changed the space type back and forth. Thanks to Sergey for reporting.
2015-04-21Allow editing of active strip proxy settings again in addition to theSergey Sharybin
set operator
2015-04-21Cleanup: styleCampbell Barton
2015-04-21Correct crash in last commit (spacebar search)Campbell Barton
2015-04-21Add eyedropper for selecting object & obdataJulian Eisel
In addition to the unlink icon to clear a value, When cleared, show an eyedropper to select objects or object-data (was already available via the EKey).
2015-04-21Fix T44432: Zoom to mouse fails /w FCurve editorCampbell Barton
2015-04-20Fixes for backbuf selection logicCampbell Barton
- Fix ED_view3d_backbuf_sample_rect, r_dist was set completely wrong. - Avoid duplicate calculations picking the nearest edge. - Bias against picking selected edges is now optional. - Remove unused callback reading the backbuf. - Remove unused strict option picking vertices.
2015-04-20Cleanup: use ED_view3d_backbuf_* prefixCampbell Barton
2015-04-20Fix T44383: Select face fails in some positionsCampbell Barton
When mixing vert/edge/face with select-visible, face selection could fail when not close enough to the center. This also fixes a bug where the bias for verts over edges would prefer faces over edges too, making edges harder to pick. Mixing edge with other selection modes works more predictably now.