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
2008-11-11attempt to make executing an external command work with python 2.4 & 2.5, it ↵Campbell Barton
seems that only py 2.6 wanted list args for subprocess.Popen
2008-11-07[#17958] Windows path fix for image_edit.py script.Campbell Barton
Modified to work in linux too, on my system subprocess.Popen(appstring) only works when appstring is a list. Blenders __import__ didnt support keywords like pythons causing the subprocess module to fail for me. added keywords to blenders c/api import to match pythons.
2008-11-05uniform end-of-line format and set svn:eol-style property to "native" for ↵Remigiusz Fiedler
all scripts
2008-11-05* Updated the 'Consolidate into one image' script to support alphaMatt Ebb
2008-10-22Part one of the release update commitTon Roosendaal
2008-10-22added an option for python Draw.UIBlock(func, mouse_exit) so moving the ↵Campbell Barton
mouse outside the popup wont close it. Stops FBX Export and OBJ I/O from flickering a lot.
2008-10-22add a way for external scripts to call X3D/VRML importer and deal with ↵Campbell Barton
unknown node types.
2008-10-21more python 2.3 compat, should be the last of it.Campbell Barton
2008-10-21py 2.3 compat for lightwave_import and wizard_curve2treeCampbell Barton
2008-10-20fix for [#17871] PLY file import: blender seems to loose vertex color ↵Campbell Barton
information use Mesh rather then NMesh
2008-10-20=== Blender Python API ===Nathan Letwory
* fix two typos in RenderLayer API (renderosiy -> renderosity in two places. Will break .py's saved with render_save_layers.py, just fix passRadiosiy and passRadiosiyXOR) * add some docs on RenderLayer API * fix some copy/paste leftover in render_save_layers.py
2008-10-19modified OBJ import and export UI's to be less confusing with nicer layout. ↵Campbell Barton
removed an unneeded workaround in fbx export.
2008-10-18patch [#17856] Correction on docs for Ipo module. from Lucas Vella (lvella) ↵Campbell Barton
+ some other minor changes.
2008-10-18Added joystick epydocs, only changed incorrect docstrings in ↵Campbell Barton
SCA_JoystickSensor.cpp patch [#17857] HotKeys Update by dfelinto - SmoothStroke and Anchored. Made own edits, removed videoscape and added curve and armature specials.
2008-10-18* Fixed eekadoodle problem where faces with a zero index vert in the wrong ↵Campbell Barton
place would reotate the UVs and VCols incorrectly * Fixed an error that made IndexedLineSet and IndexedPointSet not load for x3d's * Added support for opening gzip x3d/wrl files
2008-10-17x3d and vrml importer for loading thes files as static scenes. x3d needs a ↵Campbell Barton
full python install. VRML97 files can be imported without python. for details on what is supported see http://wiki.blender.org/index.php/Scripts/Manual/Import/X3D_VRML97#Compatibility
2008-10-15vrml exporting with images was broken.Campbell Barton
2008-10-15== windows installer ==Andrea Weikert
small update for release 2.48 - no need to re-tag
2008-10-14=== Installer (win32) ===v2.48Nathan Letwory
* Fix for [#17651] Silent Install Issue - make sure silent install is really silent ( /S on command-line) * Improve installer to check for msvc90.dll * Improve installer to check for py 25 install (using registry)
2008-10-14resaved in the gimp, now loads with libpng 1.2.30Campbell Barton
2008-10-13Part one of the release 2.48 commit.Ton Roosendaal
2008-10-12c3d_import needed encoding defined for python 2.5+ to run.Campbell Barton
wav file reading minor fix checking array bounds.
2008-10-11Updated python license, this is compatible with current 2.5 and older.Ton Roosendaal
http://www.python.org/download/releases/2.5.2/license/
2008-10-10== Python ==Willian Padovani Germano
Bug: [#17734] Loading a python script's help dosn't work reported by Rian Tut (thanks). Actual problem: scripts with spaces in their filenames were not supported by the code that registers scripts in menus and runs them. Added support w/o breaking eventual, rare scripts that parse the Bpymenus file. They will still need an update to support filenames with spaces, like done here for these scripts: Scripts Help Browser and Scripts Config Editor. PS: tested on Linux. Please test on other platforms: just make sure scripts still appear in menus (the File->Export, for example), even after re-registering them (Scripts window -> Scripts Menu -> Update Menus) and that the Scripts Help Browser still works.
2008-10-08own error, bvh import would always miss the last frame.Campbell Barton
thanks ppClarity for picking up on this.
2008-10-08DXF-Exporter updateRemigiusz Fiedler
v1.27 - 2008.10.07 by migius - exclude Stani's DXF-Library to extern module - add "hidden mode" substitut: back-faces removal - add support for mesh ->POLYFACE - optimized code for "Flat" procedure - modif FACE class for r12 - add mesh-polygon -> Bezier-curve converter (Yorik's code) - add support for curves ->POLYLINEs - add "3d-View to Flat" - geometry projection to XY-plane
2008-10-06Use xrange() rather than range() for loop iterations.Chris Want
2008-10-06A fix for bug #8814:Chris Want
http://projects.blender.org/tracker/?func=detail&atid=125&aid=8814&group_id=9 Smarter handling of faces that have a material index that points to a null material.
2008-09-29DXF-Exporter script - initial commit Remigiusz Fiedler
Built on "Stanis Python Library for generating dxf drawing": History: v1.25 - 2008.09.28 by migius - modif FACE class for r12 - add mesh-polygon -> Bezier-curve converter (Yorik's code) - add support for curves ->POLYLINEs - add "3d-View to Flat" - geometry projection to XY-plane v1.24 - 2008.09.27 by migius - add start UI with preferences - modif POLYLINE class for r12 - changing output format from r9 to r12(AC1009) v1.23 - 2008.09.26 by migius - add finish message-box v1.22 - 2008.09.26 by migius - add support for curves ->LINEs - add support for mesh-edges ->LINEs v1.21 - 2008.06.04 by migius - initial adaptation for Blender v1.1 (20/6/2005) by www.stani.be/python/sdxf - Python library to generate dxf drawings
2008-09-29Updates to hotkeys.py with some hotkeys I've added/changed over past few ↵Joshua Leung
releases (note, this doesn't cover all of them yet)
2008-09-28fix header textRemigiusz Fiedler
2008-09-26Patch #17346: Align bones in edit modeJoshua Leung
Submitted by: Lorenzo Pierfederici (lento) This patch adds the CTRL-ALT-A hotkey to align bones in armature edit mode. It works the same way as parenting: selected bones will be aligned with active bone, if only one bone is selected it will be aligned with its parent (if any) Thanks!
2008-09-25patch [#17683] Fix OBJ import line endingsCampbell Barton
from Tom Nixon (greysquare) for fixing [#17681] .OBj import issues
2008-09-25Update of the very ancient 2.3 text of blender.html.Ton Roosendaal
Thanks Nathan Letwory for the poke!
2008-09-23[#8540] Import scripts for MilkShape3D file formatsCampbell Barton
from Markus Ilmola (glome) note, UV's will be incorrect in some faces because of eekadoodle problem.
2008-09-22Bugfix: for sunsky preview I added another camera, accidentally changed clipTon Roosendaal
and lens value for other cameras.
2008-09-20Patch 17403, small gcc warning fixes.Ton Roosendaal
2008-09-20Python api access to obcolorCampbell Barton
Option to copy obcolor in the copy menu Option to select same color in select grouped menu console.py - mistake in last commit caused a python error
2008-09-20Text.cCampbell Barton
- calling Text_reset within C/Api funcs didnt decref the Py_None Text_reset returned. - Text_delete wasnt checking if the input was an int. - a number of functions wernt checking if the text was removed. console.py - added clear output - command history leaves empty command before wrapping - add imports as dummy user input so commands written to a text file will run. - faster writing of output to a textblock.
2008-09-20Patch #17348 by Roger WickesTon Roosendaal
Fix in Bake Constraints script, better naming for new object.
2008-09-17* Some tweaks to the OBJ importer/exporter after chatting with CampbellMatt Ebb
- renamed the 'morph target' option to 'keep vertex order' - enabled 'keep vertex order' by default This should improve usability for importing and exporting shape keys, point caches, mdds ,etc.
2008-09-11ScriptsKen Hughes
------- Removed empty parenthesis from class definitions, causes a syntax error in Python 2.4 (reported by Sanne on IRC, thanks!)
2008-09-102 gamelogic templates, one with example functions and comments, another ↵Campbell Barton
minimal template for those who know the api.
2008-09-07Draw icons in the layer button to show used layers as well as layer of ↵Campbell Barton
active object, this is a feature from apricot but used button color instead which was confusing.
2008-09-06object_find, didnt get images from an objects material texturesCampbell Barton
KX_PythonInit.cpp - own error in recent commit.
2008-09-06find objects by texture name raised a python errorCampbell Barton
2008-09-05Merge of first part of changes from the apricot branch, especiallyBrecht Van Lommel
the features that are needed to run the game. Compile tested with scons, make, but not cmake, that seems to have an issue not related to these changes. The changes include: * GLSL support in the viewport and game engine, enable in the game menu in textured draw mode. * Synced and merged part of the duplicated blender and gameengine/ gameplayer drawing code. * Further refactoring of game engine drawing code, especially mesh storage changed a lot. * Optimizations in game engine armatures to avoid recomputations. * A python function to get the framerate estimate in game. * An option take object color into account in materials. * An option to restrict shadow casters to a lamp's layers. * Increase from 10 to 18 texture slots for materials, lamps, word. An extra texture slot shows up once the last slot is used. * Memory limit for undo, not enabled by default yet because it needs the .B.blend to be changed. * Multiple undo for image painting. * An offset for dupligroups, so not all objects in a group have to be at the origin.
2008-09-03cleanup mesh materials option was setting incorrect material indiciesCampbell Barton
2008-09-01Text Editor (GSOC 2008)Ian Thompson
======================= Merge of branch soc-2008-quorn to trunk: Merged 14970:16308 to trunk@16307, updated to HEAD. Merged 16318 Main features from this branch: - Python text plugins - Suggestions and documentation elements - Improved syntax highlighting - Word wrap - Additional editing tools - Various undo and clipboard fixes - File header info and modification checks
2008-08-30Merge from trunk 16122-16307Ian Thompson