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-03-08Swig is unfortunately not an option anymore. This means implementing allMichel Selten
wrapper functionality by hand. * Removed the swig files (*.i and *_wrap.c) * Created initial datablock functionality. Most of it has been copied from the old implementation. * Created some general functions in gen_utils.[ch] * Blender.Get(), Blender.Set() and Blender.Redraw functions should work in a script now. * Started implementation on an Event function call (BPY_do_pyscript) Michel
2003-03-02Applied curve editing bugfix submitted by Klaus Stengel (nathanel)Simon Clitherow
http://projects.blender.org/tracker/index.php?func=detail&aid=100&group_id=9&atid=127
2003-03-02- removed files no longer created during freeze.Simon Clitherow
- removed '-2.26' prefix from the blender exe.
2003-02-26Implemented enough functionality to actually execute Python from withinMichel Selten
Blender. * Moved api2_2x/interface.c to ./BPY_interface.c This will be the general api layer from which all variants of the Blender api. Currently only the 2.2x variant is initialised. * Used swig (www.swig.org) to create Python wrappers for a couple of dummy functions. * Started implementation of the Blender and Blender.Object modules. Michel
2003-02-24- python include path is now taken from nan_definitions.mkFrank van Beek
2003-02-23lib/ just moved to ../Hans Lambermont
2003-02-21zel365 showed me this bug with deleting nla keys...Kent Mein
If I had to guess REMAKEIPO is kind of miss named. since what it does it free up memory it almost looks like it should be a part of REMAKEALLIPO we both felt a little overwhelmed by the code though and opted for just calling both of them in delete_nlachannel_keys I also added in allqueue (REDRAWVIEW3D, 0); since things could probably change around since your recalcing the ipo's... Kent
2003-02-21Added Goofsters alt-m menu for merging verts while in edit mode menu.Kent Mein
Kent
2003-02-21The first two files enables building of plugins under macosx.Kent Mein
The third is for actually loading the plugins in blender. For some reason its not identifying the plugins correctly, but it compiles and runs so I'm including it hoping someone else might see where I've messed things up... I have a simple example at http://www.cs.umn.edu/~mein/test.tgz that works, if anyone is interested in playing with it. Kent
2003-02-19Added flag '--enable-exppython' to the auto* build environment.Michel Selten
Using this flag the following component is build: source/blender/python and the following components are not build: intern/python source/blender/bpython Without specifying the flag, things act as they used to do. Also created a dummy interface.c file and created the directories which will contain the replacement code for: - intern/python - source/blender/bpython Michel
2003-02-19Fixed a typo in my addy (of all places!) ;)Simon Clitherow
2003-02-17- fix 'debug' targetHans Lambermont
- add ID and copyrights to top level makefile
2003-02-17fixed mousewheel behaviour in editmodeRob Haarsma
2003-02-16It turns out that the "Pressing AKEY to deselect all objects stillChris Want
leaves one object center pink" bug was actually designed by somebody to mark the active object (which need not necessarily be selected). I've added a couple of source comments to explain this so the next person trying to fix this doesn't bother.
2003-02-15gcc 3.2.1 seems to have problems casting a double like 32772.0 toChris Want
a short, so we cast to an int first, then to a short when a button that modifies a short value is pressed. (Allieviates the bug where the Unified Renderer button modifies the values of a bunch of other buttons).
2003-02-14I decremented the 'user' of the deleted ipo,Chris Want
but it had already been decremeted elsewhere. Thanks to zel365 for the head's up.
2003-02-14Fix to make plugins work on windows (last system error code forChris Want
the thread wasn't getting reset). Somebody with more windows saavy might want to check that this doesn't break other stuff.
2003-02-14This modification removes a bone'sChris Want
action channel from the cooresponding action when the bone's IPO is deleted from the IPO window (the old behavior was to set the channel's ipo to NULL without removing it from the action). This is to alleviate the problem that there is a lot of action channel code that tries to access the channel's ipo (chan->ipo) without testing whether it is NULL or not (resulting in a segfault). This seems to be the best way to solve this problem ... unless there is a reason why it might be useful to have an action channel with no ipo attached to it? Thanks to zel365 for uncovering this problem.
2003-02-13Some small de-optimizations :)Chris Want
Reverting this file to it's original version fixed a bug involving particles and lattices.
2003-02-11- glue top level makefile and release one togetherHans Lambermont
- fix 8 spaces problem in release/Makefile
2003-02-11pointed PB to the frozen files in the obj treev2.26Maarten Gribnau
removed old splash and added the new 2.26 screen (beautiful as always) maarten
2003-02-10- add GPL-license to installerFrank van Beek
- add options in installer to create desktop icon and register .blend files
2003-02-10- change GPL_license to dos textFrank van Beek
2003-02-10Changes to deal with the single splash fileChris Want
2003-02-10Another change to replace fmod with OpenALChris Want
2003-02-10- GPL license text now included in the binary distros as well.Ton Roosendaal
2003-02-10- As promised, the listing with names of people who have sponsoredTon Roosendaal
to make the sources open. It adds another 180k to the download, but luckily only once!
2003-02-10patched default wheellinescroll usersettingRob Haarsma
2003-02-10removed default wheellinescroll usersetting (didnt work here)Rob Haarsma
2003-02-10- removed debug line from windows/specific.shFrank van Beek
- deinstalling Blender now also removes "%PROGRAMFILES%\Blender Foundation" if it's empty
2003-02-10- mixed up python version and blender version ;-)Frank van Beek
2003-02-10- display Blender version number in title of installerFrank van Beek
2003-02-10- windows/specific.sh now creates a custom NSIS configuration file for thisFrank van Beek
release and executes NSIS to build the Blender intaller
2003-02-10- export VERSION so specific.sh can use itFrank van Beek
- made remove in the final directory a bit more specific
2003-02-10- updated url to http://www.blender3d.org/Support/Frank van Beek
2003-02-10added new splash screenStefan Gartner
2003-02-10Modified ld flags on SunOS changed -O2 to -OKent Mein
because sun's compiler does not support -O2. Kent
2003-02-10fix clean targetHans Lambermont
2003-02-10Added files for using NSIS (http://nsis.sourceforge.net) as an alternative ↵Simon Clitherow
self-install/uninstall system for windows.
2003-02-09removed fmod lib from blender target and added openal_static lib (MSVC)Simon Clitherow
2003-02-09- build and link against OpenAL instead of FMod on windowsFrank van Beek
Note: this needs to be changed in the projectfiles as well
2003-02-09don't use fmod on darwinStefan Gartner
2003-02-09added a disabled notice when pressing PKEY and building without game engine.Simon Clitherow
2003-02-09disabled "Start Game" menu entry and button when building withoutStefan Gartner
gameengine
2003-02-09fill in correct values for VERSION and DATE when building theStefan Gartner
application bundles
2003-02-09updated copyright noticeStefan Gartner
2003-02-09added default variable (3) for the wheellinescroll usersettingRob Haarsma
2003-02-09- changed version to 2.26 instead of 2.26aFrank van Beek
2003-02-09fixed mousewheel linescrolling.Rob Haarsma
2003-02-09- upped BLENDER_VERSION to 226Frank van Beek