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
2003-11-22Last part of removing the old Python API implementation. RemovedMichel Selten
/source/blender/bpython. To remove the directories on your system, do a: cvs update -P
2003-07-07- old python: removed reference to UIfrontbuf, just to get it compilingTon Roosendaal
for those who dont have EXPYTHON defined
2003-06-29- Trying to fix something I caused:Willian Padovani Germano
Added a function call to creator.c that is needed by exppython, but forgot to add the function also to the old bpython implementation. Thanks, Hos! - Addition in Draw.Text and Draw.GetStringWidth (Python Draw methods): Now script writers can select the font size: normal, small or tiny.
2003-06-13* Bugs item #169 fixed:Willian Padovani Germano
Now Blender.NMesh.PutRaw() doesn't destroy vertex color info anymore. Both exppython's NMesh.c and bpython's opy_nmesh.c were updated. * Minor changes in other files.
2003-03-26FreeBSD can use the exact same python includes as everyone elseWouter van Heyst
2003-03-19Fix for bug #59.Daniel Dunbar
Silly strubel, strncpy does not 0 terminate strings.
2003-02-06Revert to the FUTURE_PYTHON_API, this means:Wouter van Heyst
- switching the define on in buildsystems (NaN, auto and msvc are done) - again import _Blender, which is the C module, from the Python modules
2003-01-30Modified checks for defined __FreeBSD__ to also include defined (__OpenBSD__)Kent Mein
From: http://www.blender.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=840 Kent
2003-01-26Get the Blender module back using the traditional makefiles, otherWouter van Heyst
build systems (auto, msvc, PB) do not seem to have this problem. - Change intern/python/freeze/Makefile to freeze outside of the source/ tree - Change source/blender/bpython/Makefile to not build the frozen stuff anymore - Change source/blender/bpython/intern/Makefile to use CURRENT_PYTHON_API instead of FUTURE_PYTHON_API, damage control
2003-01-04Use FreeBSD's default python location when on FreeBSDHans Lambermont
2002-12-27Removed the config.h thing from the .h's in the source dir.Kent Mein
So we should be all set now :) Kent -- mein@cs.umn.edu
2002-12-20In stubs.c I added a dummy return to functions that were non void types.Kent Mein
in readfile.c I renamed some localvars that were named main to mainl in a couple of functions. in action.c I initalized a var to 0. This is probably not needed but its a little safer incase someone adds more modes... I've included a diff of this last one below. Kent Index: action.c =================================================================== RCS file: /cvs01/blender/source/blender/blenkernel/intern/action.c,v retrieving revision 1.6 diff -u -r1.6 action.c --- action.c 2002/11/25 12:01:52 1.6 +++ action.c 2002/12/20 02:06:27 @@ -153,7 +153,7 @@ ){ bConstraint *dcon; const bConstraint *scon; - float dstweight; + float dstweight = 0; switch (mode){ case POSE_BLEND:
2002-11-29Bunch of small fixes emailed to me from phaethonKent Mein
Kent -- mein@cs.umn.edu
2002-11-25updated .c files to include:Kent Mein
#ifdef HAVE_CONFIG_H #include <config.h> #endif Just need to finish cpp files now :) Kent -- mein@cs.umn.edu
2002-11-25Did all of the .h's in sourceKent Mein
(adding) #ifdef HAVE_CONFIG_H #include <config.h> #endif also the Makefile.in's were from previous patch adding the system depend stuff to configure.ac Kent -- mein@cs.umn.edu
2002-11-25added the following to configure.acKent Mein
+case "$target" in + *sparc* ) + AC_DEFINE(SUN_OGL_NO_VERTEX_MACROS,1,[Fix for Sun's GL]) + ;; +esac + Also added the include to the above .c files. I'm going to add it to everything in source just haven't gotten that far yet. Kent
2002-11-08switched the order of build (frozen and intern are now intern and frozen)Kent Mein
that way the lib gets installed before the dir didn't exist so it died. Kent -- mein@cs.umn.edu
2002-11-07I autmated the rest of building libfrozen.aKent Mein
I also moved it so that it gets put in: $(OCGDIR)/blender/bpython/$(DEBUG_DIR)libfrozen.a and removed the stuff from the readme on how to do it by hand. (I made one other small change and that was to comment out the ssr target on solaris and freebsd in source/Makefile I forgot to commit it yesterday) Kent -- mein@cs.umn.edu
2002-10-30fixed spacing in the headers to get rid of some warnings and some otherKent Mein
little minor spacing issues.
2002-10-30Fixed defined __sparc to also check for __sparc__ (thanks to Ferris)Kent Mein
2002-10-12Initial revisionv2.25Hans Lambermont