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
2013-07-20Merged changes from trunk r58324-58419.ge_devMitchell Stokes
2013-07-20BGE fix [#36223] Strange page fault of "Game" actuatorDaniel Stokes
Adding a NULL check to BLI_ghash_lookup
2013-07-20Add Tamil characters to our i18n font (from samyak-tamil).Bastien Montagne
2013-07-19Fix some definitions for MinGW64Antony Riakiotakis
2013-07-19style cleanup: braces/indentationCampbell Barton
2013-07-19style cleanup: switch statements, include break statements within braces & ↵Campbell Barton
indent. also indent case's within the switch (we already did both of these almost everywhere)
2013-07-19Fix for [#36216] Viewport render with CMJ sampler and unlimited passes freezes Thomas Dinges
* If Preview Samples are set to 0 (unlimited) it now assumes 65536 instead of INT_MAX. This doesn't affect regular sampling, you can still enter fixed values of 100k or whatever.
2013-07-19Nodes / UI:Thomas Dinges
* Change UI string for LayerWeight node to "Layer Weight" (with the gap in between), for consistency with other nodes.
2013-07-19Blender 2.69 Release Cycle:Thomas Dinges
* BCon1: Alpha.
2013-07-19code cleanup: remove BLI_array use when extruding individual faces. also use ↵Campbell Barton
BM_face_copy utility function.
2013-07-19add keybinding for dolly: shift +/-Campbell Barton
2013-07-19patch [#36000] View lock offset (allow panning when the view is locked)Campbell Barton
own patch
2013-07-19patch [#35789] Quick hack select more/less tool for armaturesCampbell Barton
by Pedro Riera (priera), Andrey Dubravin and parts rewritten by myself.
2013-07-19patch [#35789] Quick hack more/less tool for latticesCampbell Barton
by Pedro Riera (priera), Andrey Dubravin, I also made some changes.
2013-07-19patch [#36032] Quick Hack lattice random selectionCampbell Barton
by Andrey Dubravin (daa)
2013-07-19code cleanup: use MEM_mallocN rather then MEM_callocN when the array isCampbell Barton
overwritten immediately after.
2013-07-19add rna attribute 'frame_current_final', without this you had toCampbell Barton
manually calcualte it with the subframe and time remapping vars.
2013-07-19code cleanup: use __linux__ define over linuxCampbell Barton
2013-07-19optimization: avoid extra loop in BLI_mempool_destroy(). free the list inline.Campbell Barton
2013-07-19code cleanup: use boolean for derived mesh face test functionCampbell Barton
2013-07-19code cleanup: case & brace placementCampbell Barton
2013-07-19code cleanup: pass event by pointer to getClipboard_xcoutCampbell Barton
2013-07-19optimization: avoid memcpy with shake key vertex array.Campbell Barton
2013-07-19code cleanup: inconsistent 'break' placement in BKE_object_minmaxCampbell Barton
2013-07-19code cleanup: replace inline loop with BLI_findstringCampbell Barton
2013-07-19code cleanup: remove redundant multiplying when jittering widget drawing.Campbell Barton
2013-07-19code cleanup: replace wm_macro_modal inline search for BLI_findptr.Campbell Barton
2013-07-19code cleanup: simplify BLI_parent_dir using BLI_join_dirfileCampbell Barton
2013-07-19code cleanup: use bool for widget struct, also edit odd strncpy use.Campbell Barton
2013-07-19code cleanup: avoid sqrt in isect_seg_seg_v2_pointCampbell Barton
2013-07-19code cleanup: remove array reallocation in bmesh duplicate function (use alloca)Campbell Barton
2013-07-19enable type limits warning when compiling with gcc.Campbell Barton
2013-07-19fix [#36218] Crash attempting to delete right side of hard cut in VSE on ↵Campbell Barton
movie strip deleting a strip would try free the anim membe twice.
2013-07-18Tradtional release commit! 2.68 splash and the numbering.Ton Roosendaal
- This should then follow the tagging - And I would still prefer to have at least 24 hours full freeze, for proper test and avoid last minute errors.
2013-07-18Avoid creating Morph Controllers when shape key export is disabledGaia Clary
2013-07-18fix for action editor view-selected behaving strangely.Campbell Barton
- when an fcurve had no selected keyframes, a default fallback value was used which caused view-selected to include frame 1, even when no selected frames were there. - the vertical axis was always reset, ideally we would center vertically too but the way this operator currently works we only know about the frame range, now don't change the vertical scroll when viewing selected since it would always jump to the top of the screen (view-all still acts this way).
2013-07-18* Fix a typo in code. Thomas Dinges
2013-07-18Leaf bone length calculation used wrong bone tailGaia Clary
2013-07-18Fix: #36184 Collada import/export... leaf bone size was not set as needed.Gaia Clary
2013-07-17Hide unnecessary error print when showing tooltip over a property with no RNABrecht Van Lommel
path, ideally this would work everywhere but it's a known limitation, no need to print an error in the console each time it happens.
2013-07-17Added some documentation for the minimal progress bar in blender_python_apiGaia Clary
2013-07-17style cleanupCampbell Barton
2013-07-17fix [#36176] Connected font Bevel moves inwards for some letter combinationsCampbell Barton
bevel wasn't taking into account overlapping text (bug goes back to 1.8).
2013-07-17Possible fix for [#36086] Activating the opencl option in the compositor ↵Thomas Dinges
causes blender crash * Now OCL_init() returns error messages if the OpenCL library cannot be loaded.
2013-07-17Fix for #36150, missing Preview Render Updates with Add/Remove material slot. Thomas Dinges
2013-07-17re-commit temp workaround [#35920], this still fails for OSX retina display,Campbell Barton
but at least it resolves for DPI values other then 72.
2013-07-17fix/resolve [#36173] Current frame doesn't update while OpenGL Rendering ↵Campbell Barton
Animation there was no feedback to the user about the current frame rendering, for longer renders this is no good.
2013-07-17Merging changes from trunk r58091-58323.Mitchell Stokes
2013-07-16Style cleanup of UI messages.Bastien Montagne
Mostly, "weight groups" -> "vertex groups", and usual case/endpoints/typos/etc. As a remainder, please read http://wiki.blender.org/index.php/Dev:Doc/CodeStyle#UI_Messages before writing UI messages!
2013-07-16Fix missing render info text in blender internal rendered viewport afterBrecht Van Lommel
previous fix for checking char arrays against NULL.