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-05-07patch from Dan Eicher, CPack/RPM working againCampbell Barton
2011-05-07missed updating warp modifier UI, gave a py error when selecting texture UI ↵Campbell Barton
layer.
2011-05-07fix [#27298] Alt + RMB always extends selectionCampbell Barton
2011-05-07Forgot to mention that for scons, I've disabled install of the texture andBrecht Van Lommel
sequence plugins, as was already done for cmake, they don't work in 2.5. This is a fix for last commit, this file shouldn't have been included.
2011-05-07Code cleanup: remove source/kernel module, this wasn't really the kernel ofBrecht Van Lommel
anything, only contained a hash map and functions to pass command line args to the game engine. Moved those to container and BlenderRoutines modules.
2011-05-06Code cleanup: PIL_dynlib, renamed to BLI_dynlib, and other tweaks.Brecht Van Lommel
2011-05-06patch [#27205] Infinite recursion inside resolve_ncase() when passed a ↵Campbell Barton
driver letter on Windows that does not exist by Brandon Ehle (azverkan)
2011-05-06Patch #27225: blenderplayer resource compilation error fix for cmake + mingw,Brecht Van Lommel
patch by Ryakiotakis Antonis.
2011-05-06py/rna debugging option (defaults to off), which quickly exposes errors with ↵Campbell Barton
RNA functions holding string pointers by making a temp copy of the string and freeing after the function is called.
2011-05-06fix [#27304] uiItemsFullEnumO: operator missing srna ''Campbell Barton
python strings are not static so dont hold pointers to them within blenders UI.
2011-05-06[#26715] Blender2.57 crash when opening in Windows, non-latin char in pathCampbell Barton
this isn't a fix but GetModuleFileName is returning a name that doesn't exist, so finding python after this isn't working. Show a popup that the path has an invalid name so at least the user can move it.
2011-05-06add zlib include dir for cmake too.Campbell Barton
2011-05-05fix to scons after exotic was removed (patch from jms)Dalai Felinto
2011-05-05Fix for [#27294] Subframes cause dampened particles to behave differentlyJanne Karhu
* The unphysical particle damping wasn't scaled according to the timestep.
2011-05-05fix [#27285] Renderslot missingCampbell Barton
scale fixes size header buttons by DPI
2011-05-05sphinx api docs: fix for addons linking to the wrong operator SVN url's.Campbell Barton
also change from blender from 'release' back to beta so new docs don't overwrite the 2.57b release docs.
2011-05-05remove exotic.c, there was no operators to access these formats and they ↵Campbell Barton
were not well maintained.
2011-05-05alternative to joe's commit r36451.Campbell Barton
loopcut now follows 'Release confirms' user preference.
2011-05-04new rna api call: RNA_struct_idprops_unset(op->ptr, "someprop"), added to ↵Campbell Barton
allow un-setting operator properties.
2011-05-04new BLF functionsCampbell Barton
- BLF_height_max - BLF_width_max - BLF_descender - BLF_ascender use for tooltip and image stamp.
2011-05-04Own TODO item: sculpting on constructive modifiersSergey Sharybin
- Constructive modifiers are enabled by default in sculpt mode. - There's option to disable all constructive modifiers in the "Options" panel of toolbox in sculpt mode, - Use one column in options panel to make strings easier to read - No modifiers would still be applied on multires
2011-05-04drawing in 3d camera view conversion between mouse/camera view border was ↵Campbell Barton
broken.
2011-05-04pass colors to glColor as vectors where possible.Campbell Barton
2011-05-04fix 2 bugs with addon installationCampbell Barton
- installing an addon which creates a new script directory didn't add this to the sys.path. - installing the addon was meant to set the search string to the addon name but was broken.
2011-05-04workaround [#27276] Full Screen toggle for Save Screenshot ignoredCampbell Barton
don't show the option in the file sel, it only has effect when set before invoke.
2011-05-04rna object constraint remove function wasn't calling ↵Campbell Barton
ED_object_constraint_update().
2011-05-04fix [#26920] working with bones causes segmetation fault.Campbell Barton
ITASC IK solver data wasn't being cleared when constraints were removed, would access freed memory and crash.
2011-05-04use UNUSED in some more function args, no functional changes.Campbell Barton
2011-05-04fix for crash executing sculpt via python.Campbell Barton
2011-05-04Patch [#26799] 2.5x blenderplayer (BGE) anti-aliasing & embedding by ↵Dalai Felinto
Sebastian Korczak (with some small tweaks) + adding GHOST_PRINTF The patch can also be found in http://codereview.appspot.com/4431072/ ############## This patch fix anti-aliasing (multisampling) implementation for win32 platform. It also gives opportunity to embed blenderplayer inside parent window. Usage: blenderplayer.exe -i 123456 -m 16 file.blend where: 123456 - parent window handler (integer, default: 0) 16 - multisample level (integer, default: 0, max: 16. Put there maximum level you want. If not supported, player will automatically try 15,14,13,...,3,2,1) ############## This patch was originally created as part of the Burster (aka webplugin) project but benefit any one embedding the bge in a custom OpenGL context. By the way, to embed the BGE in a .Net application is really straightforward now =) The Multisampling work for blenderplayer as a whole. Missing functionalities: - to expose the multisampling to the ui (so far it only works in console) - window focus and keyboard messages for embedded blenderplayer (supported in their previous patch for 2.49, yet to be ported over) - handle resizing (to be investigated, indeed the changes in getState() in GHOST_WindowWin32.cpp are going to get in the way of that if I'm not mistaken. To be addressed together. Doxygen documentation to be added whenever I sort out how to do so. Sorry Nathan too many stuff to deal with at the same time. The sooner this patch gets in, the sooner the missing functionalities can be patched on top of that.
2011-05-03Do not lock key whn undoing to another shapekey while sculptingSergey Sharybin
2011-05-03bplayer stub update + remove some tabsDalai Felinto
2011-05-03fix [#27160] Shaded checkbox is not working.Campbell Barton
2011-05-03fix [#27271] Going into sculpt mode causes crashCampbell Barton
2011-05-03fix [#27218] Tooltip text renders incorrectly.Campbell Barton
2011-05-03fix [#27268] 2.57b Global Pivot Option not functional.Campbell Barton
2011-05-03remove player runtime writing functions, this is now an addon.Campbell Barton
2011-05-03fix [#27143] Cannot import key configuration with systemwide installCampbell Barton
2011-05-03correct url [#27252] Help link "Manual" in blender still points to 2.49 ↵Campbell Barton
documents.
2011-05-03replace OBJECT_OT_location_apply, OBJECT_OT_scale_apply, ↵Campbell Barton
OBJECT_OT_rotation_apply with OBJECT_OT_transform_apply with 3 boolean options. added back menu item from 2.4x to apply Rotation & Scale.
2011-05-03change ghost/x11 toggleConsole to use dummy function in the header.Campbell Barton
2011-05-03take 3, fix [#26727] Make Proxy ignores group offsetCampbell Barton
2011-05-03fix [#27266] EdgeSplit + RemoveDoubles + MoveView = CrashCampbell Barton
2011-05-03auto-merge was incorrectly subtracting the doubles removed from the meshes ↵Campbell Barton
total face count, remove doubles handles this.
2011-05-03=trunk=Joseph Eagar
Recommitted eltopo collision code (but disabled by default) with Genscher's permission. To use, you need to install liblapack and libblas
2011-05-03bugfix: empty proxied (Ctrl+Alt+P) doesn't maintain draw type and sizeDalai Felinto
reported by me in my Blender ranting sessions with myself
2011-05-02fix [#27148] *Invalid Path* in all "operator presets" dropdownsCampbell Barton
2011-05-02Fix for recent glsl commit, forgot to include this file.Brecht Van Lommel
2011-05-02remove dos/unix conversion scripts, enough editors and utilities can do this.Campbell Barton
update debian spec for new icon location.
2011-05-02fix for building windows/mingwCampbell Barton