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-04-13Remove unnecessary lines.v2.57Nathan Letwory
2011-04-13disable engine info until report popup bug is fixed.Campbell Barton
2011-04-13Version bump for doxygen.Nathan Letwory
2011-04-13fix [#26895] STL import in Win 7 64bitCampbell Barton
fixes python non-utf8 path access for file selector 'files' property.
2011-04-13fix for mistake checking engines on load.Campbell Barton
2011-04-13Crap, there was still a old Link to Release Logs. Maybe retag, after this ↵Thomas Dinges
and last commit (Tooltip error in Splash Screen) ?
2011-04-13Fixed a copy and paste error in "Copy Previous Settings" operator. ;-)Thomas Dinges
2011-04-12fix for compile issue on MSVC 2008 due to macro expansion differences with gcc.Andrea Weikert
2011-04-12fix for crash when pressing 'Copy Startup Settings', was using out of date ↵Campbell Barton
main database.
2011-04-12reference the release PDF correctlyCampbell Barton
2011-04-12edits to blender version data.Campbell Barton
2011-04-12The Epic Blender 2.57 first stable commit! :)Ton Roosendaal
Let's do a quick last check if things work, call for release will be done shortly on bf-committers. Thanks everyone for making it possible!
2011-04-12- fix for cmake when there is no version character.Campbell Barton
- link to release docs correctly from the splash page.
2011-04-12report missing engines on file load. (request from Martin).Campbell Barton
2011-04-12changed image texture filters description from 'Area filter' toM.G. Kishalmi
'selected filter'.
2011-04-12add randomize transform & object align back into the menu.Campbell Barton
2011-04-12ignore the local blender folder when displaying the copy old settings button.Campbell Barton
2011-04-12Fix crash for Intel G45 video cardsSergey Sharybin
This video card need a bit different approach to buffer swapping. Patch provided by nico_ga from IRC.
2011-04-12Fix #26860: uv snap/weld/stitch did not take live unwrap setting into account.Brecht Van Lommel
2011-04-12fix [#26888] 3D viewport shading broken after solidify modifierCampbell Barton
2011-04-12fix [#26885] transform option disapears when deselecting loopsCampbell Barton
deselecting edgeloop & edgering would leave the verts de-selected even if other edges had them selected.
2011-04-12less alarming warnings about the python api not being stable in online docs ↵Campbell Barton
and remove from interactive console.
2011-04-12revert Joseph Eagar's eltopo commits r36073, 36075 (& some minor edits)Campbell Barton
discussed with Janne, Ton, Nathan and we agreed this kind of change at least needs discussion with module owners. Its also too close to release to be making these kinds of changes. commands used: # reverse merge svn merge -r36073:36072 . # for some reason this gave a lot of property changes svn revert `svn st | grep "^ M" | awk '{print $2}'` # reverse merging didn't work here, removing while dir. svn rm extern/eltopo/ # manually fixed conflict in # ./source/blenderplayer/CMakeLists.txt # # also manually removed 2 lines from # ./CMakeLists.txt
2011-04-12Fix #26879: Some sculpt brushes does not work when sculpting corrective ↵Sergey Sharybin
shapekeys It was simply missed crazyspace correction for shape keys when mesh is deformed by modifiers and current tool is smooth/layer (they need special approach due to they don't use proxies)
2011-04-12modify the method for calculating ghost alpha.Campbell Barton
* ghost frame 1 did nothing (alpha 0.0). * was subtracting alpha from the existing alpha which could end up with negative alpha. * with larger frame ranges the frames on each size would get too close to being the same as the active frames alpha, use 66% alpha for all non-active frames as well as time based falloff.
2011-04-12small patch from Dobz to clean up non-functional multiuser code for now, and ↵Nathan Letwory
ensure admin level is requested on starting.
2011-04-12change behavior of restoring old settingsCampbell Barton
- only attempt to restore old 'user' settings (not local), since bundled blender's always use their own settings. - only automatically run 'bpy.ops.wm.read_homefile()' after copying files if the user hasnt alreadt started making changes in the blend file.
2011-04-12enable blenderplayer library sorting on windows, (was already enabled for ↵Campbell Barton
blender), resolves linking issue on windows
2011-04-11FIx crash when opening User Preferences even with NVidia cardSergey Sharybin
This crash was discovered by Dalai and this happened because of unset current context (as result of call wglMakeCurrent(NULL, NULL)). In this case glGetString(GL_VENDOR) returns NULL. Rather than add check for vendor != NULL before string comparison, I've changed a bit logic of context creation: - Create context and set it as current - If it's crappy Intel card -- delete this context and share the only one context between all Windows - Otherwise, use initial logic (with sharing lists and so on) This could also fix crash when opening userprefs from a menu with Intel card.
2011-04-11py api: bpy.data.is_dirty wasn't working like image is dirty, instead is ↵Campbell Barton
would return if the file was saved or not. - rename to 'is_saved' (and negated). - add 'is_dirty' which is true when the files edits are not saved to disk.
2011-04-11operator & splash button to copy over old settings when blender version changes.Campbell Barton
2011-04-11api changes needed for for copying old settings to new.Campbell Barton
- py: bpy.utils.resource_path('USER', 2, 56) - C: BLI_get_folder_version(id, major, minor, check);
2011-04-11fix [#26856] Can't change target object in modifier by Ctrl+VCampbell Barton
2011-04-11patch [#26861] Spelling, Typos, and GrammarCampbell Barton
- also fix own bad assert from yesterday & remove testing cmake print.
2011-04-11fix for one of the [#26854] UV issuesCampbell Barton
- add back UV X/Y number buttons, the report points out they are missing. - set the 2D cursor's subtype to PROP_COORDS (so buttons say x/y now)
2011-04-11Fix for [#26652] "Audio Muted" in Time Line Editor is not workingJoerg Mueller
-> The feature was completely missing o_O Also fixed an ffmpeg seeking bug.
2011-04-10Bugfix #26842Ton Roosendaal
Compositor: when using RenderLayer nodes from other scenes and FSA, Blender crashed because these nodes didn't get a 'tag' for refresh.
2011-04-10- background job style cleanup.Campbell Barton
- assert if material assignment is called with lib. (so the callers can be corrected). - correct example docs
2011-04-10Use the same LLIBS set for cmake at Win64 platform as scons uses.Sergey Sharybin
This fixes linking errors occurred recently for me (kinda of SDL and registry stuff) Now it works perfectly, thanks to Campbell for tip :)
2011-04-10Redid the previous startup.blend changes by ThomasTon Roosendaal
(icon for material, 1 console). A windows tmp path crept in somehow...
2011-04-10Fix [#26827] Blender Crashes when it opens corrupt jpegAndrea Weikert
* memory corruption when skipping over long marker (was attempting to read over end of file) * also updated internal jpeg macros to be the same as in jpeg lib
2011-04-10[#26848] Keyed Particles seems to be brokenJanne Karhu
* Explode modifier wasn't updated properly when keyed particles were used. * Explode modifier didn't get correct locations for grid distributed particles.
2011-04-10minor pep8 edits, also added 'test_pep8' & 'test_cmake' to the GNUmakefile ↵Campbell Barton
for convenience.
2011-04-10quiet msvc/mingw compiler warnings.Campbell Barton
2011-04-10Startup blend:Thomas Dinges
* Default material missed the mat preview icon.
2011-04-10Startup blend:Thomas Dinges
* Removed the second console in the "Scripting" Screen Layout.
2011-04-10Labelling fixMatt Ebb
2011-04-10disable new cloth solver by default.Campbell Barton
2011-04-10eltopo cloth solver couldnt be enabled from cmake, also dont use globbing.Campbell Barton
2011-04-10Enable WINDRES only for MinGW, otherwise we get multiple manifest errors for ↵Nathan Letwory
ie. vs2008